Searched refs:group (Results 51 - 75 of 1472) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/appcache/
H A Dmock_appcache_storage.cc71 AppCacheGroup* group = working_set_.GetGroup(manifest_url); local
72 if (ShouldGroupLoadAppearAsync(group)) {
84 AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate) {
85 DCHECK(group && delegate && newest_cache);
90 weak_factory_.GetWeakPtr(), make_scoped_refptr(group),
142 void MockAppCacheStorage::MakeGroupObsolete(AppCacheGroup* group, argument
145 DCHECK(group && delegate);
151 make_scoped_refptr(group),
199 scoped_refptr<AppCacheGroup> group(working_set_.GetGroup(manifest_url));
203 if (!group
83 StoreGroupAndNewestCache( AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate) argument
210 ProcessStoreGroupAndNewestCache( scoped_refptr<AppCacheGroup> group, scoped_refptr<AppCache> newest_cache, scoped_refptr<DelegateReference> delegate_ref) argument
253 MaybeTakeNewNamespaceEntry( AppCacheNamespaceType namespace_type, const AppCacheEntry &entry, const GURL& namespace_url, bool cache_is_in_use, FoundCandidate* best_candidate, GURL* best_candidate_namespace, AppCache* cache, AppCacheGroup* group) argument
336 AppCacheGroup* group = it->second.get(); local
420 ProcessMakeGroupObsolete( scoped_refptr<AppCacheGroup> group, scoped_refptr<DelegateReference> delegate_ref, int response_code) argument
490 AddStoredGroup(AppCacheGroup* group) argument
498 RemoveStoredGroup(AppCacheGroup* group) argument
502 ShouldGroupLoadAppearAsync( const AppCacheGroup* group) argument
[all...]
/external/openssl/crypto/ec/
H A Dec_key.c84 ret->group = NULL;
100 ret->group = EC_GROUP_new_by_curve_name(nid);
101 if (ret->group == NULL)
128 if (r->group != NULL)
129 EC_GROUP_free(r->group);
152 if (src->group)
154 const EC_METHOD *meth = EC_GROUP_method_of(src->group);
155 /* clear the old group */
156 if (dest->group)
157 EC_GROUP_free(dest->group);
466 EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) argument
[all...]
H A Dec_print.c59 BIGNUM *EC_POINT_point2bn(const EC_GROUP *group, argument
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
89 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group, argument
111 if ((ret = EC_POINT_new(group)) == NULL)
120 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx))
135 char *EC_POINT_point2hex(const EC_GROUP *group, argument
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
179 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, argument
[all...]
H A Decp_nist.c130 int ec_GFp_nist_group_set_curve(EC_GROUP *group, const BIGNUM *p, argument
144 group->field_mod_func = BN_nist_mod_192;
146 group->field_mod_func = BN_nist_mod_224;
148 group->field_mod_func = BN_nist_mod_256;
150 group->field_mod_func = BN_nist_mod_384;
152 group->field_mod_func = BN_nist_mod_521;
159 ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
169 int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, argument
175 if (!group || !r || !a || !b)
184 if (!group
195 ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLECKeyPairGenerator.java46 private OpenSSLECGroupContext group; field in class:OpenSSLECKeyPairGenerator
54 if (group == null) {
56 group = OpenSSLECGroupContext.getCurveByName(curveName);
59 final OpenSSLKey key = new OpenSSLKey(NativeCrypto.EC_KEY_generate_key(group.getContext()));
60 return new KeyPair(new OpenSSLECPublicKey(group, key), new OpenSSLECPrivateKey(group, key));
71 * Store the group in a temporary variable until we know this is a valid
72 * group.
79 group = possibleGroup;
88 group
[all...]
H A DOpenSSLECPrivateKey.java39 protected transient OpenSSLECGroupContext group; field in class:OpenSSLECPrivateKey
41 public OpenSSLECPrivateKey(OpenSSLECGroupContext group, OpenSSLKey key) { argument
42 this.group = group;
48 this.group = new OpenSSLECGroupContext(NativeCrypto.EC_GROUP_dup(origGroup));
54 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
56 key = new OpenSSLKey(NativeCrypto.EVP_PKEY_new_EC_KEY(group.getContext(), 0,
64 OpenSSLECGroupContext group;
66 group = OpenSSLECGroupContext.getInstance(ecPrivateKey.getParams());
68 throw new InvalidKeyException("Unknown group parameter
73 wrapPlatformKey(ECPrivateKey ecPrivateKey, OpenSSLECGroupContext group) argument
[all...]
H A DOpenSSLECPublicKey.java38 protected transient OpenSSLECGroupContext group; field in class:OpenSSLECPublicKey
40 public OpenSSLECPublicKey(OpenSSLECGroupContext group, OpenSSLKey key) { argument
41 this.group = group;
47 this.group = new OpenSSLECGroupContext(NativeCrypto.EC_GROUP_dup(origGroup));
53 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
55 NativeCrypto.get_EC_GROUP_type(group.getContext()), group, ecKeySpec.getW());
56 key = new OpenSSLKey(NativeCrypto.EVP_PKEY_new_EC_KEY(group.getContext(),
65 OpenSSLECGroupContext group
[all...]
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dcontext_menu_content_type_platform_app.cc21 bool ContextMenuContentTypePlatformApp::SupportsGroup(int group) { argument
30 switch (group) {
34 return ContextMenuContentType::SupportsGroup(group);
/external/chromium_org/testing/gtest/xcode/Scripts/
H A Dversiongenerate.py78 major_version = version_values.group(1)
79 minor_version = version_values.group(2)
80 fix_version = version_values.group(3)
/external/deqp/modules/gles3/functional/
H A Des3fBuiltinPrecisionTests.cpp41 TestCaseGroup* group = new TestCaseGroup( local
53 *group);
54 return group;
/external/e2fsprogs/lib/ext2fs/
H A Dalloc_tables.c33 * group of bitmaps or inode tables for a flexbg group. Returns the
37 static blk64_t flexbg_offset(ext2_filsys fs, dgrp_t group, blk64_t start_blk, argument
46 flexbg = group / flexbg_size;
61 last_grp = group | (flexbg_size - 1);
82 errcode_t ext2fs_allocate_group_table(ext2_filsys fs, dgrp_t group, argument
91 group_blk = ext2fs_group_first_block2(fs, group);
92 last_blk = ext2fs_group_last_block2(fs, group);
101 last_grp = group | (flexbg_size - 1);
104 rem_grps = last_grp - group
[all...]
H A Dalloc_sb.c2 * alloc_sb.c --- Allocate the superblock and block group descriptors for a
31 * This function reserves the superblock and block group descriptors
32 * for a given block group. It currently returns the number of free
34 * the group. This is not necessarily the case when the flex_bg
39 * super block and group descriptors instead.
44 dgrp_t group,
51 ext2fs_super_and_bgd_loc2(fs, group, &super_blk,
60 if (super_blk || (group == 0))
62 if ((group == 0) && (fs->blocksize == 1024) &&
68 ext2fs_bg_flags_clear(fs, group, EXT2_BG_BLOCK_UNINI
43 ext2fs_reserve_super_and_bgd(ext2_filsys fs, dgrp_t group, ext2fs_block_bitmap bmap) argument
[all...]
/external/protobuf/gtest/xcode/Scripts/
H A Dversiongenerate.py49 major_version = version_values.group(1)
50 minor_version = version_values.group(2)
51 fix_version = version_values.group(3)
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbrowser_options.py60 # Selection group
61 group = optparse.OptionGroup(parser, 'Which browser to use')
62 group.add_option('--browser',
68 group.add_option('--browser-executable',
71 group.add_option('--chrome-root',
75 group.add_option('--device',
79 group.add_option('--target-arch',
84 group.add_option(
94 group.add_option('--identity',
98 parser.add_option_group(group)
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_synchronizer.cc79 linked_ptr<TextureGroup> group)
80 : version(group->definition.version()), group(group) {}
92 TextureGroup* group) {
97 it->second.group->mailboxes.find(target_name);
98 if (it->second.group != group &&
99 mb_it != it->second.group->mailboxes.end()) {
100 it->second.group
78 TextureVersion( linked_ptr<TextureGroup> group) argument
90 ReassociateMailboxLocked( const TargetName& target_name, TextureGroup* group) argument
123 linked_ptr<TextureGroup> group = GetGroupForMailboxLocked(target_name); local
164 TextureGroup* group = texture_version.group.get(); local
180 linked_ptr<TextureGroup> group = make_linked_ptr(new TextureGroup( local
221 TextureGroup* group = texture_version.group.get(); local
[all...]
/external/chromium_org/third_party/ots/src/
H A Dvdmx.cc56 // if present, this must be the last Ratio group in the table.
87 OpenTypeVDMXGroup group; local
88 if (!table.ReadU16(&group.recs) ||
89 !table.ReadU8(&group.startsz) ||
90 !table.ReadU8(&group.endsz)) {
93 group.entries.reserve(group.recs);
94 for (unsigned j = 0; j < group.recs; ++j) {
109 if ((j != 0) && (group.entries[j - 1].y_pel_height >= vt.y_pel_height)) {
115 group
154 const OpenTypeVDMXGroup& group = vdmx->groups[i]; local
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fBuiltinPrecisionTests.cpp41 TestCaseGroup* group = new TestCaseGroup( local
53 *group);
64 *group);
65 return group;
/external/lldb/test/pexpect-2.4/examples/
H A Duptime.py31 # This parses uptime output into the major groups using regex group matching.
45 days = str(int(p.match.group(1)))
48 hours = str(int(p.match.group(1)))
49 mins = str(int(p.match.group(2)))
52 mins = str(int(p.match.group(1)))
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dec.c283 EC_GROUP *group = NULL; local
311 if (((group = ec_group_new(meth)) == NULL) ||
312 (!(group->meth->group_set_curve(group, p, a, b, ctx)))) {
317 if ((group = ec_group_new_curve_GFp(p, a, b, ctx)) == NULL) {
323 if ((P = EC_POINT_new(group)) == NULL) {
334 if (!EC_POINT_set_affine_coordinates_GFp(group, P, x, y, ctx)) {
344 group->generator = P;
346 if (!BN_copy(&group->order, order) ||
347 !BN_set_word(&group
400 EC_GROUP_free(EC_GROUP *group) argument
501 EC_GROUP_get0_generator(const EC_GROUP *group) argument
505 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
513 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
522 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p, BIGNUM *out_a, BIGNUM *out_b, BN_CTX *ctx) argument
532 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
534 EC_GROUP_get_degree(const EC_GROUP *group) argument
543 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
548 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
561 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
574 EC_POINT_new(const EC_GROUP *group) argument
642 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
664 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
677 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
690 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
704 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
717 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
730 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
748 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
764 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
780 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
795 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
809 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
821 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
835 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
846 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
[all...]
H A Dec_key.c126 ret->group = EC_GROUP_new_by_curve_name(nid);
127 if (ret->group == NULL) {
150 if (r->group != NULL) {
151 EC_GROUP_free(r->group);
172 if (src->group) {
173 /* TODO(fork): duplicating the group seems wasteful. */
174 const EC_METHOD *meth = src->group->meth;
175 /* clear the old group */
176 if (dest->group) {
177 EC_GROUP_free(dest->group);
252 EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) argument
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dmisc_utils.py21 the regex and returns the parenthesized group named return for the
42 return match.group('return')
58 return match.group('return') if match else default
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpa2-eap-ccmp.conf10 group=CCMP
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprmwait.h88 ** entire wait group (PR_DestroyWaitGroup()).
154 ** enumeration over a wait group. The opaque object must be allocated
167 ** will be semantically tied to the wait group specified.
174 ** group A reference to a PRWaitGroup or NULL. Wait groups are
176 ** to semantically group various file descriptors by the
187 ** Invalid 'group' identifier or duplicate 'desc' object.
191 ** The group is being destroyed.
193 NSPR_API(PRStatus) PR_AddWaitFileDesc(PRWaitGroup *group, PRRecvWait *desc);
202 ** group A pointer to a valid PRWaitGroup or NULL (the null
203 ** group
227 NSPR_API(PRRecvWait*) PR_WaitRecvReady(PRWaitGroup *group); variable
289 NSPR_API(PRRecvWait*) PR_CancelWaitGroup(PRWaitGroup *group); variable
339 NSPR_API(PRStatus) PR_DestroyWaitGroup(PRWaitGroup *group); variable
361 NSPR_API(PRMWaitEnumerator*) PR_CreateMWaitEnumerator(PRWaitGroup *group); variable
[all...]
/external/chromium_org/chrome/browser/
H A Dicon_manager.cc49 gfx::Image* IconManager::LookupIconFromGroup(const IconGroupID& group, argument
51 IconMap::iterator it = icon_cache_.find(CacheKey(group, size));
81 const IconGroupID& group) {
88 gfx::Image* result = LookupIconFromGroup(group, rit->second.size);
93 return OnImageLoaded(loader, result, group);
97 IconLoader* loader, gfx::Image* result, const IconGroupID& group) {
114 CacheKey key(group, client_request.size);
129 group_cache_[client_request.file_path] = group;
138 IconManager::CacheKey::CacheKey(const IconGroupID& group, argument
140 : group(grou
80 OnGroupLoaded(IconLoader* loader, const IconGroupID& group) argument
96 OnImageLoaded( IconLoader* loader, gfx::Image* result, const IconGroupID& group) argument
[all...]
/external/deqp/android/scripts/
H A DGenAndroidCTSXMLFromTestList.py25 for group in self.testGroups:
26 if group.getName() == groupName:
31 for group in self.testGroups:
32 if group.getName() == groupName:
33 return group
110 def writeAndroidCTSTestCase(group, output):
111 assert group.hasTestCases()
112 assert not group.hasTestGroups()
114 output.write('<TestCase name="%s">\n' % group.getName())
116 for testCase in group
[all...]

Completed in 2074 milliseconds

1234567891011>>