Searched defs:plist (Results 1 - 14 of 14) sorted by relevance

/osnet-11/usr/src/lib/libpower/common/
H A Dlibpower_subr.c149 nvlist_t *plist; local
152 errno = nvlist_alloc(&plist, NV_UNIQUE_NAME, 0);
158 errno = nvlist_add_string(plist, PM_PROP_PGNAME, pgname);
160 nvlist_free(plist);
166 err = pm_result_update(plist, authority, proptype, propv, propc);
169 errno = nvlist_add_nvlist(nvl, propname, plist);
175 if (plist != NULL) {
176 nvlist_free(plist);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dvfy_increds.c224 /* Free the principals in plist and plist itself. */
226 free_princ_list(krb5_context context, krb5_principal *plist) argument
230 if (plist == NULL)
232 for (i = 0; plist[i] != NULL; i++)
233 krb5_free_principal(context, plist[i]);
234 free(plist);
237 /* Add princ to plist if it isn't already there. */
240 krb5_principal **plist)
245 /* Check if princ is already in plist, an
239 add_princ_list(krb5_context context, krb5_const_principal princ, krb5_principal **plist) argument
267 krb5_principal *plist = NULL, p; local
[all...]
/osnet-11/usr/src/lib/libcryptoutil/common/
H A Dconfig_parsing.c382 free_umechlist(umechlist_t *plist) argument
386 while (plist != NULL) {
387 pnext = plist->next;
388 free(plist);
389 plist = pnext;
426 dup_umechlist(umechlist_t *plist) argument
433 while (plist != NULL) {
434 if (!(ptmp = create_umech(plist->name))) {
445 plist = plist
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_decl.c303 * The prototype node list is specified as 'plist'. The formal prototype
304 * against which to compare the prototype is specified as 'flist'. If plist
306 * plist and flist are different, we require that named parameters in plist
310 dt_decl_prototype(dt_node_t *plist, argument
315 int form = plist != flist;
318 for (dnp = plist; dnp != NULL; dnp = dnp->dn_list, i++) {
361 if (v != 0 && plist->dn_list != NULL)
/osnet-11/usr/src/lib/libsasl/lib/
H A Dauxprop.c960 const char *plist = NULL; local
969 ret = getopt(context, NULL, "auxprop_plugin", &plist, NULL);
970 if(ret != SASL_OK) plist = NULL;
973 if(!plist) {
983 if(_sasl_strdup(plist, &pluginlist, NULL) != SASL_OK) return;
1020 plist ? plist : "[all]");
/osnet-11/usr/src/lib/libshare/common/
H A Dlibshare_util.c482 * the string vector plist. The string vector must be terminated
490 sa_prop_cmp_list(const char *key, char *const *plist) argument
494 if (key == NULL || plist == NULL)
497 for (i = 0; plist[i] != NULL; ++i) {
498 if (strcmp(key, plist[i]) == 0)
511 sa_prop_case_cmp_list(const char *key, char *const *plist) argument
515 if (key == NULL || plist == NULL)
518 for (i = 0; plist[i] != NULL; ++i) {
519 if (strcasecmp(key, plist[i]) == 0)
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_devadm.c66 static path_list_t plist[] = { variable
74 static int num = sizeof (plist)/sizeof (path_list_t);
147 if (strncmp(plist[i].search_path, path,
148 strlen(plist[i].search_path)) == 0)
452 search_path = plist[search_number].search_path;
703 search_path = plist[search_number].search_path;
1427 search_path = plist[search_number].search_path;
1428 search_type = plist[search_number].search_type;
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_add_hdrs.c163 boolean_t qstr1, char *str2, char *plist, char sep)
182 if (plist == NULL) {
189 csize + strlen(plist) + strlen(SIP_CRLF);
200 if (plist == NULL) {
215 str1, sep, str2, SIP_SEMI, plist, SIP_CRLF);
220 plist, SIP_CRLF);
235 sip_add_str_to_msg(sip_msg_t sip_msg, char *hdr_name, char *str, char *plist, argument
252 if (plist == NULL) {
257 SIP_SPACE_LEN + + strlen(str) + csize + strlen(plist) +
266 if (plist
162 sip_add_2strs_to_msg(sip_msg_t sip_msg, char *hdr_name, char *str1, boolean_t qstr1, char *str2, char *plist, char sep) argument
286 sip_add_int_to_msg(sip_msg_t sip_msg, char *hdr_name, int i, char *plist) argument
347 sip_add_intstr_to_msg(sip_msg_t sip_msg, char *hdr_name, int i, char *s, char *plist) argument
471 char *plist; local
517 sip_add_accept_enc(sip_msg_t sip_msg, char *code, char *plist) argument
536 sip_add_accept_lang(sip_msg_t sip_msg, char *lang, char *plist) argument
553 sip_add_alert_info(sip_msg_t sip_msg, char *alert, char *plist) argument
593 sip_add_call_info(sip_msg_t sip_msg, char *uri, char *plist) argument
623 sip_add_content_disp(sip_msg_t sip_msg, char *dis_type, char *plist) argument
702 sip_add_error_info(sip_msg_t sip_msg, char *uri, char *plist) argument
837 sip_add_reply_to(sip_msg_t sip_msg, char *uname, char *addr, char *plist, boolean_t add_aquot) argument
884 sip_add_retry_after(sip_msg_t sip_msg, int secs, char *cmt, char *plist) argument
1124 sip_add_event(sip_msg_t sip_msg, char *t_event, char *plist) argument
1150 sip_add_substate(sip_msg_t sip_msg, char *sub, char *plist) argument
[all...]
/osnet-11/usr/src/lib/libnetcfg/common/
H A Dlibnetcfg_files.c1354 * for each property specified in plist. If a given property is not present
1358 netcfg_read_props_from_file(nvlist_t *idlist, uint64_t flags, nvlist_t *plist) argument
1370 while ((reqp = nvlist_next_nvpair(plist, reqp)) != NULL) {
1374 ncerr = nvl_add_entry_val(plist, pname, objlist);
1378 (void) nvlist_remove(plist, pname, nvpair_type(reqp));
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_lgrp.c1550 smb_lgplist_t plist; local
1562 plist.p_cnt = SE_MAX_LUID;
1563 plist.p_ids = privs;
1564 smb_lgrp_encode_privset(grp, &plist);
1572 plist.p_cnt, (char *)plist.p_ids, 0, "");
2259 smb_lgrp_encode_privset(smb_group_t *grp, smb_lgplist_t *plist) argument
2262 uint32_t pcnt = plist->p_cnt;
2265 bzero(plist->p_ids, sizeof (smb_lgpid_t) * plist
2294 smb_lgplist_t plist; local
[all...]
/osnet-11/usr/src/lib/libdiskmgt/common/
H A Ddrive.c139 } plist[1]; member in union:conf_feature::features
1285 prof_num = (int)convnum(feature->features.plist[0].profile, 2);
/osnet-11/usr/src/lib/libipadm/common/
H A Dipadm_if.c2972 nvlist_t *idlist = NULL, *plist = NULL; local
2992 if (nvlist_alloc(&plist, NV_UNIQUE_NAME, 0) != 0 ||
2993 netcfg_nvl_add_one_uint64(plist, NWAM_NCP_PROP_MGMT_TYPE,
2998 if (netcfg_get_object_props(&idlist, 0, &plist) != NETCFG_SUCCESS ||
2999 !nvlist_exists(plist, NWAM_NCP_PROP_MGMT_TYPE))
3002 (void) netcfg_nvl_get_one_uint64(plist, NWAM_NCP_PROP_MGMT_TYPE, &pval);
3006 nvlist_free(plist);
/osnet-11/usr/src/lib/libc/port/gen/
H A Dnss_common.c739 nss_config(nss_config_t **plist, int cnt) argument
748 if (plist == NULL || cnt <= 0)
751 next = plist[i];
/osnet-11/usr/src/lib/libpicltree/
H A Dpicltree.c2587 parse_prl(char *prl, char **name, char **baddr, prop_list_t **plist) argument
2659 *plist = append_entry_to_list(el, *plist);
2790 prop_list_t *plist; local
2800 plist = NULL;
2804 err = parse_prl(path, &nodename, &baddr, &plist);
2806 free_list(plist);
2815 free_list(plist);
2822 free_list(plist);
2832 free_list(plist);
[all...]

Completed in 110 milliseconds