HomeSort by: relevance | last modified time | path
    Searched refs:glist (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/usr.bin/id/
id.c 264 gid_t *glist = groups; local
272 if (getgrouplist(pw->pw_name, pw->pw_gid, glist, &ngroups) == -1) {
273 glist = malloc(ngroups * sizeof(gid_t));
274 (void) getgrouplist(pw->pw_name, pw->pw_gid, glist, &ngroups);
278 id = glist[cnt];
286 if (glist != groups)
287 free(glist);
297 gid_t *glist = groups; local
301 if (getgrouplist(pw->pw_name, pw->pw_gid, glist, &ngroups)
303 glist = malloc(ngroups * sizeof(gid_t))
    [all...]
  /src/external/gpl2/xcvs/dist/src/
find_names.c 278 glob_t glist; local
325 err = glob (pat, GLOB_PERIOD | (dir ? GLOB_ERR : 0), NULL, &glist);
340 for (i = 0; i < glist.gl_pathc; i++)
346 tmp = last_component (glist.gl_pathv[i]);
352 p->key = xstrdup (glist.gl_pathv[i]
358 globfree (&glist);
  /src/external/gpl3/binutils/dist/opcodes/
ia64-gen.c 2223 static struct completer_entry **glist;
2275 glist = (struct completer_entry **)
2276 xrealloc (glist, sizeof (struct completer_entry *) * glisttotlen);
2281 glist[0] = ent;
2286 if (ent->name->num < glist[0]->name->num)
2288 else if (ent->name->num > glist[end - 1]->name->num)
2297 c = ent->name->num - glist[i]->name->num;
2304 && ent->name->num == glist[i - 1]->name->num)
2320 if (ent->name->num != glist[i]->name->num)
2323 if (completer_entries_eq (ent, glist[i])
2208 static struct completer_entry **glist; variable in typeref:struct:completer_entry
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
ia64-gen.c 2223 static struct completer_entry **glist;
2275 glist = (struct completer_entry **)
2276 xrealloc (glist, sizeof (struct completer_entry *) * glisttotlen);
2281 glist[0] = ent;
2286 if (ent->name->num < glist[0]->name->num)
2288 else if (ent->name->num > glist[end - 1]->name->num)
2297 c = ent->name->num - glist[i]->name->num;
2304 && ent->name->num == glist[i - 1]->name->num)
2320 if (ent->name->num != glist[i]->name->num)
2323 if (completer_entries_eq (ent, glist[i])
2208 static struct completer_entry **glist; variable in typeref:struct:completer_entry
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
ia64-gen.c 2223 static struct completer_entry **glist;
2275 glist = (struct completer_entry **)
2276 xrealloc (glist, sizeof (struct completer_entry *) * glisttotlen);
2281 glist[0] = ent;
2286 if (ent->name->num < glist[0]->name->num)
2288 else if (ent->name->num > glist[end - 1]->name->num)
2297 c = ent->name->num - glist[i]->name->num;
2304 && ent->name->num == glist[i - 1]->name->num)
2320 if (ent->name->num != glist[i]->name->num)
2323 if (completer_entries_eq (ent, glist[i])
2208 static struct completer_entry **glist; variable in typeref:struct:completer_entry
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
ia64-gen.c 2223 static struct completer_entry **glist;
2275 glist = (struct completer_entry **)
2276 xrealloc (glist, sizeof (struct completer_entry *) * glisttotlen);
2281 glist[0] = ent;
2286 if (ent->name->num < glist[0]->name->num)
2288 else if (ent->name->num > glist[end - 1]->name->num)
2297 c = ent->name->num - glist[i]->name->num;
2304 && ent->name->num == glist[i - 1]->name->num)
2320 if (ent->name->num != glist[i]->name->num)
2323 if (completer_entries_eq (ent, glist[i])
2208 static struct completer_entry **glist; variable in typeref:struct:completer_entry
    [all...]
  /src/external/bsd/ipf/dist/tools/
ipscan_y.y 90 gline: YY_STR ':' glist '=' action
120 glist: YY_STR label
121 | glist ',' YY_STR
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
ssl.h 1403 # define SSL_get1_groups(s, glist) \
1404 SSL_ctrl(s,SSL_CTRL_GET_GROUPS,0,(int*)(glist))
1405 # define SSL_CTX_set1_groups(ctx, glist, glistlen) \
1406 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS,glistlen,(int *)(glist))
1409 # define SSL_set1_groups(s, glist, glistlen) \
1410 SSL_ctrl(s,SSL_CTRL_SET_GROUPS,glistlen,(char *)(glist))
  /src/crypto/external/bsd/openssl.old/dist/ssl/
t1_lib.c 341 uint16_t *glist; local
353 if ((glist = OPENSSL_malloc(ngroups * sizeof(*glist))) == NULL) {
364 OPENSSL_free(glist);
368 glist[i] = id;
371 *pext = glist;
  /src/external/gpl3/binutils/dist/bfd/
elf32-m68k.c 663 ??? We could've used root.got.glist field instead, but having
665 struct elf_m68k_got_entry *glist;
716 Root of this list is h->glist.
944 elf_m68k_hash_entry (ret)->glist = NULL;
2138 entry->u.s2.next = h->glist;
2139 h->glist = entry;
2549 BFD_ASSERT (ind->glist == NULL);
4135 if (elf_m68k_hash_entry (h)->glist != NULL)
4148 got_entry = elf_m68k_hash_entry (h)->glist;
664 struct elf_m68k_got_entry *glist; member in struct:elf_m68k_link_hash_entry
elf64-ppc.c 3581 only care about glist, but when compiled on a 32-bit host the
3585 htab->elf.init_got_refcount.glist = NULL;
3587 htab->elf.init_plt_refcount.glist = NULL;
3589 htab->elf.init_got_offset.glist = NULL;
3591 htab->elf.init_plt_offset.glist = NULL;
4147 if (eind->elf.got.glist != NULL)
4149 if (edir->elf.got.glist != NULL)
4154 for (entp = &eind->elf.got.glist; (ent = *entp) != NULL; )
4158 for (dent = edir->elf.got.glist; dent != NULL; dent = dent->next)
4170 *entp = edir->elf.got.glist;
    [all...]
elf32-spu.c 468 htab->elf.init_got_refcount.glist = NULL;
470 htab->elf.init_got_offset.glist = NULL;
1094 head = &h->got.glist;
1226 head = &h->got.glist;
4977 head = &h->got.glist;
5165 for (g = h->got.glist; g != NULL; g = g->next)
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-m68k.c 663 ??? We could've used root.got.glist field instead, but having
665 struct elf_m68k_got_entry *glist;
716 Root of this list is h->glist.
944 elf_m68k_hash_entry (ret)->glist = NULL;
2139 entry->u.s2.next = h->glist;
2140 h->glist = entry;
2550 BFD_ASSERT (ind->glist == NULL);
4135 if (elf_m68k_hash_entry (h)->glist != NULL)
4148 got_entry = elf_m68k_hash_entry (h)->glist;
664 struct elf_m68k_got_entry *glist; member in struct:elf_m68k_link_hash_entry
elf64-ppc.c 3589 only care about glist, but when compiled on a 32-bit host the
3593 htab->elf.init_got_refcount.glist = NULL;
3595 htab->elf.init_plt_refcount.glist = NULL;
3597 htab->elf.init_got_offset.glist = NULL;
3599 htab->elf.init_plt_offset.glist = NULL;
4155 if (eind->elf.got.glist != NULL)
4157 if (edir->elf.got.glist != NULL)
4162 for (entp = &eind->elf.got.glist; (ent = *entp) != NULL; )
4166 for (dent = edir->elf.got.glist; dent != NULL; dent = dent->next)
4178 *entp = edir->elf.got.glist;
    [all...]
elf32-spu.c 468 htab->elf.init_got_refcount.glist = NULL;
470 htab->elf.init_got_offset.glist = NULL;
1094 head = &h->got.glist;
1226 head = &h->got.glist;
4976 head = &h->got.glist;
5163 for (g = h->got.glist; g != NULL; g = g->next)
  /src/external/gpl3/gdb.old/dist/bfd/
elf32-m68k.c 663 ??? We could've used root.got.glist field instead, but having
665 struct elf_m68k_got_entry *glist;
716 Root of this list is h->glist.
944 elf_m68k_hash_entry (ret)->glist = NULL;
2139 entry->u.s2.next = h->glist;
2140 h->glist = entry;
2550 BFD_ASSERT (ind->glist == NULL);
4122 if (elf_m68k_hash_entry (h)->glist != NULL)
4135 got_entry = elf_m68k_hash_entry (h)->glist;
664 struct elf_m68k_got_entry *glist; member in struct:elf_m68k_link_hash_entry
elf64-ppc.c 3588 only care about glist, but when compiled on a 32-bit host the
3592 htab->elf.init_got_refcount.glist = NULL;
3594 htab->elf.init_plt_refcount.glist = NULL;
3596 htab->elf.init_got_offset.glist = NULL;
3598 htab->elf.init_plt_offset.glist = NULL;
4154 if (eind->elf.got.glist != NULL)
4156 if (edir->elf.got.glist != NULL)
4161 for (entp = &eind->elf.got.glist; (ent = *entp) != NULL; )
4165 for (dent = edir->elf.got.glist; dent != NULL; dent = dent->next)
4177 *entp = edir->elf.got.glist;
    [all...]
elf32-spu.c 468 htab->elf.init_got_refcount.glist = NULL;
470 htab->elf.init_got_offset.glist = NULL;
1093 head = &h->got.glist;
1225 head = &h->got.glist;
4973 head = &h->got.glist;
5160 for (g = h->got.glist; g != NULL; g = g->next)
  /src/external/gpl3/gdb/dist/bfd/
elf32-m68k.c 663 ??? We could've used root.got.glist field instead, but having
665 struct elf_m68k_got_entry *glist;
716 Root of this list is h->glist.
944 elf_m68k_hash_entry (ret)->glist = NULL;
2139 entry->u.s2.next = h->glist;
2140 h->glist = entry;
2550 BFD_ASSERT (ind->glist == NULL);
4125 if (elf_m68k_hash_entry (h)->glist != NULL)
4138 got_entry = elf_m68k_hash_entry (h)->glist;
664 struct elf_m68k_got_entry *glist; member in struct:elf_m68k_link_hash_entry
elf64-ppc.c 3581 only care about glist, but when compiled on a 32-bit host the
3585 htab->elf.init_got_refcount.glist = NULL;
3587 htab->elf.init_plt_refcount.glist = NULL;
3589 htab->elf.init_got_offset.glist = NULL;
3591 htab->elf.init_plt_offset.glist = NULL;
4147 if (eind->elf.got.glist != NULL)
4149 if (edir->elf.got.glist != NULL)
4154 for (entp = &eind->elf.got.glist; (ent = *entp) != NULL; )
4158 for (dent = edir->elf.got.glist; dent != NULL; dent = dent->next)
4170 *entp = edir->elf.got.glist;
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/openssl/
ssl.h.in 1446 #define SSL_get1_groups(s, glist) \
1447 SSL_ctrl(s, SSL_CTRL_GET_GROUPS, 0, (int *)(glist))
1450 #define SSL_CTX_set1_groups(ctx, glist, glistlen) \
1451 SSL_CTX_ctrl(ctx, SSL_CTRL_SET_GROUPS, glistlen, (int *)(glist))
1457 #define SSL_set1_groups(s, glist, glistlen) \
1458 SSL_ctrl(s, SSL_CTRL_SET_GROUPS, glistlen, (char *)(glist))
  /src/crypto/external/bsd/openssl/dist/include/openssl/
ssl.h.in 1414 # define SSL_get1_groups(s, glist) \
1415 SSL_ctrl(s,SSL_CTRL_GET_GROUPS,0,(int*)(glist))
1416 # define SSL_CTX_set1_groups(ctx, glist, glistlen) \
1417 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS,glistlen,(int *)(glist))
1420 # define SSL_set1_groups(s, glist, glistlen) \
1421 SSL_ctrl(s,SSL_CTRL_SET_GROUPS,glistlen,(char *)(glist))
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
spa.c 2133 uint64_t *glist; local
2144 &glist, &gcount) != 0)
2152 if (glist[i] == 0) /* vdev is hole */
2155 vd[i] = spa_lookup_by_guid(spa, glist[i], B_FALSE);
5323 uint64_t txg, *glist; local
5384 glist = kmem_zalloc(children * sizeof (uint64_t), KM_SLEEP);
5405 &glist[c]) != 0) {
5411 vml[c] = spa_lookup_by_guid(spa, glist[c], B_FALSE);
5459 kmem_free(glist, children * sizeof (uint64_t));
5476 glist, children) == 0)
    [all...]
  /src/crypto/external/bsd/openssl/dist/ssl/
t1_lib.c 677 uint16_t *glist; local
691 if ((glist = OPENSSL_malloc(ngroups * sizeof(*glist))) == NULL) {
706 glist[i] = id;
709 *pext = glist;
713 OPENSSL_free(glist);
  /src/crypto/external/apache2/openssl/dist/ssl/
t1_lib.c 1084 uint16_t *glist = NULL, *kslist = NULL; local
1099 if ((glist = OPENSSL_malloc(ngroups * sizeof(*glist))) == NULL)
1116 glist[i] = id;
1121 *grpext = glist;
1137 OPENSSL_free(glist);

Completed in 105 milliseconds

1 2