Searched refs:group (Results 1 - 25 of 1472) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dchown.c8 int chown(const char* path, uid_t owner, gid_t group) { argument
9 return ki_chown(path, owner, group);
H A Dfchown.c8 int fchown(int fd, uid_t owner, gid_t group) { argument
9 return ki_fchown(fd, owner, group);
H A Dlchown.c8 int lchown(const char* path, uid_t owner, gid_t group) { argument
9 return ki_lchown(path, owner, group);
/external/openssl/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, argument
74 if (group->meth->point_set_compressed_coordinates == 0
75 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
80 if (group->meth != point->meth)
85 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
87 if (group->meth->field_type == NID_X9_62_prime_field)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, poin
105 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
132 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
167 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec2_mult.c84 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) argument
94 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
95 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
96 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
97 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
98 if (!group
115 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
152 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
221 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
322 ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
385 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
390 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Dec_lib.c123 void EC_GROUP_free(EC_GROUP *group) argument
125 if (!group) return;
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
130 EC_EX_DATA_free_all_data(&group->extra_data);
132 if (group->generator != NULL)
133 EC_POINT_free(group->generator);
134 BN_free(&group->order);
135 BN_free(&group
144 EC_GROUP_clear_free(EC_GROUP *group) argument
272 EC_GROUP_method_of(const EC_GROUP *group) argument
284 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
313 EC_GROUP_get0_generator(const EC_GROUP *group) argument
319 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
328 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
337 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
343 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
349 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
355 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
361 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
368 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
374 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
395 EC_GROUP_get0_seed(const EC_GROUP *group) argument
401 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
407 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
418 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
429 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
440 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
451 EC_GROUP_get_degree(const EC_GROUP *group) argument
462 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
693 EC_POINT_new(const EC_GROUP *group) argument
768 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
911 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
927 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
943 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
959 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
975 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
991 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1007 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1023 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1050 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
1060 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
1074 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1086 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_mont.c123 int ec_GFp_mont_group_init(EC_GROUP *group) argument
127 ok = ec_GFp_simple_group_init(group);
128 group->field_data1 = NULL;
129 group->field_data2 = NULL;
134 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
136 if (group->field_data1 != NULL)
138 BN_MONT_CTX_free(group->field_data1);
139 group->field_data1 = NULL;
141 if (group->field_data2 != NULL)
143 BN_free(group
150 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
205 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
265 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
277 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
289 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
301 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
313 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c138 int ec_GFp_simple_group_init(EC_GROUP *group) argument
140 BN_init(&group->field);
141 BN_init(&group->a);
142 BN_init(&group->b);
143 group->a_is_minus3 = 0;
148 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
150 BN_free(&group->field);
151 BN_free(&group->a);
152 BN_free(&group->b);
156 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
176 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
231 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
282 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
288 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
394 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
402 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
462 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
515 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
529 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
644 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
808 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
925 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
935 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
941 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1032 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1143 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1182 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1330 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1336 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_group_unittest.cc71 virtual void OnUpdateComplete(AppCacheGroup* group) OVERRIDE {
73 group_has_cache_ = group->HasCache();
76 virtual void OnContentBlocked(AppCacheGroup* group) { argument
91 virtual void OnUpdateComplete(AppCacheGroup* group) OVERRIDE {
105 scoped_refptr<AppCacheGroup> group(
113 group->AddCache(cache1.get());
114 EXPECT_EQ(cache1.get(), group->newest_complete_cache());
120 group->AddCache(cache2.get());
121 EXPECT_EQ(cache1.get(), group->newest_complete_cache());
127 group
176 AppCacheGroup* group = local
[all...]
/external/chromium_org/chrome/browser/
H A Dchrome_browser_field_trials_desktop.cc71 // the group name into which this client belongs.
72 std::string group; local
74 if (!env->GetVar(chrome::kPreReadEnvironmentVariable, &group) ||
75 group.empty()) {
81 // of being assigned to the group already chosen by the executable, if any,
87 trial->AppendGroup("100-pct-control", group == "100-pct-control" ? 100 : 0);
88 trial->AppendGroup("95-pct", group == "95-pct" ? 100 : 0);
89 trial->AppendGroup("90-pct", group == "90-pct" ? 100 : 0);
90 trial->AppendGroup("85-pct", group == "85-pct" ? 100 : 0);
91 trial->AppendGroup("80-pct", group
[all...]
/external/chromium_org/net/quic/
H A Dquic_fec_group_test.cc60 QuicFecGroup group; local
68 ASSERT_FALSE(group.IsFinished());
72 ASSERT_TRUE(group.UpdateFec(ENCRYPTION_FORWARD_SECURE, num_packets,
78 ASSERT_TRUE(group.Update(ENCRYPTION_FORWARD_SECURE, header,
81 ASSERT_TRUE(group.CanRevive() == (packet == num_packets - 1));
93 ASSERT_TRUE(group.Update(ENCRYPTION_FORWARD_SECURE, header,
95 ASSERT_FALSE(group.CanRevive());
98 ASSERT_FALSE(group.IsFinished());
104 ASSERT_TRUE(group.UpdateFec(ENCRYPTION_FORWARD_SECURE, num_packets,
109 ASSERT_TRUE(group
152 QuicFecGroup group; local
170 QuicFecGroup group; local
185 QuicFecGroup group; local
211 QuicFecGroup group; local
223 QuicFecGroup group; local
[all...]
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 struct p2p_group *group, **groups; local
51 group = os_zalloc(sizeof(*group));
52 if (group == NULL)
58 os_free(group);
61 groups[p2p->num_groups++] = group;
64 group->p2p = p2p;
65 group
84 p2p_group_free_members(struct p2p_group *group) argument
98 p2p_group_deinit(struct p2p_group *group) argument
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
207 p2p_group_build_beacon_ie(struct p2p_group *group) argument
353 wifi_display_build_go_ie(struct p2p_group *group) argument
402 wifi_display_group_update(struct p2p_group *group) argument
411 p2p_buf_add_group_info(struct p2p_group *group, struct wpabuf *buf, int max_clients) argument
433 p2p_group_buf_add_id(struct p2p_group *group, struct wpabuf *buf) argument
440 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
479 p2p_group_update_ies(struct p2p_group *group) argument
569 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
599 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
643 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
687 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
756 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
773 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
798 p2p_group_notif_formation_done(struct p2p_group *group) argument
808 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
838 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
852 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
866 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
893 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
938 p2p_group_get_interface_addr(struct p2p_group *group) argument
944 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
982 p2p_get_group_num_members(struct p2p_group *group) argument
988 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
1006 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
1019 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
1031 p2p_group_force_beacon_update_ies(struct p2p_group *group) argument
1038 p2p_group_get_freq(struct p2p_group *group) argument
1044 p2p_group_get_config(struct p2p_group *group) argument
1050 p2p_loop_on_all_groups(struct p2p_data *p2p, int (*group_callback)(struct p2p_group *group, void *user_data), void *user_data) argument
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 struct p2p_group *group, **groups; local
51 group = os_zalloc(sizeof(*group));
52 if (group == NULL)
58 os_free(group);
61 groups[p2p->num_groups++] = group;
64 group->p2p = p2p;
65 group
84 p2p_group_free_members(struct p2p_group *group) argument
98 p2p_group_deinit(struct p2p_group *group) argument
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
207 p2p_group_build_beacon_ie(struct p2p_group *group) argument
353 wifi_display_build_go_ie(struct p2p_group *group) argument
402 wifi_display_group_update(struct p2p_group *group) argument
411 p2p_buf_add_group_info(struct p2p_group *group, struct wpabuf *buf, int max_clients) argument
433 p2p_group_buf_add_id(struct p2p_group *group, struct wpabuf *buf) argument
440 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
479 p2p_group_update_ies(struct p2p_group *group) argument
569 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
599 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
643 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
687 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
756 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
773 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
798 p2p_group_notif_formation_done(struct p2p_group *group) argument
808 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
838 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
852 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
866 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
893 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
938 p2p_group_get_interface_addr(struct p2p_group *group) argument
944 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
982 p2p_get_group_num_members(struct p2p_group *group) argument
988 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
1006 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
1019 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
1031 p2p_group_force_beacon_update_ies(struct p2p_group *group) argument
1038 p2p_group_get_freq(struct p2p_group *group) argument
1044 p2p_group_get_config(struct p2p_group *group) argument
1050 p2p_loop_on_all_groups(struct p2p_data *p2p, int (*group_callback)(struct p2p_group *group, void *user_data), void *user_data) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 struct p2p_group *group, **groups; local
51 group = os_zalloc(sizeof(*group));
52 if (group == NULL)
58 os_free(group);
61 groups[p2p->num_groups++] = group;
64 group->p2p = p2p;
65 group
84 p2p_group_free_members(struct p2p_group *group) argument
98 p2p_group_deinit(struct p2p_group *group) argument
137 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
207 p2p_group_build_beacon_ie(struct p2p_group *group) argument
353 wifi_display_build_go_ie(struct p2p_group *group) argument
402 wifi_display_group_update(struct p2p_group *group) argument
411 p2p_buf_add_group_info(struct p2p_group *group, struct wpabuf *buf, int max_clients) argument
433 p2p_group_buf_add_id(struct p2p_group *group, struct wpabuf *buf) argument
440 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
479 p2p_group_update_ies(struct p2p_group *group) argument
569 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
599 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
643 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
687 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
756 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
773 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
798 p2p_group_notif_formation_done(struct p2p_group *group) argument
808 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
838 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
852 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
866 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
893 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
938 p2p_group_get_interface_addr(struct p2p_group *group) argument
944 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
982 p2p_get_group_num_members(struct p2p_group *group) argument
988 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
1006 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
1019 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
1031 p2p_group_force_beacon_update_ies(struct p2p_group *group) argument
1038 p2p_group_get_freq(struct p2p_group *group) argument
1044 p2p_group_get_config(struct p2p_group *group) argument
1050 p2p_loop_on_all_groups(struct p2p_data *p2p, int (*group_callback)(struct p2p_group *group, void *user_data), void *user_data) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPreferenceGroupTest.java27 private TestPreferenceGroup group; field in class:PreferenceGroupTest
38 group = new TestPreferenceGroup(context, attrs);
39 shadow = Robolectric.shadowOf(group);
55 assertThat( group.getPreferenceCount(), equalTo(0));
58 assertThat( group.addPreference(pref1), equalTo(true));
59 assertThat( group.getPreferenceCount(), equalTo(1));
62 assertThat( group.addPreference(pref1), equalTo(true));
63 assertThat( group.getPreferenceCount(), equalTo(1));
66 assertThat( group.addPreference(pref2), equalTo(true));
67 assertThat( group
[all...]
/external/e2fsprogs/include/nonunix/
H A Dgrp.h6 __inline struct group * getgrnam(char* g){return 0;}
8 struct group struct
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dec_montgomery.c120 int ec_GFp_mont_group_init(EC_GROUP *group) { argument
123 ok = ec_GFp_simple_group_init(group);
124 group->field_data1 = NULL;
125 group->field_data2 = NULL;
129 void ec_GFp_mont_group_finish(EC_GROUP *group) { argument
130 if (group->field_data1 != NULL) {
131 BN_MONT_CTX_free(group->field_data1);
132 group->field_data1 = NULL;
134 if (group->field_data2 != NULL) {
135 BN_free(group
141 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
189 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
246 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
256 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
266 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
276 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
286 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Dexample_mul.c78 EC_GROUP *group = NULL; local
84 group = EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1);
85 p = EC_POINT_new(group);
86 result = EC_POINT_new(group);
91 group == NULL ||
93 !EC_POINT_set_to_infinity(group, p) ||
99 if (!EC_POINT_mul(group, result, NULL, p, n, NULL) ||
100 !EC_POINT_is_at_infinity(group, result)) {
104 generator = EC_GROUP_get0_generator(group);
107 if (!EC_POINT_mul(group, resul
[all...]
H A Dsimple.c133 int ec_GFp_simple_group_init(EC_GROUP *group) { argument
134 BN_init(&group->field);
135 BN_init(&group->a);
136 BN_init(&group->b);
137 group->a_is_minus3 = 0;
141 void ec_GFp_simple_group_finish(EC_GROUP *group) { argument
142 BN_free(&group->field);
143 BN_free(&group->a);
144 BN_free(&group->b);
147 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) { argument
164 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
223 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
268 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
272 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
377 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
384 ec_GFp_simple_set_Jprojective_coordinates_GFp( const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
440 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
489 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
503 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
610 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
795 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
934 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
942 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
946 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1049 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1156 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1195 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1351 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1356 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dcontext_menu_content_type_app_mode.cc16 bool ContextMenuContentTypeAppMode::SupportsGroup(int group) { argument
17 switch (group) {
20 return ContextMenuContentType::SupportsGroup(group);
H A Dcontext_menu_content_type_extension_popup.cc16 bool ContextMenuContentTypeExtensionPopup::SupportsGroup(int group) { argument
17 switch (group) {
22 return ContextMenuContentType::SupportsGroup(group);
H A Dcontext_menu_content_type_panel.cc16 bool ContextMenuContentTypePanel::SupportsGroup(int group) { argument
17 switch (group) {
24 return ContextMenuContentType::SupportsGroup(group);
/external/chromium_org/tools/grit/grit/gather/
H A Dregexp.py65 for group in keys:
66 if group.startswith('id') and groups[group]:
67 self._AddTextualId(groups[group])
68 elif group.startswith('text') and groups[group]:
70 text_to_parse[chunk_start : match.start(group)])
71 chunk_start = match.end(group) # Next chunk will start after the match
72 self._AddTranslateableChunk(groups[group])
73 elif group
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLECPointContext.java23 private final OpenSSLECGroupContext group; field in class:OpenSSLECPointContext
26 OpenSSLECPointContext(OpenSSLECGroupContext group, long pointCtx) { argument
27 this.group = group;
49 if (!NativeCrypto.EC_GROUP_cmp(group.getContext(), other.group.getContext())) {
53 return NativeCrypto.EC_POINT_cmp(group.getContext(), pointCtx, other.pointCtx);
58 group.getContext(), pointCtx);
74 public static OpenSSLECPointContext getInstance(int curveType, OpenSSLECGroupContext group, argument
76 OpenSSLECPointContext point = new OpenSSLECPointContext(group,
[all...]
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dslice_group_track_test.js17 var group = new SliceGroup();
18 var sA = group.pushSlice(newSliceNamed('a', 1, 2));
19 var sB = group.pushSlice(newSliceNamed('a', 3, 1));
22 track.group = group;
32 var group = new SliceGroup();
33 var sA = group.pushSlice(newSliceNamed('a', 1, 4));
34 var sB = group.pushSlice(newSliceNamed('b', 3, 1));
37 track.group = group;
[all...]

Completed in 836 milliseconds

1234567891011>>