Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 2892) sorted by relevance

12345678910>>...116

/external/wpa_supplicant_8/src/p2p/
Dp2p_group.c49 struct p2p_group *group, **groups; in p2p_group_init() local
51 group = os_zalloc(sizeof(*group)); in p2p_group_init()
52 if (group == NULL) in p2p_group_init()
58 os_free(group); in p2p_group_init()
61 groups[p2p->num_groups++] = group; in p2p_group_init()
64 group->p2p = p2p; in p2p_group_init()
65 group->cfg = config; in p2p_group_init()
66 group->group_formation = 1; in p2p_group_init()
67 group->beacon_update = 1; in p2p_group_init()
68 p2p_group_update_ies(group); in p2p_group_init()
[all …]
/external/syslinux/core/lwip/src/core/ipv4/
Digmp.c139 static err_t igmp_remove_group(struct igmp_group *group);
140 static void igmp_timeout( struct igmp_group *group);
141 static void igmp_start_timer(struct igmp_group *group, u8_t max_time);
142 static void igmp_stop_timer(struct igmp_group *group);
143 static void igmp_delaying_member(struct igmp_group *group, u8_t maxresp);
145 static void igmp_send(struct igmp_group *group, u8_t type);
172 struct igmp_group *group = igmp_group_list; in igmp_dump_group_list() local
174 while (group != NULL) { in igmp_dump_group_list()
175 LWIP_DEBUGF(IGMP_DEBUG, ("igmp_dump_group_list: [%"U32_F"] ", (u32_t)(group->group_state))); in igmp_dump_group_list()
176 ip_addr_debug_print(IGMP_DEBUG, &group->group_address); in igmp_dump_group_list()
[all …]
/external/boringssl/src/crypto/ec/
Dsimple.c91 int ec_GFp_simple_group_init(EC_GROUP *group) { in ec_GFp_simple_group_init() argument
92 BN_init(&group->field); in ec_GFp_simple_group_init()
93 BN_init(&group->a); in ec_GFp_simple_group_init()
94 BN_init(&group->b); in ec_GFp_simple_group_init()
95 BN_init(&group->one); in ec_GFp_simple_group_init()
96 group->a_is_minus3 = 0; in ec_GFp_simple_group_init()
100 void ec_GFp_simple_group_finish(EC_GROUP *group) { in ec_GFp_simple_group_finish() argument
101 BN_free(&group->field); in ec_GFp_simple_group_finish()
102 BN_free(&group->a); in ec_GFp_simple_group_finish()
103 BN_free(&group->b); in ec_GFp_simple_group_finish()
[all …]
Dec.c384 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, in EC_GROUP_set_generator() argument
386 if (group->curve_name != NID_undef || group->generator != NULL) { in EC_GROUP_set_generator()
398 group->generator = EC_POINT_new(group); in EC_GROUP_set_generator()
399 return group->generator != NULL && in EC_GROUP_set_generator()
400 EC_POINT_copy(group->generator, generator) && in EC_GROUP_set_generator()
401 BN_copy(&group->order, order); in EC_GROUP_set_generator()
406 EC_GROUP *group = NULL; in ec_group_new_from_data() local
428 group = ec_group_new(curve->method); in ec_group_new_from_data()
429 if (group == NULL || in ec_group_new_from_data()
430 !group->meth->group_set_curve(group, p, a, b, ctx)) { in ec_group_new_from_data()
[all …]
Doct.c77 static size_t ec_GFp_simple_point2oct(const EC_GROUP *group, in ec_GFp_simple_point2oct() argument
93 if (EC_POINT_is_at_infinity(group, point)) { in ec_GFp_simple_point2oct()
99 field_len = BN_num_bytes(&group->field); in ec_GFp_simple_point2oct()
125 if (!EC_POINT_get_affine_coordinates_GFp(group, point, x, y, ctx)) { in ec_GFp_simple_point2oct()
172 static int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, in ec_GFp_simple_oct2point() argument
196 field_len = BN_num_bytes(&group->field); in ec_GFp_simple_oct2point()
222 if (BN_ucmp(x, &group->field) >= 0) { in ec_GFp_simple_oct2point()
228 if (!EC_POINT_set_compressed_coordinates_GFp(group, point, x, y_bit, ctx)) { in ec_GFp_simple_oct2point()
235 if (BN_ucmp(y, &group->field) >= 0) { in ec_GFp_simple_oct2point()
240 if (!EC_POINT_set_affine_coordinates_GFp(group, point, x, y, ctx)) { in ec_GFp_simple_oct2point()
[all …]
Dec_montgomery.c78 int ec_GFp_mont_group_init(EC_GROUP *group) { in ec_GFp_mont_group_init() argument
81 ok = ec_GFp_simple_group_init(group); in ec_GFp_mont_group_init()
82 group->mont = NULL; in ec_GFp_mont_group_init()
86 void ec_GFp_mont_group_finish(EC_GROUP *group) { in ec_GFp_mont_group_finish() argument
87 BN_MONT_CTX_free(group->mont); in ec_GFp_mont_group_finish()
88 group->mont = NULL; in ec_GFp_mont_group_finish()
89 ec_GFp_simple_group_finish(group); in ec_GFp_mont_group_finish()
118 int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_mont_group_set_curve() argument
124 BN_MONT_CTX_free(group->mont); in ec_GFp_mont_group_set_curve()
125 group->mont = NULL; in ec_GFp_mont_group_set_curve()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DPreferenceGroupTest.java27 private TestPreferenceGroup group; field in PreferenceGroupTest
38 group = new TestPreferenceGroup(context, attrs); in setUp()
39 shadow = Robolectric.shadowOf(group); in setUp()
55 assertThat( group.getPreferenceCount(), equalTo(0)); in shouldAddPreferences()
58 assertThat( group.addPreference(pref1), equalTo(true)); in shouldAddPreferences()
59 assertThat( group.getPreferenceCount(), equalTo(1)); in shouldAddPreferences()
62 assertThat( group.addPreference(pref1), equalTo(true)); in shouldAddPreferences()
63 assertThat( group.getPreferenceCount(), equalTo(1)); in shouldAddPreferences()
66 assertThat( group.addPreference(pref2), equalTo(true)); in shouldAddPreferences()
67 assertThat( group.getPreferenceCount(), equalTo(2)); in shouldAddPreferences()
[all …]
/external/tcpdump/tests/
Dhsrp_1.out1 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
2 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
3 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
4 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
5 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
6 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
7 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
8 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp]
9 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
10 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
[all …]
Dhsrp_1-v.out2 …192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 helloti…
4 …192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellot…
6 …192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 helloti…
8 …192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellot…
10 …192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 helloti…
12 …192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 helloti…
14 …192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellot…
16 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp]
18 …192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 helloti…
20 …192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 hellot…
[all …]
/external/autotest/server/cros/dynamic_suite/
Dhost_spec_unittest.py67 group = host_spec.ExplicitHostGroup(hosts_per_spec)
69 self.assertTrue(host.hostname in group.as_args()['hosts'])
85 group = host_spec.MetaHostGroup(labels, num)
86 args = group.as_args()
96 group = host_spec.ExplicitHostGroup(hosts_per_spec)
99 group.mark_host_success(host_list[0].hostname)
100 self.assertTrue(group.enough_hosts_succeeded())
101 self.assertTrue(specs[1] in group.doomed_specs)
104 group.mark_host_success(host_list[2].hostname)
105 self.assertTrue(group.enough_hosts_succeeded())
[all …]
/external/valgrind/solaris/
Dvalgrind.p5m10 dir path=usr/bin owner=root group=bin mode=0755
11 file path=usr/bin/callgrind_annotate owner=root group=bin mode=0755
12 file path=usr/bin/callgrind_control owner=root group=bin mode=0755
13 file path=usr/bin/cg_annotate owner=root group=bin mode=0755
14 file path=usr/bin/cg_diff owner=root group=bin mode=0755
15 file path=usr/bin/cg_merge owner=root group=bin mode=0755
16 file path=usr/bin/ms_print owner=root group=bin mode=0755
17 file path=usr/bin/valgrind owner=root group=bin mode=0755
18 file path=usr/bin/valgrind-di-server owner=root group=bin mode=0755
19 file path=usr/bin/valgrind-listener owner=root group=bin mode=0755
[all …]
/external/toolchain-utils/automation/server/
Djob_group_manager.py35 for group in self.all_job_groups:
36 if group.id == group_id:
37 return group
45 def AddJobGroup(self, group): argument
47 group.id = self._id_producer.GetNextId()
49 self._logger.debug('Creating runtime environment for %r.', group)
52 cmd.RmTree(group.home_dir), cmd.MakeDir(group.home_dir)))
55 self.all_job_groups.append(group)
57 for job_ in group.jobs:
60 group.status = job_group.STATUS_EXECUTING
[all …]
/external/fmtlib/doc/bootstrap/
Dlist-group.less10 .list-group {
11 // No need to set list-style: none; since .list-group-item is block level
19 // Use on `li`s or `div`s within the `.list-group` parent.
21 .list-group-item {
27 background-color: @list-group-bg;
28 border: 1px solid @list-group-border;
32 .border-top-radius(@list-group-border-radius);
36 .border-bottom-radius(@list-group-border-radius);
46 a.list-group-item {
47 color: @list-group-link-color;
[all …]
Dinput-groups.less7 .input-group {
40 .input-group-lg > .form-control,
41 .input-group-lg > .input-group-addon,
42 .input-group-lg > .input-group-btn > .btn {
45 .input-group-sm > .form-control,
46 .input-group-sm > .input-group-addon,
47 .input-group-sm > .input-group-btn > .btn {
54 .input-group-addon,
55 .input-group-btn,
56 .input-group .form-control {
[all …]
Dbutton-groups.less6 .btn-group,
7 .btn-group-vertical {
25 .btn-group {
27 .btn + .btn-group,
28 .btn-group + .btn,
29 .btn-group + .btn-group {
39 .btn-group,
40 .input-group {
44 > .btn-group,
45 > .input-group {
[all …]
/external/e2fsprogs/lib/ext2fs/
Dblknum.c29 blk64_t ext2fs_group_first_block2(ext2_filsys fs, dgrp_t group) in ext2fs_group_first_block2() argument
32 EXT2_GROUPS_TO_BLOCKS(fs->super, group); in ext2fs_group_first_block2()
38 blk64_t ext2fs_group_last_block2(ext2_filsys fs, dgrp_t group) in ext2fs_group_last_block2() argument
40 return (group == fs->group_desc_count - 1 ? in ext2fs_group_last_block2()
42 ext2fs_group_first_block2(fs, group) + in ext2fs_group_last_block2()
49 int ext2fs_group_blocks_count(ext2_filsys fs, dgrp_t group) in ext2fs_group_blocks_count() argument
53 if (group == fs->group_desc_count - 1) { in ext2fs_group_blocks_count()
186 dgrp_t group) in ext2fs_group_desc() argument
190 return (struct ext2_group_desc *)((char *)gdp + group * desc_size); in ext2fs_group_desc()
196 dgrp_t group) in ext4fs_group_desc() argument
[all …]
Dalloc_stats.c21 int group = ext2fs_group_of_ino(fs, ino); in ext2fs_inode_alloc_stats2() local
34 ext2fs_bg_free_inodes_count_set(fs, group, ext2fs_bg_free_inodes_count(fs, group) - inuse); in ext2fs_inode_alloc_stats2()
36 ext2fs_bg_used_dirs_count_set(fs, group, ext2fs_bg_used_dirs_count(fs, group) + inuse); in ext2fs_inode_alloc_stats2()
40 ext2fs_bg_flags_clear(fs, group, EXT2_BG_INODE_UNINIT); in ext2fs_inode_alloc_stats2()
43 ext2fs_bg_itable_unused(fs, group) + in ext2fs_inode_alloc_stats2()
44 group * fs->super->s_inodes_per_group + 1; in ext2fs_inode_alloc_stats2()
47 …ext2fs_bg_itable_unused_set(fs, group, group * fs->super->s_inodes_per_group + fs->super->s_inodes… in ext2fs_inode_alloc_stats2()
48 ext2fs_group_desc_csum_set(fs, group); in ext2fs_inode_alloc_stats2()
63 int group = ext2fs_group_of_blk2(fs, blk); in ext2fs_block_alloc_stats2() local
76 ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) - inuse); in ext2fs_block_alloc_stats2()
[all …]
/external/icu/icu4c/source/test/depstest/
Ddependencies.txt27 group: PIC
31 group: system_debug
34 group: malloc_functions
37 group: c_strings
47 group: c_string_formatting
53 group: floating_point
56 group: trigonometry
61 group: stdlib_qsort
64 group: pthread
68 group: system_locale
[all …]
/external/boringssl/src/include/openssl/
Dec.h115 OPENSSL_EXPORT void EC_GROUP_free(EC_GROUP *group);
128 OPENSSL_EXPORT const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
132 OPENSSL_EXPORT const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group);
136 OPENSSL_EXPORT int EC_GROUP_get_cofactor(const EC_GROUP *group,
144 OPENSSL_EXPORT int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p,
149 OPENSSL_EXPORT int EC_GROUP_get_curve_name(const EC_GROUP *group);
153 OPENSSL_EXPORT unsigned EC_GROUP_get_degree(const EC_GROUP *group);
160 OPENSSL_EXPORT EC_POINT *EC_POINT_new(const EC_GROUP *group);
176 const EC_GROUP *group);
180 OPENSSL_EXPORT int EC_POINT_set_to_infinity(const EC_GROUP *group,
[all …]
/external/toolchain-utils/automation/server/monitor/
Ddashboard.py46 group = [Link('/job-group/%d' % job.group.id, job.group.label)]
62 'link': [('Group', group), ('Predecessors', predecessors),
108 group = self._job_group
110 home_dir = [Link('/job-group/%d/files/' % group.id, group.home_dir)]
112 return {'text': [('Label', group.label),
113 ('Time submitted', time.ctime(group.time_submitted)),
114 ('State', group.status),
115 ('Cleanup on completion', group.cleanup_on_completion),
116 ('Cleanup on failure', group.cleanup_on_failure)],
162 def _GetJobGroupState(self, group): argument
[all …]
/external/ltp/
DIDcheck.sh38 group="$DESTDIR/etc/group"
70 for i in "$passwd" "$group"; do
81 fe bin "$group"; NO_BIN_GRP=$?
82 fe daemon "$group"; NO_DAEMON_GRP=$?
83 fe nobody "$group" || fe nogroup "$group"; NO_NOBODY_GRP=$?
84 fe sys "$group"; NO_SYS_GRP=$?
85 fe users "$group"; NO_USERS_GRP=$?
92 echo "Group file: $group"
109 if ! touch "$group" "$passwd" 2>/dev/null; then
110 echo "Failed to touch $group or $passwd"
[all …]
/external/wpa_supplicant_8/src/ap/
Dwpa_auth.c46 struct wpa_group *group);
49 struct wpa_group *group);
51 struct wpa_group *group);
56 struct wpa_group *group);
58 struct wpa_group *group);
60 struct wpa_group *group);
258 if (random_get_bytes(wpa_auth->group->GMK, WPA_GMK_LEN)) { in wpa_rekey_gmk()
264 wpa_auth->group->GMK, WPA_GMK_LEN); in wpa_rekey_gmk()
277 struct wpa_group *group, *next; in wpa_rekey_gtk() local
280 group = wpa_auth->group; in wpa_rekey_gtk()
[all …]
/external/boringssl/src/crypto/evp/
Dp_ec_asn1.c70 const EC_GROUP *group = EC_KEY_get0_group(ec_key); in eckey_pub_encode() local
79 !EC_KEY_marshal_curve_name(&algorithm, group) || in eckey_pub_encode()
82 !EC_POINT_point2cbb(&key_bitstring, group, public_key, in eckey_pub_encode()
98 EC_GROUP *group = EC_KEY_parse_curve_name(params); in eckey_pub_decode() local
99 if (group == NULL || CBS_len(params) != 0) { in eckey_pub_decode()
105 if (eckey == NULL || !EC_KEY_set_group(eckey, group)) { in eckey_pub_decode()
109 point = EC_POINT_new(group); in eckey_pub_decode()
111 !EC_POINT_oct2point(group, point, CBS_data(key), CBS_len(key), NULL) || in eckey_pub_decode()
116 EC_GROUP_free(group); in eckey_pub_decode()
122 EC_GROUP_free(group); in eckey_pub_decode()
[all …]
/external/autotest/client/site_tests/hardware_GobiGPS/
Dhardware_GobiGPS.py62 if match and match.group(2) == 'A' and not got_fix:
64 logging.debug('Time = %s', match.group(1))
65 logging.debug('Status = %s', match.group(2))
66 logging.debug('Latitude = %s %s', match.group(3),
67 match.group(4))
68 logging.debug('Longitude = %s %s', match.group(5),
69 match.group(6))
70 logging.debug('Speed = %s', match.group(7))
71 logging.debug('Track Angle = %s', match.group(8))
72 logging.debug('Date = %s', match.group(9))
[all …]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationTests.cpp45 void createBasicTests (tcu::TestCaseGroup* group) in createBasicTests() argument
47 group->addChild(createBasicFenceTests (group->getTestContext())); in createBasicTests()
48 group->addChild(createBasicSemaphoreTests(group->getTestContext())); in createBasicTests()
49 group->addChild(createBasicEventTests (group->getTestContext())); in createBasicTests()
72 void createChildren (tcu::TestCaseGroup* group) in createChildren() argument
74 tcu::TestContext& testCtx = group->getTestContext(); in createChildren()
76 group->addChild(createSmokeTests(testCtx)); in createChildren()
77group->addChild(createTestGroup (testCtx, "basic", "Basic synchronization tests", createBasicTests… in createChildren()
78 group->addChild(new OperationTests(testCtx)); in createChildren()
79 group->addChild(createInternallySynchronizedObjects(testCtx)); in createChildren()

12345678910>>...116