HomeSort by relevance Sort by last modified time
    Searched refs:gid (Results 176 - 200 of 478) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/python/cpython2/Lib/distutils/
archive_util.py 28 """Returns a gid, given a group name."""
89 gid = _get_gid(group)
92 if gid is not None:
93 tarinfo.gid = gid
  /external/python/cpython3/Lib/distutils/
archive_util.py 32 """Returns a gid, given a group name."""
95 gid = _get_gid(group)
98 if gid is not None:
99 tarinfo.gid = gid
  /external/strace/
ipc_msgctl.c 69 printuid(", gid=", msqid_ds.msg_perm.gid);
ipc_shmctl.c 69 printuid(", gid=", shmid_ds.shm_perm.gid);
nlattr.h 101 DECL_NLA(gid); variable
oldstat.c 54 .gid = zero_extend_signed_to_ull(buf.st_gid),
print_struct_stat.c 50 st->nlink, st->uid, st->gid);
  /external/strace/linux/
smc_diag.h 67 uint8_t gid[40]; member in struct:smc_diag_linkinfo
  /external/toybox/toys/pending/
mdev.c 29 the second and third fields are uid:gid and file permissions for
45 gid_t gid = 0; local
105 // Four fields (last is optional): regex, uid:gid, mode [, name|path ]
135 // uid:gid
155 // parse GID
156 gid = strtoul(s,&s2,10);
163 gid = grp->gr_gid;
260 if (CFG_MDEV_CONF) mode=chown(toybuf, uid, gid);
tcpsvd.c 189 // Grab uid and gid
190 static void get_uidgid(uid_t *uid, gid_t *gid, char *ug)
208 *gid = pass->pw_gid;
216 if (grp) *gid = grp->gr_gid;
267 gid_t gid = 0; local
288 get_uidgid(&uid, &gid, TT.user);
290 setgid(gid);
297 xprintf("%s: listening on %s, starting, uid %u, gid %u\n"
298 ,toys.which->name, server, uid, gid);
  /external/u-boot/include/cramfs/
cramfs_fs.h 31 u32 size:CRAMFS_SIZE_WIDTH, gid:CRAMFS_GID_WIDTH; member in struct:cramfs_inode
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 493 gid_t gid = 0; local
554 gid = grp->gr_gid;
558 (int) gid, gid_str);
560 /* Group name not found - try to parse this as gid */
561 gid = strtol(gid_str, &endp, 10);
569 (int) gid);
573 if (gid_set && lchown(dir, -1, gid) < 0) {
574 wpa_printf(MSG_ERROR, "lchown[ctrl_interface=%s,gid=%d]: %s",
575 dir, (int) gid, strerror(errno));
641 if (gid_set && lchown(fname, -1, gid) < 0)
1217 gid_t gid = 0; local
    [all...]
  /external/e2fsprogs/misc/
uuidd.c 452 gid_t gid; local
513 gid = getgid();
515 if (setresgid(gid, gid, gid) < 0)
518 if (setregid(gid, gid) < 0)
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DumpArchiveEntry.java 190 private int gid; field in class:DumpArchiveEntry
768 return gid;
773 * @param gid the group id
775 public void setGroupId(final int gid) {
776 this.gid = gid;
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 369 for (IntegerSet::const_iterator gid = glyph_ids.begin(),
371 gid != gid_end; gid++) {
372 if (*gid < first_glyph_id) {
375 if (*gid > last_glyph_id) {
379 info.Attach((*index_builders)[j]->GlyphInfo(*gid));
380 if (info && info->length()) { // Do not include gid without bitmap
381 info_map[*gid] = info;
448 int32_t gid = i->first; local
449 if (gid > upper_bound)
502 int32_t gid = i->first; local
    [all...]
  /external/minijail/
minijail0_cli.c 57 int gid = strtod(arg, &end); local
59 *out_gid = gid;
60 minijail_change_gid(j, gid);
218 * none,/tmp,tmpfs,0xe,mode=0755,uid=10,gid=10
220 * none\0/tmp\0tmpfs\00xe\0mode=0755\0uid=10,gid=10
221 * With data pointing at mode=0755 and arg pointing at uid=10,gid=10.
286 char *uidmap, int set_gidmap, gid_t gid,
313 * If no map is passed, map the current gid to the
314 * chosen gid in the target namespace.
316 gidmap = build_idmap(gid, getgid())
583 gid_t gid = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sre_parse.py 75 gid = self.groups
76 self.groups = gid + 1
81 "was group %d" % (repr(name), gid, ogid))
82 self.groupdict[name] = gid
83 self.open.append(gid)
84 return gid
85 def closegroup(self, gid):
86 self.open.remove(gid)
87 def checkgroup(self, gid):
88 return gid < self.groups and gid not in self.open
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_parse.py 73 gid = self.groups
74 self.groups = gid + 1
79 "was group %d" % (repr(name), gid, ogid))
80 self.groupdict[name] = gid
81 self.open.append(gid)
82 return gid
83 def closegroup(self, gid):
84 self.open.remove(gid)
85 def checkgroup(self, gid):
86 return gid < self.groups and gid not in self.open
    [all...]
  /external/python/cpython2/Lib/
sre_parse.py 76 gid = self.groups
77 self.groups = gid + 1
82 "was group %d" % (repr(name), gid, ogid))
83 self.groupdict[name] = gid
84 self.open.append(gid)
85 return gid
86 def closegroup(self, gid):
87 self.open.remove(gid)
88 def checkgroup(self, gid):
89 return gid < self.groups and gid not in self.ope
    [all...]
  /external/e2fsprogs/contrib/android/
perms.c 98 * Returns mapped UID/GID if there is a corresponding entry in |mapping|.
124 unsigned int uid = 0, gid = 0, imode = 0; local
140 params->target_out, &uid, &gid, &imode,
143 gid = resolve_ugid(params->gid_map, gid);
145 inode.i_gid = (__u16) gid;
147 ext2fs_set_i_gid_high(inode, (__u16) (gid >> 16));
  /external/epid-sdk/epid/common/src/
file_parser.c 43 GroupId gid; ///< group ID member in struct:EpidGroupPubKeyCertificate
219 empty_rl_size = sizeof(GroupRl) - sizeof(((GroupRl*)0)->gid[0]);
220 rl_entry_size = sizeof(((GroupRl*)0)->gid[0]);
222 sizeof(((GroupRl*)0)->gid[0]) + sizeof(EcdsaSignature);
311 pubkey->gid = buf_pubkey->gid;
  /external/freetype/src/sfnt/
ttcolr.c 50 FT_UShort gid; member in struct:BaseGlyphRecord_
191 FT_UShort gid = FT_NEXT_USHORT( p ); local
194 if ( gid < glyph_id )
196 else if (gid > glyph_id )
200 record->gid = gid;
  /external/freetype/src/tools/ftrandom/
ftrandom.c 167 unsigned int gid; local
180 for ( gid = 0; gid < face->num_glyphs; gid++ )
185 if ( !FT_Load_Glyph( face, gid, load_flags ) )
189 FT_Load_Glyph( face, gid, load_flags );
  /external/python/cpython3/Lib/
sre_parse.py 85 gid = self.groups
93 "was group %d" % (name, gid, ogid))
94 self.groupdict[name] = gid
95 return gid
96 def closegroup(self, gid, p):
97 self.groupwidths[gid] = p.getwidth()
98 def checkgroup(self, gid):
99 return gid < self.groups and self.groupwidths[gid] is not None
101 def checklookbehindgroup(self, gid, source)
    [all...]
  /cts/common/device-side/util/jni/
android_cts_FileUtils.cpp 88 jint gid)
90 struct group *grp = getgrgid(gid);
137 gFileStatusGidFieldID = env->GetFieldID(gFileStatusClass, "gid", "I");

Completed in 1493 milliseconds

1 2 3 4 5 6 78 91011>>