Searched defs:seclist (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/lib/libfsmgt/common/ |
H A D | nfs_nfssec.c | 45 * - char **seclist - the array to be freed. 52 nfssec_free_secmode_list(char **seclist, int num_elements) argument 54 fileutil_free_string_array(seclist, num_elements); 125 char **seclist = NULL; local 137 seclist = fileutil_get_first_column_data(fp, num_elements, &err); 139 if (seclist == NULL) { 144 return (seclist);
|
/illumos-gate/usr/src/cmd/ypcmd/ |
H A D | ypserv_net_secure.c | 49 struct seclist { struct 53 struct seclist *next; 60 static struct seclist *slist; 70 struct seclist *tmp1, *tmp2; 73 tmp1 = (struct seclist *) malloc(sizeof (struct seclist)); 119 tmp1->next = (struct seclist *) 120 malloc(sizeof (struct seclist)); 140 struct seclist *tmp;
|
/illumos-gate/usr/src/cmd/sgs/elfdump/common/ |
H A D | fake_shdr.c | 1120 * seclist is the root of the list. Its sinfo field is not 1124 SINFO_LISTELT seclist; local 1147 seclist.next = seclist.prev = &seclist; /* Empty circular list */ 1180 if ((sinfo = sinfo_list_alloc(&fstate, &seclist)) == 1479 for (sinfo_list = seclist.next; sinfo_list != &seclist; 1491 * to build up sec and seclist, so on success, we have nothing 1501 sinfo_list_free_all(&seclist); [all...] |
/illumos-gate/usr/src/lib/libshare/nfs/ |
H A D | libshare_nfs.c | 213 static char *seclist[] = { variable 320 for (i = 0; seclist[i] != NULL; i++) { 321 if (strcmp(tok, seclist[i]) == 0) 328 * find_security(seclist, sec) 335 find_security(struct securities *seclist, sa_security_t sec) argument 337 while (seclist != NULL) { 338 if (seclist->security == sec) 340 seclist = seclist->next;
|
Completed in 1142 milliseconds