/third_party/toybox/toys/posix/ |
D | chgrp.c | 41 char *owner_name, *group_name; 62 (toys.which->name[2]=='o' && *TT.group_name) ? ":" : "", in do_chgrp() 63 TT.group_name, path); in do_chgrp() 65 perror_msg("'%s' to '%s:%s'", path, TT.owner_name, TT.group_name); in do_chgrp() 79 TT.owner_name = TT.group_name = ""; in chgrp_main() 88 TT.group_name = grp; in chgrp_main() 91 } else TT.group_name = *toys.optargs; in chgrp_main() 93 if (TT.group_name && *TT.group_name) in chgrp_main() 94 TT.group = xgetgid(TT.group_name); in chgrp_main()
|
/third_party/rust/crates/aho-corasick/bench/src/ |
D | bench.rs | 25 group_name: &str, in define_aho_corasick() 41 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick() 52 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick() 61 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick() 73 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick() 85 group_name: &str, in define_aho_corasick_dfa() 108 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick_dfa() 121 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick_dfa() 134 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick_dfa() 147 define(c, group_name, &name, corpus, move |b| { in define_aho_corasick_dfa() [all …]
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | gen_gl_enum_utils.py | 100 for group_name, inner_mapping in gl_enum_in_groups.items(): 126 exporting_groups.append((group_name, inner_code_block)) 130 group_name=group_name, 132 ) for group_name, inner_code_block in sorted(exporting_groups, key=lambda x: x[0]) 151 group_name = enums_group_node.attrib['name'] 152 if group_name in exclude_gl_enum_groups: 155 if group_name not in gl_enum_in_groups: 156 gl_enum_in_groups[group_name] = dict() 161 gl_enum_in_groups[group_name][enum_name] = all_gl_enums[enum_name]
|
D | generate_entry_points.py | 1396 group_name = find_gl_enum_group_in_command(command_node, name_only) 1397 return "GLbitfieldToString(GLenumGroup::%s, %s).c_str()" % (group_name, name_only) 1400 group_name = find_gl_enum_group_in_command(command_node, name_only) 1401 return "GLenumToString(GLenumGroup::%s, %s)" % (group_name, name_only) 1464 group_name = None 1467 group_name = param_node.attrib.get('group', None) 1470 if group_name is None or group_name in registry_xml.unsupported_enum_group_names: 1471 group_name = registry_xml.default_enum_group_name 1473 return group_name
|
/third_party/protobuf/python/ |
D | mox.py | 664 def _CheckAndCreateNewGroup(self, group_name, group_class): argument 676 if isinstance(group, group_class) and group.group_name() == group_name: 681 new_group = group_class(group_name) 686 def InAnyOrder(self, group_name="default"): argument 702 return self._CheckAndCreateNewGroup(group_name, UnorderedGroup) 704 def MultipleTimes(self, group_name="default"): argument 716 return self._CheckAndCreateNewGroup(group_name, MultipleTimesGroup) 1185 def __init__(self, group_name): argument 1186 self._group_name = group_name 1188 def group_name(self): member in MethodGroup [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/passwd/ |
D | getgrnam.c | 30 const char *group_name = "root"; in getgrnam_0100() local 33 struct group *grp = getgrnam(group_name); in getgrnam_0100() 40 if (strcmp(group_name, grp->gr_name)) { in getgrnam_0100()
|
D | getgrnam_r.c | 34 const char *group_name = "root"; in getgrnam_r_0100() local 36 int result = getgrnam_r(group_name, &grp_storage, buf, sizeof(buf), &grp); in getgrnam_r_0100() 47 if (strcmp(group_name, grp->gr_name)) { in getgrnam_r_0100()
|
D | getgrgid.c | 30 const char *group_name = "root"; in getgrgid_0100() local 40 if (strcmp(group_name, grp->gr_name)) { in getgrgid_0100()
|
D | getgrgid_r.c | 34 const char *group_name = "root"; in getgrgid_r_0100() local 47 if (strcmp(group_name, grp->gr_name)) { in getgrgid_r_0100()
|
/third_party/glib/patch/ |
D | backport-gkeyfile-Fix-group-comment-management.patch | 105 group->name = g_strdup (group_name); 197 - const gchar *group_name); 198 + const gchar *group_name, 207 - g_key_file_add_group (key_file, group_name); 208 + g_key_file_add_group (key_file, group_name, FALSE); 209 g_free (group_name); 231 - g_key_file_add_group (key_file, group_name); 232 + g_key_file_add_group (key_file, group_name, TRUE); 278 const gchar *group_name, 286 g_return_val_if_fail (group_name != NULL && g_key_file_is_group_name (group_name), FALSE); [all …]
|
/third_party/node/deps/v8/tools/ |
D | callstats.py | 364 for group_name, regexp in groups: 365 if not group_name.startswith('Group-' + category_prefix): continue 366 group_data['time'] += entries[group_name]['time'] 367 group_data['count'] += entries[group_name]['count'] 393 for group_name, regexp in groups: 394 entries[group_name] = { 'time': 0, 'count': 0 } 416 for group_name, regexp in groups: 418 entries[group_name]['time'] += time 419 entries[group_name]['count'] += count 423 for group_name, regexp in groups: [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/ |
D | vktSubgroupUniformControlFlowTests.cpp | 268 const char* group_name = (control ? "large_full_control" : "large_full"); in createSubgroupUniformControlFlowTests() local 269 uniformControlFlowTests->addChild(createTestGroup(testCtx, group_name, in createSubgroupUniformControlFlowTests() 296 group_name = (control ? "large_partial_control" : "large_partial"); in createSubgroupUniformControlFlowTests() 297 uniformControlFlowTests->addChild(createTestGroup(testCtx, group_name, in createSubgroupUniformControlFlowTests() 331 const char* group_name = (control ? "small_full_control" : "small_full"); in createSubgroupUniformControlFlowTests() local 332 uniformControlFlowTests->addChild(createTestGroup(testCtx, group_name, in createSubgroupUniformControlFlowTests() 359 group_name = (control ? "small_partial_control" : "small_partial"); in createSubgroupUniformControlFlowTests() 360 uniformControlFlowTests->addChild(createTestGroup(testCtx, group_name, in createSubgroupUniformControlFlowTests()
|
/third_party/ltp/lib/ |
D | tst_cgroup.c | 132 char group_name[NAME_MAX + 1]; member 825 const char *const group_name) in cgroup_group_init() argument 829 if (!group_name) in cgroup_group_init() 832 if (strlen(group_name) > NAME_MAX) in cgroup_group_init() 835 strcpy(cg->group_name, group_name); in cgroup_group_init() 869 const char *const group_name) in tst_cgroup_group_mk() argument 876 cgroup_group_init(cg, group_name); in tst_cgroup_group_mk() 880 cgroup_dir_mk(*dir, group_name, new_dir); in tst_cgroup_group_mk() 889 return cg->group_name; in tst_cgroup_group_name() 978 ctrl_name, cg->group_name); in tst_cgroup_ver() [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | gen_builtin_symbols.py | 1615 def process_single_function(shader_type, group_name, function_props, symbols, variables, functions, argument 1672 functions.operator_list[op] = group_name 1673 is_unary = group_name.startswith('Math') and len(get_parameters(function_variants[0])) == 1 1685 if group_name != previous_group_name: 1686 print('Op ' + op + ' found in group ' + group_name + ' but was previously in group ' + 1688 assert (group_name == previous_group_name) 1767 def process_single_function_group(shader_type, group_name, group, symbols, variables, functions, argument 1775 process_single_function(shader_type, group_name, function_props, symbols, variables, 1792 process_single_function(shader_type, group_name, core_props, symbols, variables, 1797 def process_function_group(group_name, group, symbols, variables, functions, argument [all …]
|
/third_party/rust/crates/memchr/bench/src/ |
D | bench.rs | 38 let (group_name, bench_name) = (it.next().unwrap(), it.next().unwrap()); in define() 39 c.benchmark_group(group_name) in define()
|
/third_party/node/deps/v8/gni/ |
D | split_static_library.gni | 21 group_name = target_name 44 visibility = [ ":$group_name" ] 65 group(group_name) {
|
/third_party/mbedtls/programs/psa/ |
D | psa_constant_names.c | 106 const char *group_name = psa_dh_family_name(group); in append_with_group() local 109 if (group_name != NULL) { in append_with_group() 111 group_name, strlen(group_name)); in append_with_group()
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | RBImporter.java | 122 protected void importResource(BundleItem item, String encoding, String group_name) { in importResource() argument 127 if (group_name == null) in importResource() 128 group_name = getDefaultGroup(); in importResource() 142 else if (tempg.getName().equals(group_name)) { in importResource() 150 bundle.addBundleGroup(group_name, ""); in importResource() 154 if (tempg.getName().equals(group_name)) { in importResource()
|
/third_party/cef/patch/patches/ |
D | chrome_plugins.patch | 142 plugin_auth_host->BlockedUnauthorizedPlugin(group_name, identifier); 150 l10n_util::GetStringFUTF16(IDS_PLUGIN_BLOCKED, group_name)); 160 group_name)); 172 group_name));
|
/third_party/rust/crates/unicode-ident/benches/ |
D | xid.rs | 49 fn bench(c: &mut Criterion, group_name: &str, string: String) { in bench() 50 let mut group = c.benchmark_group(group_name); in bench()
|
/third_party/openssl/test/ |
D | evp_pkey_provided_test.c | 550 static const char group_name[] = "ffdhe2048"; in test_fromdata_dh_named_group() local 558 group_name, 0)) in test_fromdata_dh_named_group() 583 || !TEST_size_t_eq(len, sizeof(group_name) - 1) in test_fromdata_dh_named_group() 588 sizeof(group_name), in test_fromdata_dh_named_group() 590 || !TEST_size_t_eq(len, sizeof(group_name) - 1) in test_fromdata_dh_named_group() 595 sizeof(group_name) - 1, in test_fromdata_dh_named_group() 601 sizeof(group_name) - 2, in test_fromdata_dh_named_group() 618 || !TEST_str_eq(name_out, group_name) in test_fromdata_dh_named_group() 761 static const char group_name[] = "ffdhe2048"; in test_fromdata_dh_fips186_4() local 770 group_name, 0)) in test_fromdata_dh_fips186_4() [all …]
|
/third_party/node/deps/openssl/openssl/providers/implementations/keymgmt/ |
D | ec_kmgmt.c | 981 char *group_name; member 1023 if (gctx->group_name != NULL) in sm2_gen_init() 1025 if ((gctx->group_name = OPENSSL_strdup("sm2")) != NULL) in sm2_gen_init() 1109 COPY_UTF8_PARAM(params, OSSL_PKEY_PARAM_GROUP_NAME, gctx->group_name); in ec_gen_set_params() 1153 if (gctx->group_name != NULL) { in ec_gen_set_group_from_params() 1155 gctx->group_name, 0)) in ec_gen_set_group_from_params() 1358 OPENSSL_free(gctx->group_name); in ec_gen_cleanup()
|
/third_party/openssl/providers/implementations/keymgmt/ |
D | ec_kmgmt.c | 981 char *group_name; member 1023 if (gctx->group_name != NULL) in sm2_gen_init() 1025 if ((gctx->group_name = OPENSSL_strdup("sm2")) != NULL) in sm2_gen_init() 1109 COPY_UTF8_PARAM(params, OSSL_PKEY_PARAM_GROUP_NAME, gctx->group_name); in ec_gen_set_params() 1153 if (gctx->group_name != NULL) { in ec_gen_set_group_from_params() 1155 gctx->group_name, 0)) in ec_gen_set_group_from_params() 1358 OPENSSL_free(gctx->group_name); in ec_gen_cleanup()
|
/third_party/node/src/crypto/ |
D | crypto_dh.cc | 244 const node::Utf8Value group_name(env->isolate(), args[0]); in DiffieHellmanGroup() local 245 auto group = FindDiffieHellmanGroup(*group_name); in DiffieHellmanGroup() 511 Utf8Value group_name(env->isolate(), args[*offset]); in AdditionalConfig() local 512 auto group = FindDiffieHellmanGroup(*group_name); in AdditionalConfig()
|
/third_party/ltp/include/ |
D | tst_cgroup.h | 134 const char *const group_name)
|