/third_party/libwebsockets/lib/plat/unix/ |
H A D | unix-caps.c | 116 /* if he gave us the groupname, align gid to match it */ 118 if (context->groupname) { 123 if (!getgrnam_r(context->groupname, &gr, strs, sizeof(strs), &g) && g) { 125 g = getgrnam(context->groupname); 129 context->groupname, g->gr_gid); 132 lwsl_cx_err(context, "unknown groupname '%s'", 133 context->groupname); 166 /* if he gave us the gid or we have it from the groupname, set it */
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_perfcounter.c | 436 char *groupname; in r600_init_block_names() local 466 groupname = block->group_names; in r600_init_block_names() 472 strcpy(groupname, block->basename); in r600_init_block_names() 473 p = groupname + namelen; in r600_init_block_names() 489 groupname += block->group_name_stride; in r600_init_block_names() 501 groupname = block->group_names; in r600_init_block_names() 505 sprintf(p, "%s_%03d", groupname, j); in r600_init_block_names() 508 groupname += block->group_name_stride; in r600_init_block_names()
|
/third_party/ltp/testcases/realtime/func/periodic_cpu_load/ |
H A D | periodic_cpu_load.c | 69 static const char groupname[NUM_GROUPS] = "ABC"; variable 160 printf("TID %d (%c - prio %d) complete\n", t->id, groupname[t->id >> 2], in periodic_thread() 221 printf("TID %d (%c)\n", i, groupname[i >> 2]); in main()
|
/third_party/libcoap/include/coap3/ |
H A D | coap_net.h | 538 * @param groupname The name of the group that is to be joined for listening. 544 int coap_join_mcast_group_intf(coap_context_t *ctx, const char *groupname, 547 #define coap_join_mcast_group(ctx, groupname) \ 548 (coap_join_mcast_group_intf(ctx, groupname, NULL))
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_perfcounter.c | 1073 char *groupname; in ac_init_block_names() local 1103 groupname = block->group_names; in ac_init_block_names() 1109 strcpy(groupname, block->b->b->name); in ac_init_block_names() 1110 p = groupname + namelen; in ac_init_block_names() 1126 groupname += block->group_name_stride; in ac_init_block_names() 1138 groupname = block->group_names; in ac_init_block_names() 1142 sprintf(p, "%s_%03d", groupname, j); in ac_init_block_names() 1145 groupname += block->group_name_stride; in ac_init_block_names()
|
/third_party/node/deps/openssl/openssl/crypto/cms/ |
H A D | cms_ec.c | 45 char groupname[OSSL_MAX_NAME_SIZE]; in pkey_type2param() local 51 if (OBJ_obj2txt(groupname, sizeof(groupname), poid, 0) <= 0 in pkey_type2param() 52 || EVP_PKEY_CTX_set_group_name(pctx, groupname) <= 0) { in pkey_type2param()
|
/third_party/openssl/crypto/cms/ |
H A D | cms_ec.c | 45 char groupname[OSSL_MAX_NAME_SIZE]; in pkey_type2param() local 51 if (OBJ_obj2txt(groupname, sizeof(groupname), poid, 0) <= 0 in pkey_type2param() 52 || EVP_PKEY_CTX_set_group_name(pctx, groupname) <= 0) { in pkey_type2param()
|
/third_party/eudev/src/shared/ |
H A D | util.c | 1236 int get_group_creds(const char **groupname, gid_t *gid) { in get_group_creds() argument 1240 assert(groupname); in get_group_creds() 1245 if (streq(*groupname, "root") || streq(*groupname, "0")) { in get_group_creds() 1246 *groupname = "root"; in get_group_creds() 1254 if (parse_gid(*groupname, &id) >= 0) { in get_group_creds() 1259 *groupname = g->gr_name; in get_group_creds() 1262 g = getgrnam(*groupname); in get_group_creds()
|
H A D | util.h | 242 int get_group_creds(const char **groupname, gid_t *gid);
|
/third_party/libuv/test/ |
H A D | test-platform-output.c | 160 grp.groupname = "ENOTSUP"; in TEST_IMPL() 168 printf(" gid: %ld (%s)\n", pwd.gid, grp.groupname); in TEST_IMPL()
|
H A D | test-get-passwd.c | 194 len = strlen(grp.groupname); in TEST_IMPL()
|
/third_party/openssl/test/ |
H A D | endecoder_legacy_test.c | 208 static char groupname[] = "prime256v1"; variable 210 OSSL_PARAM_utf8_string("group", groupname, sizeof(groupname) - 1),
|
H A D | endecode_test.c | 1279 static char groupname[] = "prime256v1"; in setup_tests() local 1281 OSSL_PARAM_utf8_string("group", groupname, sizeof(groupname) - 1), in setup_tests()
|
/third_party/node/deps/openssl/openssl/providers/implementations/keymgmt/ |
H A D | ecx_kmgmt.c | 530 const char *groupname = NULL; in ecx_gen_set_params() local 539 groupname = "x25519"; in ecx_gen_set_params() 542 groupname = "x448"; in ecx_gen_set_params() 549 || groupname == NULL in ecx_gen_set_params() 550 || OPENSSL_strcasecmp(p->data, groupname) != 0) { in ecx_gen_set_params()
|
/third_party/openssl/providers/implementations/keymgmt/ |
H A D | ecx_kmgmt.c | 527 const char *groupname = NULL; in ecx_gen_set_params() local 536 groupname = "x25519"; in ecx_gen_set_params() 539 groupname = "x448"; in ecx_gen_set_params() 546 || groupname == NULL in ecx_gen_set_params() 547 || OPENSSL_strcasecmp(p->data, groupname) != 0) { in ecx_gen_set_params()
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-context-vhost.h | 611 * or -1. See also .groupname below. */ 758 const char *groupname; /**< CONTEXT: string groupname for post-init member 759 * permissions. Like .gid but takes a string groupname. */ 761 * on a unix socket, you can give a "username:groupname" string here
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmImageSamplerTests.cpp | 1178 const char* groupname = (testNdx == TESTTYPE_OPTYPEIMAGE_MISMATCH) ? formatData.m_name.c_str() : getTestTypeName((TestType)testNdx); in addGraphicsImageSamplerTest() local 1179 de::MovePtr<tcu::TestCaseGroup> typeGroup(new tcu::TestCaseGroup(testCtx, groupname)); in addGraphicsImageSamplerTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmImageSamplerTests.cpp | 1193 const char *groupname = testNdx == TESTTYPE_OPTYPEIMAGE_MISMATCH ? optypeimageFormatMismatchCase[formatIndex] : getTestTypeName((TestType)testNdx); in addGraphicsImageSamplerTest() local 1194 de::MovePtr<tcu::TestCaseGroup> typeGroup(new tcu::TestCaseGroup(testCtx, groupname, "")); in addGraphicsImageSamplerTest()
|
/third_party/libwebsockets/lib/core/ |
H A D | private-lib-core.h | 626 const char *username, *groupname; member
|
H A D | context.c | 646 context->groupname = info->groupname; in lws_create_context()
|
/third_party/libuv/src/ |
H A D | uv-common.c | 161 grp->groupname = NULL; in uv_os_free_group()
|
/third_party/libwebsockets/lib/roles/http/server/ |
H A D | lejp-conf.c | 38 "global.groupname", 321 a->info->groupname = a->p; in lejp_globals_cb()
|
/third_party/libuv/src/unix/ |
H A D | core.c | 1342 /* Allocate memory for the groupname and members. */ in uv_os_get_group() 1368 /* Copy the groupname */ in uv_os_get_group() 1369 grp->groupname = gr_mem; in uv_os_get_group() 1370 memcpy(grp->groupname, gp.gr_name, name_size); in uv_os_get_group()
|
/third_party/libuv/include/ |
H A D | uv.h | 1235 char* groupname; member
|