Lines Matching defs:status1
1356 ipadm_status_t status1 = IPADM_SUCCESS;
1370 status1 = i_ipadm_delete_if(iph, ifname, AF_INET, flags);
1380 return (status1);
1388 * status1, if status1 == status2
1389 * IPADM_SUCCESS, if either of status1 or status2 is SUCCESS
1391 * IPADM_ENXIO, if both status1 and status2 are ENXIO
1394 if (status1 == status2) {
1395 /* covers the case when both status1 and status2 are ENXIO */
1396 return (status1);
1397 } else if (status1 == IPADM_SUCCESS || status2 == IPADM_SUCCESS) {
1398 if (status1 == IPADM_SUCCESS)
1401 other = status1;
1514 ipadm_status_t status1, status2, other;
1529 status1 = i_ipadm_unplumb_if(iph, ifname, AF_INET6);
1530 if (status1 == IPADM_SUCCESS)
1531 status1 = i_ipadm_delete_ifobj(iph, ifname, AF_INET6, B_FALSE);
1535 if (status1 == status2) {
1537 } else if (status1 == IPADM_SUCCESS || status2 == IPADM_SUCCESS) {
1538 if (status1 == IPADM_SUCCESS)
1541 other = status1;