/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLCipher.java | 28 import java.security.spec.AlgorithmParameterSpec; 29 import java.security.spec.InvalidKeySpecException; 30 import java.security.spec.InvalidParameterSpecException; 31 import java.security.spec.PKCS8EncodedKeySpec; 32 import java.security.spec.X509EncodedKeySpec; 42 import javax.crypto.spec.IvParameterSpec; 43 import javax.crypto.spec.SecretKeySpec; 323 final AlgorithmParameterSpec spec; local 325 spec = params.getParameterSpec(IvParameterSpec.class); 330 engineInit(opmode, key, spec, random) [all...] |
/libcore/luni/src/test/java/libcore/java/security/ |
KeyPairGeneratorTest.java | 38 import java.security.spec.AlgorithmParameterSpec; 39 import java.security.spec.DSAParameterSpec; 40 import java.security.spec.ECGenParameterSpec; 41 import java.security.spec.ECParameterSpec; 42 import java.security.spec.PKCS8EncodedKeySpec; 43 import java.security.spec.X509EncodedKeySpec; 50 import javax.crypto.spec.DHParameterSpec; 245 PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(encoded); local 247 PrivateKey privKey = kf.generatePrivate(spec); 262 X509EncodedKeySpec spec = new X509EncodedKeySpec(encoded) local [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
Signature2Test.java | 37 import java.security.spec.DSAParameterSpec; 309 * java.security.Signature#setParameter(java.security.spec.AlgorithmParameterSpec) 316 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE, local 318 sig.setParameter(spec);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xcms.h | 180 } spec; /* the color specification */ member in struct:__anon38431
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xcms.h | 180 } spec; /* the color specification */ member in struct:__anon40021
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xcms.h | 180 } spec; /* the color specification */ member in struct:__anon41536
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
URLTest.java | 488 String spec = "jar:file:/a!/b/../d"; local 490 u = new URL(ctx, spec); 491 assertEquals("1 Wrong file (jar protocol, relative path)", spec, u 494 spec = "../d"; 496 u = new URL(ctx, spec); 500 spec = "../d"; 502 u = new URL(ctx, spec); 506 spec = "../d"; 508 u = new URL(ctx, spec); 513 spec = "../pdf/PDF.settings" [all...] |
/external/blktrace/btt/doc/ |
btt.tex | 764 \newpage\subsection{\label{sec:sps-spec}Seeks Per Second} [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/ |
BcKeyStoreSpi.java | 24 import java.security.spec.KeySpec; 25 import java.security.spec.PKCS8EncodedKeySpec; 26 import java.security.spec.X509EncodedKeySpec; 35 import javax.crypto.spec.PBEKeySpec; 36 import javax.crypto.spec.PBEParameterSpec; 37 import javax.crypto.spec.SecretKeySpec; 413 KeySpec spec; local 419 spec = new PKCS8EncodedKeySpec(enc); 423 spec = new X509EncodedKeySpec(enc); 439 return KeyFactory.getInstance(algorithm, BouncyCastleProvider.PROVIDER_NAME).generatePrivate(spec); [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
transreg.cpp | 194 * Spec class for sources and targets. 196 * A Spec may be a locale or a script. If it is a locale, it has a 198 * ssss is the script mapping of xx_YY_ZZZ. The Spec API methods 202 * The Spec class canonicalizes itself, so the locale is put into 208 TransliteratorSpec(const UnicodeString& spec); 226 UnicodeString spec; member in class:TransliteratorSpec 229 UBool isSpecLocale; // TRUE if spec is a locale 279 // assert(spec != top); 292 if (spec != top) { 293 spec = top [all...] |
/external/chromium_org/third_party/icu/source/io/ |
uprntf_p.c | 101 u_printf_spec_info fInfo; /* Information on this spec */ 1219 u_printf_spec spec; local [all...] |
uscanf_p.c | 101 u_scanf_spec_info fInfo; /* Information on this spec */ 108 * @param spec A pointer to a <TT>u_scanf_spec</TT> to receive the parsed 114 u_scanf_spec *spec) 118 u_scanf_spec_info *info = &(spec->fInfo); 120 /* initialize spec to default values */ 121 spec->fArgPos = -1; 145 spec->fArgPos = (int) (*s++ - DIGIT_ZERO); 148 spec->fArgPos *= 10; 149 spec->fArgPos += (int) (*s++ - DIGIT_ZERO); 155 spec->fArgPos = -1 1310 u_scanf_spec spec; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/sound/ |
pulseaudiosoundsystem.cc | 330 // from our sample spec. We could use PA_CHANNELS_MAX to cover our bases, 697 const pa_sample_spec *spec = symbol_table()->pa_stream_get_sample_spec()( local 699 if (!spec) { 705 symbol_table()->pa_cvolume_set()(&channel_volumes, spec->channels, 896 const pa_sample_spec *spec = symbol_table()->pa_stream_get_sample_spec()( local 898 if (!spec) { 903 size_t bytes_per_sec = symbol_table()->pa_bytes_per_second()(spec); 1394 pa_sample_spec spec; local [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
api_exec_es1.c | 486 const char *spec; local 490 spec = _mesa_function_pool + remap[i].pool_index; 492 offset = _mesa_map_function_spec(spec);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 293 spec = property(get_spec) variable in class:Pointer 336 spec = property(get_spec) variable in class:Array 485 spec = self[-1] 486 if type(spec)==TypeSpecifiers: # isinstance ?? 487 return spec 488 spec = property(get_spec) variable in class:Declarator 491 if self.spec: 492 if isinstance(self.spec[0], TypeAlias): 493 return self.spec[0] 497 if self.spec [all...] |
/external/icu4c/i18n/ |
transreg.cpp | 196 * Spec class for sources and targets. 198 * A Spec may be a locale or a script. If it is a locale, it has a 200 * ssss is the script mapping of xx_YY_ZZZ. The Spec API methods 204 * The Spec class canonicalizes itself, so the locale is put into 210 TransliteratorSpec(const UnicodeString& spec); 228 UnicodeString spec; member in class:TransliteratorSpec 231 UBool isSpecLocale; // TRUE if spec is a locale 281 // assert(spec != top); 294 if (spec != top) { 295 spec = top [all...] |
/external/icu4c/io/ |
uprntf_p.c | 101 u_printf_spec_info fInfo; /* Information on this spec */ 1219 u_printf_spec spec; local [all...] |
uscanf_p.c | 101 u_scanf_spec_info fInfo; /* Information on this spec */ 108 * @param spec A pointer to a <TT>u_scanf_spec</TT> to receive the parsed 114 u_scanf_spec *spec) 118 u_scanf_spec_info *info = &(spec->fInfo); 120 /* initialize spec to default values */ 121 spec->fArgPos = -1; 145 spec->fArgPos = (int) (*s++ - DIGIT_ZERO); 148 spec->fArgPos *= 10; 149 spec->fArgPos += (int) (*s++ - DIGIT_ZERO); 155 spec->fArgPos = -1 1309 u_scanf_spec spec; local [all...] |
/external/linux-tools-perf/ |
builtin-script.c | 412 char spec[0]; member in struct:script_spec 417 static struct script_spec *script_spec__new(const char *spec, 420 struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1); 423 strcpy(s->spec, spec); 432 free(s->spec); 441 static struct script_spec *script_spec__find(const char *spec) 446 if (strcasecmp(s->spec, spec) == 0) 451 static struct script_spec *script_spec__findnew(const char *spec, 514 char spec[PATH_MAX]; local [all...] |
/external/llvm/lib/Target/X86/Disassembler/ |
X86DisassemblerDecoder.h | 560 const struct InstructionSpecifier *spec; member in struct:InternalInstruction
|
/external/smack/src/org/xbill/DNS/ |
DNSSEC.java | 9 import java.security.spec.*; 379 ECParameterSpec spec; field in class:DNSSEC.ECKeyInfo 392 spec = new ECParameterSpec(curve, new ECPoint(gx, gy), n, 1); 426 return factory.generatePublic(new ECPublicKeySpec(q, keyinfo.spec));
|
/external/valgrind/main/none/tests/amd64/ |
sse4-64.c | 2172 V128 spec[7]; local 3543 V128 spec[ntests]; local [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
ActionMenuPresenter.java | 106 final int spec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED); local 107 mOverflowButton.measure(spec, spec);
|
/frameworks/base/libs/androidfw/ |
AssetManager.cpp | 465 char spec[9]; local 466 spec[0] = config.language[0]; 467 spec[1] = config.language[1]; 469 spec[2] = '_'; 470 spec[3] = config.country[0]; 471 spec[4] = config.country[1]; 472 spec[5] = 0; 474 spec[3] = 0; 476 setLocaleLocked(spec); [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/ |
ActionMenuPresenter.java | 103 final int spec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED); local 104 mOverflowButton.measure(spec, spec);
|