Lines Matching defs:fixed
94 "\'fixed\' and \'reactive\'",
462 boolean_t fixed;
466 /* NCPs of "fixed" type cannot be copied */
467 if ((err = nwam_ncp_is_fixed(oldncph, &fixed)) != NWAM_SUCCESS)
469 if (fixed)
1575 boolean_t read_only, fixed;
1588 /* NCUs cannot be created in a 'fixed' NCP */
1589 if ((err = nwam_ncp_is_fixed(ncph, &fixed)) != NWAM_SUCCESS)
1591 if (fixed && !nwam_override_readonly(flags))
1690 boolean_t fixed;
1694 /* NCUs for the 'fixed' NCP cannot be read */
1695 if ((err = nwam_ncp_is_fixed(ncph, &fixed)) != NWAM_SUCCESS)
1697 if (fixed && !nwam_override_readonly(flags))
3215 * If NCP is not fixed and is active, and link NCU exists and is not
3217 * Otherwise, continue walking NCPs. Notify caller if fixed NCP is active
3218 * as legacy DR handling for the fixed case must be used.
3225 boolean_t fixed = B_TRUE;
3235 /* If fixed NCP is active, let caller know. */
3236 if (nwam_ncp_is_fixed(ncph, &fixed) == NWAM_SUCCESS && fixed) {