/dalvik/vm/compiler/ |
Compiler.h | 68 /* Chain cell for predicted method invocation */ 104 kSVSTraceSelectNoChain = 4,// Exiting compiled code by trace select no chain 107 kSVSNoChain = 7, // Exiting compiled code by no chain
|
/external/fsck_msdos/ |
dosfs.h | 91 cl_t head; /* pointer to start of chain */ 92 u_int32_t length; /* number of clusters on chain */ 110 #define FAT_USED 1 /* This fat chain is used in a file */
|
/external/qemu/slirp/ |
ip_output.c | 50 * IP output. The packet in mbuf chain m contains a skeletal IP 52 * The mbuf chain containing the packet will be freed. 129 * make new header and copy data of each part and link onto chain.
|
/external/qemu/slirp-android/ |
ip_output.c | 50 * IP output. The packet in mbuf chain m contains a skeletal IP 52 * The mbuf chain containing the packet will be freed. 129 * make new header and copy data of each part and link onto chain.
|
/external/webkit/JavaScriptCore/bytecode/ |
Instruction.h | 63 StructureChain* chain; member in union:JSC::PolymorphicAccessStructureList::PolymorphicStubInfo::__anon6325 86 u.chain = _chain; 116 info.u.chain->deref();
|
/external/webkit/JavaScriptCore/runtime/ |
ScopeChain.h | 74 // of its chain of ScopeChainNodes to reclaim all the nodes it added 212 // with needs a full scope chain, otherwise this returns the depth of 215 // Returns the depth of the current call frame's scope chain
|
/sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/ |
LayoutAnalysisCategory.java | 189 * @return The analysis itself to chain calls. 199 * @return The analysis itself to chain calls. 209 * @return The analysis itself to chain calls.
|
/frameworks/base/tests/CoreTests/android/core/ |
SSLSocketTest.java | 583 * chain it sees, so it can later be queried. 587 private X509Certificate[] chain; field in class:SSLSocketTest.TestTrustManager 591 public void checkClientTrusted(X509Certificate[] chain, String authType) { 592 this.chain = chain; 596 public void checkServerTrusted(X509Certificate[] chain, String authType) { 597 this.chain = chain; 606 return chain; [all...] |
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyStore2Test.java | 310 // testing for a certificate chain 402 assertNull("the certificate chain returned from " 795 Certificate[] chain = { new MyCertificate("DSA", testEncoding), local 798 privateKey, chain); 849 Certificate[] chain = { new MyCertificate(type, testEncoding), local 999 Certificate[] chain = { new MyCertificate(type, testEncoding), local 1125 Certificate[] chain = { new MyCertificate(type, testEncoding), local 1229 Certificate[] chain = { new MyCertificate("DSA", testEncoding), local [all...] |
/external/wpa_supplicant/ |
x509v3.c | 62 * x509_certificate_free - Free an X.509 certificate chain 63 * @cert: Pointer to the first certificate in the chain [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
x509v3.c | 62 * x509_certificate_free - Free an X.509 certificate chain 63 * @cert: Pointer to the first certificate in the chain [all...] |
tlsv1_client_read.c | 219 struct x509_certificate *chain = NULL, *last = NULL, *cert; local 312 x509_certificate_chain_free(chain); 326 x509_certificate_chain_free(chain); 341 x509_certificate_chain_free(chain); 352 x509_certificate_chain_free(chain); 357 chain = cert; 367 x509_certificate_chain_validate(conn->cred->trusted_certs, chain, 370 wpa_printf(MSG_DEBUG, "TLSv1: Server certificate chain " 396 x509_certificate_chain_free(chain); 400 x509_certificate_chain_free(chain); [all...] |
tlsv1_server_read.c | 273 struct x509_certificate *chain = NULL, *last = NULL, *cert; local 372 x509_certificate_chain_free(chain); 386 x509_certificate_chain_free(chain); 401 x509_certificate_chain_free(chain); 412 x509_certificate_chain_free(chain); 417 chain = cert; 426 if (x509_certificate_chain_validate(conn->cred->trusted_certs, chain, 429 wpa_printf(MSG_DEBUG, "TLSv1: Server certificate chain " 455 x509_certificate_chain_free(chain); 459 x509_certificate_chain_free(chain); [all...] |
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/ |
HandshakeCompletedEventTest.java | 686 * chain it sees, so it can later be queried. 690 private X509Certificate[] chain; field in class:HandshakeCompletedEventTest.TestTrustManager 694 public void checkClientTrusted(X509Certificate[] chain, String authType) { 695 this.chain = chain; 699 public void checkServerTrusted(X509Certificate[] chain, String authType) { 700 this.chain = chain; 709 return chain; 717 java.security.cert.X509Certificate[] chain, String authType [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
function.h | 31 The main insn-chain is saved in the last element of the chain, 32 unless the chain is empty. */ 36 /* First and last insns in the chain of the saved sequence. */ 52 /* The ends of the doubly-linked chain of rtl for the current function. 62 The main insn-chain is saved in the last element of the chain, 63 unless the chain is empty. */ 288 /* List (chain of EXPR_LIST) of labels heading the current handlers for 302 /* List (chain of EXPR_LISTs) of all stack slots in this function [all...] |
/external/openssl/crypto/x509v3/ |
v3_addr.c | 1165 STACK_OF(X509) *chain, 1172 OPENSSL_assert(chain != NULL && sk_X509_num(chain) > 0); 1179 * set up for walking up the chain. 1185 x = sk_X509_value(chain, i); [all...] |
/external/guava/javadoc/com/google/common/collect/ |
ComparisonChain.html | 116 nonzero</i> comparison result in the chain, or will be zero if every 149 Compares two <code>boolean</code> values as specified by <A HREF="../../../../com/google/common/primitives/Booleans.html#compare(boolean, boolean)"><CODE>Booleans.compare(boolean, boolean)</CODE></A>, <i>if</i> the result of this comparison chain has not 159 Compares two comparable objects as specified by <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Comparable.html?is-external=true#compareTo(T)" title="class or interface in java.lang"><CODE>Comparable.compareTo(T)</CODE></A>, <i>if</i> the result of this comparison chain 169 Compares two <code>double</code> values as specified by <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Double.html?is-external=true#compare(double, double)" title="class or interface in java.lang"><CODE>Double.compare(double, double)</CODE></A>, <i>if</i> the result of this comparison chain has not 179 Compares two <code>float</code> values as specified by <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Float.html?is-external=true#compare(float, float)" title="class or interface in java.lang"><CODE>Float.compare(float, float)</CODE></A>, <i>if</i> the result of this comparison chain has not 190 <i>if</i> the result of this comparison chain has not already been 201 <i>if</i> the result of this comparison chain has not already been 220 comparison chain has not already been determined.</TD> 228 Ends this comparison chain and returns its result: a value having the 229 same sign as the first nonzero comparison result in the chain, or zero i [all...] |
/external/ipsec-tools/src/racoon/ |
nattraversal.c | 76 TAILQ_ENTRY(natt_ka_addrs) chain; 325 TAILQ_REMOVE (&ka_tree, ka, chain); 341 next = TAILQ_NEXT(ka, chain); 375 TAILQ_FOREACH (ka, &ka_tree, chain) { 404 TAILQ_INSERT_TAIL(&ka_tree, new_addr, chain); 435 next = TAILQ_NEXT(ka, chain);
|
schedule.h | 56 TAILQ_ENTRY(sched) chain; member in struct:sched
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/cp/ |
name-lookup.h | 36 binding_entry chain; local 69 /* Link to chain together various bindings for this name. */ 183 /* A chain of _DECL nodes for all variables, constants, functions, 189 /* Count of elements in names chain. */ 192 /* A chain of NAMESPACE_DECL nodes. */ 222 a chain of BLOCK nodes for all the levels
|
/external/dropbear/libtomcrypt/src/encauth/eax/ |
eax_done.c | 65 /* terminate the CTR chain */
|
/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_start.c | 15 CTR implementation, start chain, Tom St Denis
|
/external/icu4c/data/brkitr/ |
char.txt | 34 !!chain;
|
char_th.txt | 33 !!chain;
|
/external/quake/quake/src/QW/server/ |
progdefs.h | 119 int chain; member in struct:__anon5208
|