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

12 3 4 5 6 7 8 91011>>

  /external/strace/tests-m32/
fchownat.c 44 uid_t gid = getegid(); local
49 long rc = syscall(__NR_fchownat, AT_FDCWD, sample, uid, gid, 0);
51 sample, uid, gid, sprintrc(rc));
xchownx.c 97 #define PAIR(val) { val, gid }, { uid, val }
106 unsigned int gid = GETEGID; local
107 CHECK_OVERFLOWUID(gid);
110 const long uid, gid; member in struct:__anon39728
112 { uid, gid },
113 { (unsigned long) 0xffffffff00000000ULL | uid, gid },
114 { uid, (unsigned long) 0xffffffff00000000ULL | gid },
117 { 0xffff0000U | uid, gid },
118 { uid, 0xffff0000U | gid },
136 const unsigned int gnum = ugid2int(tests[i].gid);
    [all...]
  /external/strace/tests-mx32/
fchownat.c 44 uid_t gid = getegid(); local
49 long rc = syscall(__NR_fchownat, AT_FDCWD, sample, uid, gid, 0);
51 sample, uid, gid, sprintrc(rc));
xchownx.c 97 #define PAIR(val) { val, gid }, { uid, val }
106 unsigned int gid = GETEGID; local
107 CHECK_OVERFLOWUID(gid);
110 const long uid, gid; member in struct:__anon39824
112 { uid, gid },
113 { (unsigned long) 0xffffffff00000000ULL | uid, gid },
114 { uid, (unsigned long) 0xffffffff00000000ULL | gid },
117 { 0xffff0000U | uid, gid },
118 { uid, 0xffff0000U | gid },
136 const unsigned int gnum = ugid2int(tests[i].gid);
    [all...]
  /external/skia/src/compute/skc/platforms/cl_12/kernels/
rasters_alloc.cl 39 skc_uint const gid = get_global_id(0);
40 skc_bool const is_active = gid < count;
52 meta.in.u32v4 = vload4(gid,metas);
55 raster_id = raster_ids[gid];
59 gid,
87 gid,
125 vstore4(meta.out.u32v4,gid,metas);
128 metas[SKC_RASTER_COHORT_META_OFFSET_READS + gid] = reads;
  /external/skqp/src/compute/skc/platforms/cl_12/kernels/
rasters_alloc.cl 39 skc_uint const gid = get_global_id(0);
40 skc_bool const is_active = gid < count;
52 meta.in.u32v4 = vload4(gid,metas);
55 raster_id = raster_ids[gid];
59 gid,
87 gid,
125 vstore4(meta.out.u32v4,gid,metas);
128 metas[SKC_RASTER_COHORT_META_OFFSET_READS + gid] = reads;
  /external/strace/
stat.h 42 unsigned long long gid; member in struct:strace_stat
  /external/libbrillo/brillo/
userdb_utils.h 19 // Looks up the UID and GID corresponding to |user|. Returns true on success.
20 // Passing nullptr for |uid| or |gid| causes them to be ignored.
22 const std::string& user, uid_t* uid, gid_t* gid) WARN_UNUSED_RESULT;
24 // Looks up the GID corresponding to |group|. Returns true on success.
25 // Passing nullptr for |gid| causes it to be ignored.
27 const std::string& group, gid_t* gid) WARN_UNUSED_RESULT;
userdb_utils.cc 19 bool GetUserInfo(const std::string& user, uid_t* uid, gid_t* gid) {
33 if (gid)
34 *gid = pwd->pw_gid;
38 bool GetGroupInfo(const std::string& group, gid_t* gid) {
50 if (gid)
51 *gid = grp->gr_gid;
  /external/epid-sdk/epid/member/src/
provision_bulk.c 43 // The member verifies that gid in public key and in private key
45 if (memcmp(&pub_key->gid, &priv_key->gid, sizeof(GroupId))) {
56 credential.gid = priv_key->gid;
85 ctx->credential.gid = credential.gid;
provision_join.c 43 if (memcmp(&pub_key->gid, &credential->gid, sizeof(GroupId))) {
80 ctx->credential.gid = credential->gid;
  /external/libxcam/cl_kernel/
kernel_wire_frame.cl 19 int gid = get_global_id (0);
20 if (gid >= coords_num) {
24 uint2 coord = wire_frames_coords [gid];
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl01.c 35 static gid_t gid; variable
104 if (buf.msg_perm.gid == gid) {
105 tst_res(TPASS, "msg_perm.gid = %u", (unsigned)gid);
107 tst_res(TFAIL, "msg_perm.gid = %u, expected %u",
108 (unsigned)buf.msg_perm.gid, (unsigned)gid);
118 if (buf.msg_perm.cgid == gid) {
119 tst_res(TPASS, "msg_perm.cgid = %u", (unsigned)gid);
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_perfmon.c 49 int gid, cid; local
54 for (gid = 0; gid < ctx->PerfMonitor.NumGroups; gid++) {
55 const struct gl_perf_monitor_group *g = &ctx->PerfMonitor.Groups[gid];
56 const struct st_perf_monitor_group *stg = &st->perfmon[gid];
58 if (m->ActiveGroups[gid] > g->MaxActiveCounters) {
67 num_active_counters += m->ActiveGroups[gid];
69 max_batch_counters += m->ActiveGroups[gid];
87 for (gid = 0; gid < ctx->PerfMonitor.NumGroups; gid++)
291 int gid, cid; local
351 int gid, cid; local
457 int gid; local
    [all...]
  /external/epid-sdk/epid/verifier/src/
verify.c 103 // a. The verifier verifies that gid does not match any entry in GroupRL.
106 if (0 == memcmp(&ctx->pub_key->gid, &ctx->group_rl->gid[i],
107 sizeof(ctx->pub_key->gid))) {
108 // b. If gid matches an entry in GroupRL, aborts and returns 2.
117 // a. The verifier verifies that gid in the public key and in PrivRL match.
119 if (0 != memcmp(&ctx->pub_key->gid, &ctx->priv_rl->gid,
120 sizeof(ctx->pub_key->gid))) {
138 // a. The verifier verifies that gid in the public key and in SigRL match
    [all...]
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_auth_authunix_create/
rpc_authunix_create.c 62 gid_t gid; local
67 gid = getegid();
81 authUnx = authunix_create(hostname, uid, gid, num_groups, aup_gids);
  /external/minijail/
system.h 58 uid_t gid, bool bind, unsigned long *mnt_flags);
60 int lookup_user(const char *user, uid_t *uid, gid_t *gid);
61 int lookup_group(const char *group, gid_t *gid);
  /external/epid-sdk/epid/member/tiny/src/
native_types.h 26 GroupId gid; ///< group ID member in struct:NativeGroupPubKey
34 GroupId gid; ///< group ID member in struct:NativeMembershipCredential
  /external/ltp/testcases/kernel/syscalls/utils/
compat_tst_16.h 66 #define GID16_CHECK(gid, sys_name) ({ \
67 if (!GID_SIZE_CHECK(gid)) { \
69 "gid %d of %s is too large for testing 16-bit " \
70 "version of %s()", gid, #gid, #sys_name); \
94 int SETGID(GID_T gid)
96 TST_CREATE_SYSCALL(setgid, gid);
119 int SETFSGID(GID_T gid)
121 TST_CREATE_SYSCALL(setfsgid, gid);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
X7875_NewUnix.java 30 * An extra field that stores UNIX UID/GID data (owner &amp; group ownership) for a given
44 * GIDSize 1 byte Size of GID field
45 * GID Variable GID for this entry (little endian)
66 // Also, the spec theoretically allows UID/GID up to 255 bytes long!
70 private BigInteger gid; field in class:X7875_NewUnix
100 * Gets the GID as a long. GID is typically a 32 bit unsigned
105 * @return the GID value.
107 public long getGID() { return ZipUtil.bigToLong(gid); }
    [all...]
  /bionic/libc/kernel/uapi/asm-generic/
ipcbuf.h 24 __kernel_gid32_t gid; member in struct:ipc64_perm
  /device/google/cuttlefish_common/common/libs/utils/
users.cpp 77 auto gid = GroupIdFromName(group); local
78 if (gid == static_cast<gid_t>(-1)) {
82 if (gid == getegid()) {
88 if (std::find(groups.cbegin(), groups.cend(), gid) != groups.cend()) {
  /external/epid-sdk/epid/common/1.1/src/
grouppubkey.h 30 Epid11GroupId gid; ///< group ID member in struct:Epid11GroupPubKey_
38 Allocates memory and initializes gid, h1, h2, w parameters. Use
48 Group public key: (gid, h1, h2, w)
  /external/epid-sdk/epid/common/src/
grouppubkey.h 30 GroupId gid; ///< group ID member in struct:GroupPubKey_
38 Allocates memory and initializes gid, h1, h2, w parameters. Use
48 Group public key: (gid, h1, h2, w)
  /external/kernel-headers/original/uapi/asm-generic/
ipcbuf.h 23 __kernel_gid32_t gid; member in struct:ipc64_perm

Completed in 1087 milliseconds

12 3 4 5 6 7 8 91011>>