/external/ltp/testcases/kernel/containers/userns/ |
userns01.c | 53 int uid, gid; local 61 gid = getegid(); 65 if (uid != overflowuid || gid != overflowgid) { 66 printf("Got unexpected result of uid=%d gid=%d\n", uid, gid);
|
userns02.c | 45 int uid, gid; local 49 gid = getegid(); 51 if (uid == 100 && gid == 100) { 52 printf("Got expected uid and gid.\n"); 55 printf("Got unexpected result of uid=%d gid=%d\n", uid, gid);
|
/external/epid-sdk/epid/common/ |
types.h | 151 * Group public key: (gid, h1, h2, w) 154 GroupId gid; ///< group ID member in struct:GroupPubKey 162 * Issuing private key: (gid, gamma) 165 GroupId gid; ///< group ID member in struct:IPrivKey 171 * Private key: (gid, A, x, f) 174 GroupId gid; ///< group ID member in struct:PrivKey 185 * Compressed Private key: (gid, A.x, seed) 188 GroupId gid; ///< group ID member in struct:CompressedPrivKey 195 * Membership credential: (gid, A, x) 198 GroupId gid; ///< group I member in struct:MembershipCredential 264 GroupId gid; \/\/\/< group ID member in struct:PrivRl 282 GroupId gid; \/\/\/< group ID member in struct:SigRl 296 GroupId gid[1]; \/\/\/< revoked group IDs (flexible array) member in struct:GroupRl 304 GroupId gid; \/\/\/< group ID member in struct:VerifierRl [all...] |
/external/fonttools/Lib/fontTools/ttLib/tables/ |
sbixGlyph.py | 25 def __init__(self, glyphName=None, referenceGlyphName=None, originOffsetX=0, originOffsetY=0, graphicType=None, imageData=None, rawdata=None, gid=0): 26 self.gid = gid 47 self.glyphName = ttFont.getGlyphName(self.gid) 54 #print "Glyph %i header too short: Expected %x, got %x." % (self.gid, sbixGlyphHeaderFormatSize, len(self.rawdata)) 61 gid, = struct.unpack(">H", self.rawdata[sbixGlyphHeaderFormatSize:]) 62 self.referenceGlyphName = ttFont.getGlyphName(gid) 68 del self.gid 76 self.gid = struct.pack(">H", ttFont.getGlyphID(self.glyphName))
|
/external/ltp/testcases/kernel/syscalls/utils/ |
compat_16.h | 69 #define GID16_CHECK(gid, sys_name, cleanup) \ 70 if (!GID_SIZE_CHECK(gid)) { \ 72 "gid %d of %s is too large for testing 16-bit version " \ 73 "of %s()", gid, #gid, #sys_name); \ 97 int SETGID(void (cleanup)(void), GID_T gid) 99 LTP_CREATE_SYSCALL(setgid, cleanup, gid); 122 int SETFSGID(void (cleanup)(void), GID_T gid) 124 LTP_CREATE_SYSCALL(setfsgid, cleanup, gid);
|
/external/strace/tests/ |
overflowuid.c | 92 check_overflowgid(const int gid) 94 check_overflow_id(gid, "/proc/sys/kernel/overflowgid");
|
/external/strace/tests-m32/ |
overflowuid.c | 92 check_overflowgid(const int gid) 94 check_overflow_id(gid, "/proc/sys/kernel/overflowgid");
|
/external/strace/tests-mx32/ |
overflowuid.c | 92 check_overflowgid(const int gid) 94 check_overflow_id(gid, "/proc/sys/kernel/overflowgid");
|
/external/swiftshader/third_party/LLVM/lib/Archive/ |
ArchiveInternals.h | 49 char gid[6]; ///< group id in ASCII decimal member in class:llvm::ArchiveMemberHeader 62 memset(gid,' ',6);
|
/external/toybox/toys/pending/ |
useradd.c | 39 long gid; 92 if (toys.optflags & FLAG_G) TT.gid = xgetgrnam(TT.u_grp)->gr_gid; 94 // Set the GID for the user, if not specified 95 if (toys.optflags & FLAG_S) TT.gid = CFG_TOYBOX_UID_SYS; 96 else TT.gid = CFG_TOYBOX_UID_USR; 98 //find unused gid 99 while (getgrgid(TT.gid)) TT.gid++; 101 pwd.pw_gid = TT.gid; 144 xmprintf("%lu:%lu", TT.uid, TT.gid), p, 0}) [all...] |
/device/google/cuttlefish_common/common/libs/fs/ |
gce_fs.h | 44 extern int gce_fs_prepare_dir(const char* path, mode_t mode, uid_t uid, gid_t gid);
|
/external/epid-sdk/epid/common/1.1/ |
types.h | 112 * Group public key: (gid, h1, h2, w) 115 Epid11GroupId gid; ///< group ID member in struct:Epid11GroupPubKey 165 * Private-key based revocation list PrivRL: (gid, RLver, n1, f[0], 169 Epid11GroupId gid; ///< group ID member in struct:Epid11PrivRl 183 * Signature based revocation list SigRL: (gid, RLver, n2, B[0], 187 Epid11GroupId gid; ///< group ID member in struct:Epid11SigRl 195 * Group revocation list GroupRL: (RLver, n3, gid[0], ..., 196 * gid[n3-1]) 201 Epid11GroupId gid[1]; ///< revoked group IDs (flexible array) member in struct:Epid11GroupRl
|
/external/epid-sdk/epid/member/tiny/src/ |
provisionkey.c | 52 if (0 != memcmp(&pub_key->gid, &priv_key->gid, sizeof(GroupId))) { 71 ctx->credential.gid = priv_key->gid;
|
setsigrl.c | 49 // verify that gid given and gid in SigRl match 50 if (0 != memcmp(&ctx->pub_key.gid, &sig_rl->gid, sizeof(sig_rl->gid))) {
|
/external/ltp/testcases/kernel/syscalls/bind/ |
bind02.c | 71 gid_t gid; variable 81 if ((rc = setegid(gid)) == -1) { 82 tst_brkm(TBROK | TERRNO, 0, "setegid(%u) failed", gid); 139 gid = gr->gr_gid;
|
/external/openssh/ |
sftp-common.h | 39 u_int32_t gid; member in struct:Attrib
|
/external/squashfs-tools/squashfs-tools/ |
android.h | 22 unsigned *uid, unsigned *gid, unsigned *mode, uint64_t *capabilities);
|
pseudo.h | 30 unsigned int gid; member in struct:pseudo_dev
|
/external/tensorflow/tensorflow/tools/ci_build/builds/ |
with_the_same_user | 43 getent group "${CI_BUILD_GID}" || addgroup ${ADDUSER_OPTS} --gid "${CI_BUILD_GID}" "${CI_BUILD_GROUP}" 45 --gid "${CI_BUILD_GID}" --uid "${CI_BUILD_UID}" \
|
/external/u-boot/fs/yaffs2/ |
yaffs_attribs.h | 23 void yaffs_attribs_init(struct yaffs_obj *obj, u32 gid, u32 uid, u32 rdev);
|
/build/make/tools/fs_get_stats/ |
fs_get_stats.c | 44 unsigned gid = (unsigned)-1; local 62 fs_config(argv[3], is_dir, argv[4], &uid, &gid, &perms, &capabilities); 63 fprintf(stdout, "%d %d 0%o\n", uid, gid, perms);
|
/external/harfbuzz_ng/src/ |
hb-subset-plan.hh | 45 // For each cp that we'd like to retain maps to the corresponding gid. 71 hb_codepoint_t gid = glyph_map->get (old_gid); local 72 if (gid == HB_MAP_VALUE_INVALID) 75 *new_gid = gid;
|
/external/python/cpython2/Lib/bsddb/test/ |
test_distributed_transactions.py | 68 gid = "%%%dd" %db.DB_GID_SIZE 69 gid = adapt(gid %i) 70 self.db.put(i, gid, txn=txn, flags=db.DB_APPEND) 71 txns.add(gid) 72 txn.prepare(gid) 81 for gid,txn in recovered_txns : 82 self.assertIn(gid, txns) 95 for gid,txn in recovered_txns : 97 committed_txns.add(gid) [all...] |
/bionic/libc/bionic/ |
grp_pwd_file.cpp | 103 const char* gid() const { function in struct:__anon198::PasswdLine 124 gid_t gid; local 125 if (!FieldToUid(this->gid(), &gid)) { 130 passwd_state->passwd_.pw_gid = gid; 159 const char* gid() const { function in struct:__anon198::GroupLine 165 if (name() == nullptr || gid() == nullptr) { 169 gid_t gid; local 170 if (!FieldToUid(this->gid(), &gid)) { [all...] |
/external/skia/src/pdf/ |
SkPDFMakeToUnicodeCmap.cpp | 76 SkGlyphID gid) { 78 SkPDFUtils::WriteUInt16BE(cmap, gid); 80 SkPDFUtils::WriteUInt8(cmap, SkToU8(gid)); 171 SkGlyphID gid = i + glyphOffset; local 172 bool inSubset = i < limit && (subset == nullptr || subset->has(gid)); 181 glyphToUnicode[gid] == 196 currentRangeEntry.fUnicode = glyphToUnicode[gid];
|