Home
last modified time | relevance | path

Searched refs:groupname (Results 1 - 24 of 24) sorted by relevance

/third_party/libwebsockets/lib/plat/unix/
H A Dunix-caps.c116 /* 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 Dr600_perfcounter.c436 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 Dperiodic_cpu_load.c69 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 Dcoap_net.h538 * @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 Dac_perfcounter.c1073 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 Dcms_ec.c45 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 Dcms_ec.c45 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 Dutil.c1236 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 Dutil.h242 int get_group_creds(const char **groupname, gid_t *gid);
/third_party/libuv/test/
H A Dtest-platform-output.c160 grp.groupname = "ENOTSUP"; in TEST_IMPL()
168 printf(" gid: %ld (%s)\n", pwd.gid, grp.groupname); in TEST_IMPL()
H A Dtest-get-passwd.c194 len = strlen(grp.groupname); in TEST_IMPL()
/third_party/openssl/test/
H A Dendecoder_legacy_test.c208 static char groupname[] = "prime256v1"; variable
210 OSSL_PARAM_utf8_string("group", groupname, sizeof(groupname) - 1),
H A Dendecode_test.c1279 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 Decx_kmgmt.c530 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 Decx_kmgmt.c527 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 Dlws-context-vhost.h611 * 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 DvktSpvAsmImageSamplerTests.cpp1178 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 DvktSpvAsmImageSamplerTests.cpp1193 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 Dprivate-lib-core.h626 const char *username, *groupname; member
H A Dcontext.c646 context->groupname = info->groupname; in lws_create_context()
/third_party/libuv/src/
H A Duv-common.c161 grp->groupname = NULL; in uv_os_free_group()
/third_party/libwebsockets/lib/roles/http/server/
H A Dlejp-conf.c38 "global.groupname",
321 a->info->groupname = a->p; in lejp_globals_cb()
/third_party/libuv/src/unix/
H A Dcore.c1342 /* 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 Duv.h1235 char* groupname; member

Completed in 33 milliseconds