HomeSort by relevance Sort by last modified time
    Searched full:spec (Results 151 - 175 of 1636) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocol.java 27 import java.security.spec.InvalidKeySpecException;
28 import java.security.spec.RSAPublicKeySpec;
38 * @see <a href="http://www.ietf.org/rfc/rfc2246.txt">TLS 1.0 spec., 7.4.
115 * Indicates that change cipher spec message has been received
141 // indicates whether protocol needs to send change cipher spec message
144 // indicates whether protocol needs to send change cipher spec message
339 * @see <a href="http://www.ietf.org/rfc/rfc2246.txt">TLS spec. 7.4.9. Finished</a>
348 * @see <a href="http://www.ietf.org/rfc/rfc2246.txt">TLS spec. 7.4.9. Finished</a>
370 * @see "SSLv3 spec. 7.6.9. Finished"
380 * @see "SSLv3 spec. 7.6.9. Finished
    [all...]
  /external/icu4c/test/intltest/
dadrfmt.cpp 76 * Headers { "locale","spec", "date", "str"}
78 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG'
79 // date: either an unsigned long (millis), or a calendar spec ERA=0,YEAR=1, etc.. applied to the calendar type specified by the locale
133 UnicodeString spec = currentCase->getString("spec", status); local
135 errln("case %d: No 'spec' line.", n);
154 if(spec.startsWith(kPATTERN)) {
155 pattern = UnicodeString(spec,kPATTERN.length());
163 if(styleSet.parseFrom(spec, status)<0 || U_FAILURE(status)) {
164 errln("case %d: could not parse spec as style fields: %s", n, u_errorName(status))
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitperl/
httpd.pm 35 use File::Spec;
36 use File::Spec::Functions;
62 my $exclusiveLockFile = File::Spec->catfile($tmpDir, "WebKit.lock");
64 my $httpdPidDir = File::Spec->catfile($tmpDir, "WebKit");
65 my $httpdPidFile = File::Spec->catfile($httpdPidDir, "httpd.pid");
93 my $httpdLockFile = File::Spec->catfile($httpdPidDir, "httpd.lock");
94 my $httpdScoreBoardFile = File::Spec->catfile($httpdPidDir, "httpd.scoreboard");
269 my $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning());
273 $currentLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getLockNumberForCurrentRunning());
293 $myLockFile = File::Spec->catfile($tmpDir, "$httpdLockPrefix" . getNextAvailableLockNumber())
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 89 * Sets the type for the local indicated by the given register spec
90 * to that register spec (which includes type and optional name
92 * {@code set(spec.getReg(), spec)}.
94 * @param spec {@code non-null;} register spec to use as the basis for the update
96 public abstract void set(RegisterSpec spec);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKAlgorithmParameters.java 6 import java.security.spec.AlgorithmParameterSpec;
7 import java.security.spec.DSAParameterSpec;
8 import java.security.spec.InvalidParameterSpecException;
9 import java.security.spec.MGF1ParameterSpec;
10 import java.security.spec.PSSParameterSpec;
12 import javax.crypto.spec.DHParameterSpec;
13 import javax.crypto.spec.IvParameterSpec;
14 import javax.crypto.spec.OAEPParameterSpec;
15 import javax.crypto.spec.PBEParameterSpec;
16 import javax.crypto.spec.PSource
    [all...]
BrokenJCEBlockCipher.java 11 import java.security.spec.AlgorithmParameterSpec;
12 import java.security.spec.InvalidKeySpecException;
13 import java.security.spec.PKCS8EncodedKeySpec;
14 import java.security.spec.X509EncodedKeySpec;
20 import javax.crypto.spec.IvParameterSpec;
21 import javax.crypto.spec.PBEParameterSpec;
22 import javax.crypto.spec.RC2ParameterSpec;
23 import javax.crypto.spec.RC5ParameterSpec;
24 import javax.crypto.spec.SecretKeySpec;
JCEDHKeyAgreement.java 8 import java.security.spec.AlgorithmParameterSpec;
15 import javax.crypto.spec.DHParameterSpec;
16 import javax.crypto.spec.SecretKeySpec;
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.c 397 SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
492 SDL_memset(spec, 0, (sizeof *spec));
493 spec->freq = SDL_SwapLE32(format->frequency);
497 spec->format = AUDIO_S16;
503 spec->format = AUDIO_U8;
506 spec->format = AUDIO_S16;
517 spec->channels = (Uint8)SDL_SwapLE16(format->channels);
518 spec->samples = 4096; /* Good default buffer size */
551 samplesize = ((spec->format & 0xFF)/8)*spec->channels
    [all...]
  /external/webkit/WebCore/wml/
WMLSelectElement.cpp 242 // Spec: Step 1 - the default option index is determined using iname and ivalue
250 // Spec: Step 2 ? initialise variables
253 // Spec: Step 3 ? pre-select option(s) specified by the default option index
272 // Spec: If the 'iname' attribute is specified and names a variable that is set,
281 // Spec: If the default option index is empty and the 'ivalue' attribute is specified,
287 // Spec: If the default option index is empty, and the 'name' attribute is specified
301 // Spec: If the default option index is empty and the 'value' attribute is specified then
308 // Spec: If the default option index is empty and the select is a multi-choice, then the
341 // Spec: If the 'iname' attribute is specified, then the named variable is set with the default option index.
351 // Spec: If the 'name' attribute is specified and the select is a multiple-choice element
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator4Test.java 29 import java.security.spec.DSAParameterSpec;
153 * @tests java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec)
159 args = {java.security.spec.AlgorithmParameterSpec.class}
176 * @tests java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec,
183 args = {java.security.spec.AlgorithmParameterSpec.class, java.security.SecureRandom.class}
  /external/e2fsprogs/
Makefile.in 32 e2fsprogs.spec: $(DEP_SUBSTITUTE) e2fsprogs.spec.in
33 cd $(top_builddir); CONFIG_FILES=./e2fsprogs.spec ./config.status
35 rpm: e2fsprogs.spec
103 $(RM) -rf autom4te.cache e2fsprogs.spec ext2ed/Makefile po/stamp-po
  /external/icu4c/i18n/
ucol_sit.cpp 144 ActionFunction(CollatorSpec *spec, uint32_t value1, const char* string,
150 _processLocaleElement(CollatorSpec *spec, uint32_t value, const char* string,
156 spec->locElements[value][len++] = uprv_tolower(*string);
158 spec->locElements[value][len++] = *string;
172 _processRFC3066Locale(CollatorSpec *spec, uint32_t, const char* string,
182 uprv_strncpy(spec->locale, string, end-string);
191 _processCollatorOption(CollatorSpec *spec, uint32_t option, const char* string,
194 spec->options[option] = ucol_sit_letterToAttributeValue(*string, status);
234 _processVariableTop(CollatorSpec *spec, uint32_t value1, const char* string, UErrorCode *status)
240 spec->variableTopString[i++] = readHexCodeUnit(&string, status)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/disk/
SDL_diskaudio.c 50 static int DISKAUD_OpenAudio(_THIS, SDL_AudioSpec *spec);
160 static int DISKAUD_OpenAudio(_THIS, SDL_AudioSpec *spec)
176 this->hidden->mixlen = spec->size;
181 SDL_memset(this->hidden->mixbuf, spec->silence, spec->size);
  /dalvik/libcore/security/src/test/java/tests/security/spec/
RSAMultiPrimePrivateCrtKeySpecTest.java 23 package tests.security.spec;
33 import java.security.spec.KeySpec;
34 import java.security.spec.RSAMultiPrimePrivateCrtKeySpec;
35 import java.security.spec.RSAOtherPrimeInfo;
36 import java.security.spec.RSAPrivateKeySpec;
74 args = {java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.security.spec.RSAOtherPrimeInfo[].class}
108 args = {java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.security.spec.RSAOtherPrimeInfo[].class}
145 args = {java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.security.spec.RSAOtherPrimeInfo[].class}
182 args = {java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.security.spec.RSAOtherPrimeInfo[].class}
219 args = {java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.math.BigInteger.class, java.security.spec.RSAOtherPrimeInfo[].class
    [all...]
DSAPrivateKeySpecTest.java 23 package tests.security.spec;
33 import java.security.spec.DSAPrivateKeySpec;
34 import java.security.spec.KeySpec;
DSAPublicKeySpecTest.java 23 package tests.security.spec;
33 import java.security.spec.DSAPublicKeySpec;
34 import java.security.spec.KeySpec;
EncodedKeySpecTest.java 23 package tests.security.spec;
31 import org.apache.harmony.security.tests.support.spec.MyEncodedKeySpec;
33 import java.security.spec.EncodedKeySpec;
PKCS8EncodedKeySpecTest.java 23 package tests.security.spec;
32 import java.security.spec.EncodedKeySpec;
33 import java.security.spec.PKCS8EncodedKeySpec;
RSAKeyGenParameterSpecTest.java 23 package tests.security.spec;
33 import java.security.spec.AlgorithmParameterSpec;
34 import java.security.spec.RSAKeyGenParameterSpec;
RSAPublicKeySpecTest.java 23 package tests.security.spec;
33 import java.security.spec.KeySpec;
34 import java.security.spec.RSAPublicKeySpec;
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 36 * @param result {@code null-ok;} spec for the result, if any
62 * @param result {@code null-ok;} spec for the result, if any
63 * @param source {@code non-null;} spec for the source
  /external/blktrace/
Makefile 64 dist: btrace.spec
67 @cp btrace.spec btrace-1.0
68 $(TAR) rf btrace-1.0.tar btrace-1.0/btrace.spec
  /external/elfutils/
ChangeLog 57 * elfutils.spec: Don't distribute anything from libdwarf.
63 * elfutils.spec.in: Create separata elfutils-libelf-devel package.
71 * elfutils.spec.in: Remove references to libebl.so.
  /external/webkit/WebCore/platform/graphics/gtk/
IconGtk.cpp 56 Lookup an appropriate icon according to either the Icon Naming Spec
59 See http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 146 TabSpec tabSpec2 = mTabHost.newTabSpec("tab spec 2");
156 TabSpec tabSpec3 = mTabHost.newTabSpec("tab spec 3");
172 TabSpec tabSpec2 = mTabHost.newTabSpec("tab spec 2");
179 assertEquals("tab spec 2", currentView.getText().toString());
181 TabSpec tabSpec3 = mTabHost.newTabSpec("tab spec 3");
202 TabSpec tabSpec = mTabHost.newTabSpec("tab spec");

Completed in 73 milliseconds

1 2 3 4 5 67 8 91011>>