HomeSort by relevance Sort by last modified time
    Searched defs:chain (Results 101 - 125 of 273) sorted by null

1 2 3 45 6 7 8 91011

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat.java 235 // Count the chain first
242 // Now create the chain
243 long[] chain = new long[count]; local
244 chain[0] = startCluster;
249 chain[++i] = cluster;
251 return chain;
362 * @param cluster a cluster from a chain where the new cluster should be
FatLfnDirectory.java 427 final ClusterChain chain = new ClusterChain( local
432 new ClusterChainDirectory(chain, false);
  /art/compiler/
elf_writer_quick.cc 179 // | Elf32_Word chain[0] |
181 // | Elf32_Word chain[c - 1] |
733 // * The bucket array which is an array of indexes into the symtab and chain.
734 // * The chain array which is also an array of indexes into the symtab and chain.
738 // | symtab | | bucket | | chain |
755 // indx = chain[indx]
758 // Between bucket and chain arrays every symtab index must be present exactly
783 Elf32_Word* chain = hash.data() + chain_offset; local
796 while (chain[hash_val] != 0)
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
AndroidKeyPairGeneratorTest.java 473 Certificate[] chain = privEntry.getCertificateChain(); local
475 chain.length);
528 private final X509Certificate[] chain; field in class:AndroidKeyPairGeneratorTest.MyKeyManager
532 this.chain = new X509Certificate[] { cert };
547 return chain;
AndroidKeyStoreTest.java 1975 final Certificate[] chain = new Certificate[2]; local
1995 final Certificate[] chain = new Certificate[2]; local
2023 final Certificate[] chain = new Certificate[2]; local
2046 final Certificate[] chain = new Certificate[2]; local
2079 ArrayList<Certificate> chain = new ArrayList<Certificate>(); local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 68 * real chain of certificates, it's just an array of 3 certs. The method
75 Certificate[] chain = { new TestCertificate(), new TestCertificate(), local
77 return chain;
  /external/ltrace/sysdeps/linux-gnu/ppc/
plt.c 712 struct library_symbol *chain = NULL; local
715 &chain) < 0)
721 assert(!chain->delayed);
722 chain->delayed = 1;
726 *ret = chain;
731 /* PPC64. If we have stubs, we return a chain of breakpoint
742 /* Re-chain the symbol from stubs to CHAIN. */
744 sym->next = chain;
745 chain = sym
    [all...]
  /frameworks/av/services/audioflinger/
Effects.h 45 const wp<AudioFlinger::EffectChain>& chain,
91 void setChain(const wp<EffectChain>& chain) { mChain = chain; }
100 wp<EffectChain>& chain() { return mChain; } function in class:EffectModule
142 wp<EffectChain> mChain; // parent effect chain
239 // Effects in this chain can be insert or auxiliary. Effects in other chains (attached to
319 // At least one non offloadable effect in the chain is enabled
366 int16_t *mInBuffer; // chain input buffer
367 int16_t *mOutBuffer; // chain output buffer
375 bool mOwnInBuffer; // true if the chain owns its input buffe
    [all...]
Effects.cpp 59 const wp<AudioFlinger::EffectChain>& chain,
64 mThread(thread), mChain(chain), mId(id), mSessionId(sessionId),
298 sp<EffectChain> chain = mChain.promote(); local
299 if (chain != 0 && chain->activeTrackCnt() != 0) {
360 // last effect in the chain accumulates in output buffer: input buffer != output buffer
484 sp<EffectChain> chain = mChain.promote(); local
485 if (chain != 0) {
486 chain->forceVolume();
    [all...]
Tracks.cpp 958 sp<EffectChain> chain = srcThread->getEffectChain_l(AUDIO_SESSION_OUTPUT_MIX); local
    [all...]
  /libcore/luni/src/main/java/java/security/
KeyStore.java 257 * Returns the certificate chain for the entry with the given alias.
261 * @return the certificate chain for the entry with the given alias, or
308 * Associates the given alias with the key, password and certificate chain.
318 * @param chain
319 * the certificate chain.
323 * if {@code key} is a {@code PrivateKey} and {@code chain} does
329 Certificate[] chain) throws KeyStoreException {
334 // Certificate chain is required for PrivateKey
335 if (key != null && key instanceof PrivateKey && (chain == null || chain.length == 0))
1179 private Certificate[] chain; field in class:KeyStore.PrivateKeyEntry
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 70 * real chain of certificates, it's just an array of 3 certs. The method
77 Certificate[] chain = { new TestCertificate(), new TestCertificate(), local
79 return chain;
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 524 Certificate[] chain = entry.getCertificateChain(); local
526 if (chain != null)
528 return chain[0];
555 Certificate[] chain = entry.getCertificateChain(); local
557 if (chain != null && chain[0].equals(cert))
651 Certificate[] chain)
654 table.put(alias, new StoreEntry(alias, key, chain));
661 Certificate[] chain)
664 if ((key instanceof PrivateKey) && (chain == null)
696 Certificate[] chain = null; local
749 Certificate[] chain = entry.getCertificateChain(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 1036 const AsyncCallStackTracker::AsyncCallChain* chain = m_asyncCallStackTracker.currentAsyncCallChain(); local
    [all...]
  /external/chromium_org/third_party/jinja2/
compiler.py 11 from itertools import chain namespace
529 for kwarg in chain((x.key for x in node.kwargs), extra_kwargs or ()):
    [all...]
  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-gsub-private.h 458 HB_ChainContextSubst chain; member in union:HB_GSUB_SubTable_
  /external/elfutils/0.153/src/
strip.c 1477 Elf32_Word *chain = bucket + nbucket; local
1531 Elf64_Xword *chain = bucket + nbucket; local
    [all...]
  /external/ipsec-tools/src/racoon/
handler.h 210 LIST_ENTRY(ph1handle) chain; member in struct:ph1handle
321 LIST_ENTRY(ph2handle) chain; member in struct:ph2handle
322 LIST_ENTRY(ph2handle) ph1bind; /* chain to ph1handle */
330 LIST_ENTRY(contacted) chain; member in struct:contacted
347 LIST_ENTRY(recvdpkt) chain; member in struct:recvdpkt
  /external/iptables/iptables/
ip6tables.c 89 {.name = "new-chain", .has_arg = 1, .val = 'N'},
90 {.name = "delete-chain", .has_arg = 2, .val = 'X'},
91 {.name = "rename-chain", .has_arg = 1, .val = 'E'},
196 "Usage: %s -[ACD] chain rule-specification [options]\n"
197 " %s -I chain [rulenum] rule-specification [options]\n"
198 " %s -R chain rulenum rule-specification [options]\n"
199 " %s -D chain rulenum [options]\n"
200 " %s -[LS] [chain [rulenum]] [options]\n"
201 " %s -[FZ] [chain] [options]\n"
202 " %s -[NX] chain\n
824 const char *chain; local
1300 const char *chain = NULL; local
    [all...]
iptables.c 86 {.name = "new-chain", .has_arg = 1, .val = 'N'},
87 {.name = "delete-chain", .has_arg = 2, .val = 'X'},
88 {.name = "rename-chain", .has_arg = 1, .val = 'E'},
190 "Usage: %s -[ACD] chain rule-specification [options]\n"
191 " %s -I chain [rulenum] rule-specification [options]\n"
192 " %s -R chain rulenum rule-specification [options]\n"
193 " %s -D chain rulenum [options]\n"
194 " %s -[LS] [chain [rulenum]] [options]\n"
195 " %s -[FZ] [chain] [options]\n"
196 " %s -[NX] chain\n
809 const char *chain; local
1296 const char *chain = NULL; local
    [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 105 void encode(int tick, AudioStream *chain);
264 void AudioStream::encode(int tick, AudioStream *chain)
308 while (chain) {
309 if (chain != this) {
310 data |= chain->mix(buffer, tick - mInterval, tick, mSampleRate);
312 chain = chain->mNext;
698 for (AudioStream *chain = mChain; chain->mNext; chain = chain->mNext)
720 AudioStream *chain = mGroup->mChain; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
HandshakeCompletedEventTest.java 557 * chain it sees, so it can later be queried.
561 private X509Certificate[] chain; field in class:HandshakeCompletedEventTest.TestTrustManager
565 public void checkClientTrusted(X509Certificate[] chain, String authType) {
566 this.chain = chain;
570 public void checkServerTrusted(X509Certificate[] chain, String authType) {
571 this.chain = chain;
580 return chain;
588 java.security.cert.X509Certificate[] chain, String authType
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 276 // testing for a certificate chain
351 assertNull("the certificate chain returned from getCertificateChain is NOT null",
632 Certificate[] chain = { new MyCertificate("DSA", testEncoding), local
634 KeyStore.PrivateKeyEntry pkEntry = new KeyStore.PrivateKeyEntry(getPrivateKey(), chain);
664 Certificate[] chain = { new MyCertificate(type, testEncoding), local
673 chain);
675 privateKey1, chain);
755 Certificate[] chain = { new MyCertificate(type, testEncoding), local
768 KeyStore.PrivateKeyEntry pke1 = new KeyStore.PrivateKeyEntry(getPrivateKey(), chain);
769 KeyStore.PrivateKeyEntry pke2 = new KeyStore.PrivateKeyEntry(privateKey1, chain);
806 Certificate[] chain = { new MyCertificate(type, testEncoding), local
885 Certificate[] chain = { new MyCertificate("DSA", testEncoding), local
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 482 // don't need certificate chain
922 Certificate[] chain = keyStore.getCertificateChain(alias); local
    [all...]

Completed in 897 milliseconds

1 2 3 45 6 7 8 91011