Home
last modified time | relevance | path

Searched refs:elist (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/link_audit/common/
H A Denv.h29 typedef struct elist { struct
31 struct elist *l_next; argument
/illumos-gate/usr/src/lib/libgss/
H A Doid_ops.c151 gss_OID elist; local
164 elist = (*oid_set)->elements;
169 if (elist)
170 (void) memcpy((*oid_set)->elements, elist,
186 if (elist)
187 free(elist);
193 (*oid_set)->elements = elist;
/illumos-gate/usr/src/cmd/eeprom/i386/
H A Dbenv.c122 eplist_t *elist; member
134 bd->elist = new_list(); in new_bd()
366 add_bent(bd->elist, base, NULL, NULL, NULL); in add_comm()
589 add_bent(bd->elist, NULL, cmd, name, val); in add_cmd()
625 list = bd->elist; in write_benv()
855 eplist_t *elist; in main() local
977 elist = bd->elist; in main()
980 print_vars(elist); in main()
993 updates += proc_var(line, elist); in main()
996 updates += proc_var(argv[optind], elist); in main()
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Doid_ops.c135 gss_OID elist; local
144 elist = (*oid_set)->elements;
149 if (elist)
151 elist,
166 if (elist)
167 free(elist);
175 (*oid_set)->elements = elist;
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport.c988 int *elist = NULL; in port_sendn() local
1013 elist = port_errorn(elist, nent, EBADF, count); in port_sendn()
1021 elist = port_errorn(elist, nent, EBADFD, count); in port_sendn()
1030 elist = port_errorn(elist, nent, error, count); in port_sendn()
1047 if (copyout(elist, (void *)errors, nent * sizeof (int))) in port_sendn()
1049 kmem_free(elist, nent * sizeof (int)); in port_sendn()
1057 port_errorn(int *elist, int nent, int error, int index) in port_errorn() argument
1059 if (elist == NULL) in port_errorn()
1060 elist = kmem_zalloc(nent * sizeof (int), KM_SLEEP); in port_errorn()
1061 elist[index] = error; in port_errorn()
[all …]
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_parse.c392 enumval_list *elist; in def_enum() local
402 elist = calloc(1, sizeof (enumval_list)); in def_enum()
403 elist->name = tok.str; in def_enum()
404 elist->assignment = NULL; in def_enum()
408 elist->assignment = tok.str; in def_enum()
411 *tailp = elist; in def_enum()
412 tailp = &elist->next; in def_enum()
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dpaths.c1039 char *elist = NULL; in expand_paths() local
1087 elist = nlist; in expand_paths()
1090 if ((_tkns = expand(&str, &len, &elist, orig, omit, in expand_paths()
1156 if (elist && (elist != nlist)) { in expand_paths()
1159 nlist = olist = elist; in expand_paths()
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dprintlist.c41 struct stringlist *elist = &ehead; variable
H A Darcs.c517 (!fflag && !onlist(elist, childp->name))) { in doflags()
529 onlist(elist, childp->name)) { in doflags()
H A Dgprof.h347 extern struct stringlist *elist;
H A Dgprof.c1824 addlist(elist, optarg); in main()
1828 addlist(elist, optarg); in main()
1885 addlist(elist, *sp); in main()
H A Dreadelf.c576 addlist(elist, name); in get_symtab()
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dcertgetsetop.c190 KMF_X509_EXTENSION *eptr, *elist; in kmf_get_cert_extns() local
200 *extlist = elist = NULL; in kmf_get_cert_extns()
218 elist = realloc(elist, sizeof (KMF_X509_EXTENSION) * in kmf_get_cert_extns()
220 if (elist == NULL) { in kmf_get_cert_extns()
225 ret = copy_extension_data(&elist[(*nextns) - 1], eptr); in kmf_get_cert_extns()
234 if (elist != NULL) { in kmf_get_cert_extns()
235 free(elist); in kmf_get_cert_extns()
236 elist = NULL; in kmf_get_cert_extns()
249 *extlist = elist; in kmf_get_cert_extns()