/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
KeyManagerFactoryTest.java | 162 String[] aliases = km.getClientAliases(keyType, null); local 164 assertNull(keyType, aliases); 167 assertNotNull(keyType, aliases); 168 for (String alias : aliases) { 173 String[] aliases = km.getServerAliases(keyType, null); local 175 assertNull(keyType, aliases); 178 assertNotNull(keyType, aliases); 179 for (String alias : aliases) {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
CharsetUtil.java | 37 * more aliases and is compatible with Java 1.3. It will use a simple detection
45 * MIME character set names and to get a list of known aliases.
52 * <td>Aliases</td>
800 private String[] aliases = null;
field in class:CharsetUtil.Charset 802 private Charset(String canonical, String mime, String[] aliases) {
805 this.aliases = aliases;
[all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
locale.py | 16 import encodings.aliases namespace 399 norm_encoding = encodings.aliases.aliases.get(norm_encoding, 596 # definitions and adding some more aliases. The file is usually 603 # first looks up the encoding in the encodings.aliases dictionary and [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
locale.py | 16 import encodings.aliases namespace 399 norm_encoding = encodings.aliases.aliases.get(norm_encoding, 596 # definitions and adding some more aliases. The file is usually 603 # first looks up the encoding in the encodings.aliases dictionary and [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
KeySelectionPage.java | 161 Enumeration<String> aliases = keyStore.aliases(); local 164 // we add the aliases to the combo. 174 while (aliases.hasMoreElements()) { 175 String alias = aliases.nextElement();
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
AndroidKeyStoreTest.java | 1070 Enumeration<String> aliases = ksTemp.aliases(); local 1116 final Enumeration<String> aliases = mKeyStore.aliases(); local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/security/ |
KeyStoreUsage.java | 127 * us to choose from the available entry aliases. 233 * This clears out all previous aliases and replaces it with the 270 Enumeration<String> aliases = ks.aliases(); local 272 return aliases; 290 List<String> aliases = new ArrayList<String>(); local 292 aliases.add(result.nextElement()); 294 mAdapter.setAliases(aliases);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
IETFUtils.java | 245 String[] aliases = new String[count]; local 253 aliases[count++] = key; 257 return aliases;
|
/external/chromium_org/net/quic/ |
quic_stream_factory.cc | 368 const AliasSet& aliases = session_aliases_[session]; local 369 for (AliasSet::const_iterator it = aliases.begin(); it != aliases.end();
|
/external/chromium_org/third_party/icu/source/common/ |
propname.cpp | 595 PropertyAliases aliases; local 608 ((uint16_t *)&aliases)[i]=ds->readUInt16(((const uint16_t *)inBytes)[i]); 612 if(length<aliases.total_size) { 621 uprv_memcpy(outBytes, inBytes, aliases.total_size); 628 ds->swapArray16(ds, inBytes+aliases.nameGroupPool_offset, 629 aliases.stringPool_offset-aliases.nameGroupPool_offset, 630 outBytes+aliases.nameGroupPool_offset, pErrorCode); 633 udata_swapInvStringBlock(ds, inBytes+aliases.stringPool_offset, 634 aliases.total_size-aliases.stringPool_offset [all...] |
/frameworks/base/keystore/tests/src/android/security/ |
AndroidKeyPairGeneratorTest.java | 82 String[] aliases = mAndroidKeyStore.saw(""); local 83 assertNotNull(aliases); 84 assertEquals(0, aliases.length);
|
AndroidKeyStoreTest.java | 1111 final Enumeration<String> aliases = mKeyStore.aliases(); local [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
TrustedCertificateStore.java | 47 * <p>The CAs are accessed via {@code KeyStore} style aliases. Aliases 224 public Set<String> aliases() { method in class:TrustedCertificateStore
|
/libcore/luni/src/main/native/ |
libcore_icu_NativeConverter.cpp | 102 // We have some aliases in the form x-blah .. match those first. 120 // the registry must be valid aliases. If a supported charset is not listed in the IANA 577 // Get the aliases for this charset. 578 std::vector<std::string> aliases; local 579 if (!collectStandardNames(env, icuCanonicalName, "IANA", aliases)) { 582 if (!collectStandardNames(env, icuCanonicalName, "MIME", aliases)) { 585 if (!collectStandardNames(env, icuCanonicalName, "JAVA", aliases)) { 588 if (!collectStandardNames(env, icuCanonicalName, "WINDOWS", aliases)) { 591 jobjectArray javaAliases = toStringArray(env, aliases);
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CredentialHelper.java | 331 Enumeration<String> aliases = keystore.aliases(); local 332 if (!aliases.hasMoreElements()) { 336 while (aliases.hasMoreElements()) { 337 String alias = aliases.nextElement();
|
/bionic/libc/netbsd/ |
gethnamaddr.c | 581 char **aliases = rs->host_aliases; local 588 *aliases = NULL; 592 *aliases++ = ptr; [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
KeyStore_Impl1Test.java | 55 private static final String[] aliases = { "", "alias", "Alias", "ALIAS", field in class:KeyStore_Impl1Test 242 * <code>Enumeration aliases()</code> 278 kss[i].aliases(); method 394 for (int j = 0; j < aliases.length; j++) { 395 kss[i].setEntry(aliases[j], entry, null); 420 for (int j = 0; j < aliases.length; j++) { 422 .concat(aliases[j]))); 423 assertTrue("Incorrect alias", kss[i].containsAlias(aliases[j])); 425 .isCertificateEntry(aliases[j])); 426 assertFalse("Incorrect KeyEntry", kss[i].isKeyEntry(aliases[j])) 849 String[] aliases = { "Alias1", "Alias2", "Alias3", "Alias4", "Alias5" }; local [all...] |
/external/smack/src/org/xbill/DNS/ |
Lookup.java | 47 private List aliases; field in class:Lookup 188 aliases = null; 399 if (aliases == null) 400 aliases = new ArrayList(); 401 aliases.add(oldname); 600 * Returns all known aliases for this name. Whenever a CNAME/DNAME is 603 * @return The aliases. 609 if (aliases == null) 611 return (Name []) aliases.toArray(new Name[aliases.size()]) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPUtilsImpl.java | 404 * Option flag to control the deletion: Include aliases in the 450 // aliases, in which case 465 // We're removing the aliases also. Look them up by their 471 XMPAliasInfo[] aliases = XMPMetaFactory.getSchemaRegistry().findAliases(schemaNS); local 472 for (int i = 0; i < aliases.length; i++) 474 XMPAliasInfo info = aliases[i]; 491 // concerned with aliases, they are handled implicitly from the [all...] |
/libcore/luni/src/main/java/java/security/ |
KeyStore.java | 421 public final Enumeration<String> aliases() throws KeyStoreException { method in class:KeyStore [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Standard_Suite.py | 480 aliases = alias variable
|
/libcore/luni/src/test/java/libcore/java/security/ |
KeyStoreTest.java | 262 Enumeration<String> aliases = ks.aliases(); local 263 while (aliases.hasMoreElements()) { 264 String alias = aliases.nextElement(); [all...] |
/external/chromium_org/third_party/icu/source/tools/gencnval/ |
gencnval.c | 60 /* The maximum number of aliases that a standard tag/converter combination can have. 102 uint16_t *aliases; /* Index into stringStore */ member in struct:__anon11621 107 uint16_t totalAliasCount; /* Total aliases in this column */ 118 uint16_t totalAliasCount; /* Total aliases in this row */ 126 /* Used for storing all aliases */ 131 /* Used for storing the lists section that point to aliases */ 135 /* Were the standard tags declared before the aliases. */ 298 /* write the table of aliases based on a tag/converter name combination */ 321 /* Add the empty tag, which is for untagged aliases */ 326 /* read the list of aliases */ [all...] |
/external/icu4c/tools/gencnval/ |
gencnval.c | 60 /* The maximum number of aliases that a standard tag/converter combination can have. 102 uint16_t *aliases; /* Index into stringStore */ member in struct:__anon19160 107 uint16_t totalAliasCount; /* Total aliases in this column */ 118 uint16_t totalAliasCount; /* Total aliases in this row */ 126 /* Used for storing all aliases */ 131 /* Used for storing the lists section that point to aliases */ 135 /* Were the standard tags declared before the aliases. */ 299 /* write the table of aliases based on a tag/converter name combination */ 312 if (tags[i].aliasList[n].aliases!=NULL) { 313 uprv_free(tags[i].aliasList[n].aliases); [all...] |
/external/mdnsresponder/mDNSPosix/ |
nss_mdns.c | 497 char * aliases [k_aliases_max + 1]; member in struct:buf_header 514 // Index for aliases - grow from high end 1392 result->header->aliases [result->aliases_count] = start; 1394 result->header->aliases [result->aliases_count] = NULL; 1405 for (i = 0; result->header->aliases [i]; i++) 1407 if (strcmp (result->header->aliases [i], alias) == 0) 1409 return result->header->aliases [i]; 1513 result->header->aliases[0] = NULL; 1524 result->hostent->h_aliases = result->header->aliases; [all...] |