Lines Matching defs:status

93 	dladm_status_t		status = DLADM_STATUS_BADARG;
100 status = i_dladm_set_prop_temp(handle, flow, prop_name,
102 if (status == DLADM_STATUS_TEMPONLY &&
105 if (status != DLADM_STATUS_OK)
106 return (status);
112 status = i_dladm_set_flowprop_db(handle, flow, prop_name,
115 return (status);
139 dladm_status_t status;
152 status = i_dladm_get_prop_temp(handle, flow, type, prop_name,
154 if (status != DLADM_STATUS_NOTFOUND)
155 return (status);
271 dladm_status_t status;
273 status = dladm_flow_info(handle, flow, &fa);
274 if (status != DLADM_STATUS_OK)
275 return (status);
326 dladm_status_t status = DLADM_STATUS_OK;
335 status = dladm_str2bw(*prop_val, maxbw);
336 if (status != DLADM_STATUS_OK) {
338 return (status);
365 dladm_status_t status;
368 status = dladm_flow_info(handle, flow, &fa);
369 if (status != DLADM_STATUS_OK)
370 return (status);
420 dladm_status_t status = DLADM_STATUS_OK;
425 status = dladm_str2pri(*prop_val, &pri);
426 if (status != DLADM_STATUS_OK)
427 return (status);
464 dladm_status_t status;
466 status = dladm_parse_args(str, listp, novalues);
467 if (status != DLADM_STATUS_OK)
468 return (status);
470 if (*listp != NULL && (status = flow_proplist_check(*listp)
473 return (status);
487 dladm_status_t status;
518 status = pdp->pd_check(pdp, aip->ai_val,
521 status = DLADM_STATUS_BADARG;
524 if (status != DLADM_STATUS_OK)
525 return (status);
535 status = rpp->rp_extract(vdp,
538 status = DLADM_STATUS_BADARG;
543 if (status != DLADM_STATUS_OK)
544 return (status);
548 return (status);
558 dladm_status_t status = DLADM_STATUS_OK;
560 status = i_dladm_flow_proplist_extract_one(proplist, "maxbw", mrp);
561 if (status != DLADM_STATUS_OK)
562 return (status);
563 status = i_dladm_flow_proplist_extract_one(proplist, "priority", mrp);
564 if (status != DLADM_STATUS_OK)
565 return (status);
566 return (status);
573 dladm_status_t status, ssave = DLADM_STATUS_OK;
579 status = i_dladm_set_flowprop_db(handle, flow, ai.ai_name,
581 if (status != DLADM_STATUS_OK)
582 ssave = status;