/freebsd/sbin/ipf/libipf/ |
H A D | load_pool.c | 18 load_pool(ip_pool_t *plp, ioctlfunc_t iocfunc) in load_pool() argument 27 op.iplo_unit = plp->ipo_unit; in load_pool() 30 strncpy(op.iplo_name, plp->ipo_name, sizeof(op.iplo_name)); in load_pool() 34 pool.ipo_unit = plp->ipo_unit; in load_pool() 35 strncpy(pool.ipo_name, plp->ipo_name, sizeof(pool.ipo_name)); in load_pool() 36 if (plp->ipo_name[0] == '\0') in load_pool() 52 pool.ipo_list = plp->ipo_list; in load_pool() 57 for (a = plp->ipo_list; a != NULL; a = a->ipn_next) in load_pool() 58 load_poolnode(plp->ipo_unit, pool.ipo_name, in load_pool()
|
/freebsd/sys/dev/bwn/ |
H A D | if_bwn_phy_lp.c | 383 struct bwn_phy_lp *plp = &phy->phy_lp; in bwn_phy_lp_init_pre() local 385 plp->plp_antenna = BWN_ANT_DEFAULT; in bwn_phy_lp_init_pre() 408 struct bwn_phy_lp *plp = &mac->mac_phy.phy_lp; in bwn_phy_lp_init() local 459 } else if (!plp->plp_rccap) { in bwn_phy_lp_init() 554 struct bwn_phy_lp *plp = &phy->phy_lp; in bwn_phy_lp_switch_channel() local 569 plp->plp_chan = chan; in bwn_phy_lp_switch_channel() 587 struct bwn_phy_lp *plp = &phy->phy_lp; in bwn_phy_lp_set_antenna() local 596 plp->plp_antenna = antenna; in bwn_phy_lp_set_antenna() 609 struct bwn_phy_lp *plp = &mac->mac_phy.phy_lp; in bwn_phy_lp_readsprom() local 627 &plp->plp_txisoband_m); in bwn_phy_lp_readsprom() [all …]
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_fetch.c | 494 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, loadconfig); in evp_set_parsed_default_properties() local 496 if (plp != NULL && store != NULL) { in evp_set_parsed_default_properties() 528 ossl_property_free(*plp); in evp_set_parsed_default_properties() 529 *plp = def_prop; in evp_set_parsed_default_properties() 561 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, loadconfig); in evp_default_properties_merge() local 566 if (plp == NULL || *plp == NULL) in evp_default_properties_merge() 572 pl2 = ossl_property_merge(pl1, *plp); in evp_default_properties_merge() 588 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, 1); in evp_default_property_is_enabled() local 590 return plp != NULL && ossl_property_is_enabled(libctx, prop_name, *plp); in evp_default_property_is_enabled() 613 OSSL_PROPERTY_LIST **plp = ossl_ctx_global_properties(libctx, loadconfig); in evp_get_global_properties_str() local [all …]
|
/freebsd/sys/i386/i386/ |
H A D | db_interface.c | 89 struct proc_ldt *plp; in db_segsize() local 102 plp = curthread->td_proc->p_md.md_ldt; in db_segsize() 103 sdp = (plp != NULL) ? &plp->ldt_sd : &ldt[0].sd; in db_segsize()
|
/freebsd/crypto/openssl/crypto/property/ |
H A D | property.c | 519 OSSL_PROPERTY_LIST **plp; in ossl_method_store_fetch() local 547 plp = ossl_ctx_global_properties(store->ctx, 0); in ossl_method_store_fetch() 548 if (plp != NULL && *plp != NULL) { in ossl_method_store_fetch() 550 pq = *plp; in ossl_method_store_fetch() 552 p2 = ossl_property_merge(pq, *plp); in ossl_method_store_fetch()
|
/freebsd/lib/libc/resolv/ |
H A D | res_mkupdate.c | 1054 struct valuelist *plp, *plp_next; in res_destroyprotolist() local 1056 for (plp = protolist; plp != NULL; plp = plp_next) { in res_destroyprotolist() 1057 plp_next = plp->next; in res_destroyprotolist() 1058 free(plp->name); in res_destroyprotolist() 1059 free(plp); in res_destroyprotolist()
|
/freebsd/sys/contrib/openzfs/lib/libzfs/ |
H A D | libzfs_impl.h | 147 extern int zprop_expand_list(libzfs_handle_t *hdl, zprop_list_t **plp,
|
H A D | libzfs_util.c | 2059 zprop_expand_list(libzfs_handle_t *hdl, zprop_list_t **plp, zfs_type_t type) in zprop_expand_list() argument 2065 if (*plp == NULL) { in zprop_expand_list() 2071 last = plp; in zprop_expand_list() 2091 entry->pl_next = *plp; in zprop_expand_list() 2092 *plp = entry; in zprop_expand_list()
|
H A D | libzfs_pool.c | 947 zpool_expand_proplist(zpool_handle_t *zhp, zprop_list_t **plp, in zpool_expand_proplist() argument 956 boolean_t firstexpand = (NULL == *plp); in zpool_expand_proplist() 959 if (zprop_expand_list(hdl, plp, type) != 0) in zpool_expand_proplist() 965 last = plp; in zpool_expand_proplist() 969 if ((*plp)->pl_all) in zpool_expand_proplist() 972 if ((*plp)->pl_all && firstexpand) { in zpool_expand_proplist() 1025 entry = *plp; in zpool_expand_proplist() 1049 for (entry = *plp; entry != NULL; entry = entry->pl_next) { in zpool_expand_proplist() 1072 zprop_list_t **plp) in vdev_expand_proplist() argument 1085 for (entry = *plp; entry != NULL; entry = entry->pl_next) { in vdev_expand_proplist() [all …]
|
H A D | libzfs_dataset.c | 4721 zfs_expand_proplist(zfs_handle_t *zhp, zprop_list_t **plp, boolean_t received, in zfs_expand_proplist() argument 4732 if (zprop_expand_list(hdl, plp, ZFS_TYPE_DATASET) != 0) in zfs_expand_proplist() 4737 entry = *plp; in zfs_expand_proplist() 4744 start = plp; in zfs_expand_proplist() 4778 for (entry = *plp; entry != NULL; entry = entry->pl_next) { in zfs_expand_proplist()
|
H A D | libzfs.abi | 4837 <parameter type-id='e4378506' name='plp'/> 6608 <parameter type-id='e4378506' name='plp'/> 6616 <parameter type-id='e4378506' name='plp'/>
|