HomeSort by relevance Sort by last modified time
    Searched full:chain (Results 176 - 200 of 2078) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ChainStrengthAnalyzer.java 29 public static final void check(X509Certificate[] chain) throws CertificateException {
30 for (X509Certificate cert : chain) {
CertPinManager.java 66 * Given a hostname and a certificate chain this verifies that the chain includes
69 * If the chain doesn't include those certs and is in enforcing mode, then this method
72 public boolean chainIsNotPinned(String hostname, List<X509Certificate> chain)
79 return entry.chainIsNotPinned(chain);
  /external/guava/guava/src/com/google/common/base/
Throwables.java 161 * chain provides context from when the error or exception was initially
177 * Gets a {@code Throwable} cause chain as a list. The first entry in the
179 * that this is a snapshot of the cause chain and will not reflect
180 * any subsequent changes to the cause chain.
183 * of exceptions in the cause chain:
190 * @return an unmodifiable list containing the cause chain starting with
  /external/llvm/test/Transforms/BBVectorize/X86/
simple-int.ll 2 ; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7 -bb-vectorize -bb-vectorize-req-chain-depth=3 -instcombine -gvn -S | FileCheck %s
9 ; Basic depth-3 chain with fma
23 ; Basic depth-3 chain with fmuladd
37 ; Basic depth-3 chain with cos
51 ; Basic depth-3 chain with powi
65 ; Basic depth-3 chain with powi (different powers: should not vectorize)
  /external/linux-tools-perf/util/
hist.c 372 static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain,
394 if (chain->ms.sym)
395 ret += fprintf(fp, "%s\n", chain->ms.sym->name);
397 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
423 struct callchain_list *chain; local
464 list_for_each_entry(chain, &child->val, list) {
465 ret += ipchain__fprintf_graph(fp, chain, depth,
499 struct callchain_list *chain; local
505 list_for_each_entry(chain, &self->val, list) {
520 if (chain->ms.sym
537 struct callchain_list *chain; local
563 struct callchain_node *chain; local
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 288 /// getEntryNode - Return the token chain corresponding to the entry of the
298 "DAG root value is not a chain!");
445 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N) {
446 return getNode(ISD::CopyToReg, dl, MVT::Other, Chain,
453 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N,
456 SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Glue };
461 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, SDValue Reg, SDValue N,
464 SDValue Ops[] = { Chain, Reg, N, Glue };
468 SDValue getCopyFromReg(SDValue Chain, DebugLoc dl, unsigned Reg, EVT VT) {
470 SDValue Ops[] = { Chain, getRegister(Reg, VT) }
    [all...]
ISDOpcodes.h 100 /// It takes an input chain and a pointer to the jump buffer as inputs
106 /// It takes an input chain and a pointer to the jump buffer as inputs
143 /// returns a result. The first operand is a chain pointer. The second is
146 /// of the intrinsic and an output chain.
151 /// does not return a result. The first operand is a chain pointer. The
156 /// CopyToReg - This node has three operands: a chain, a register number to
472 /// stack pointer value and a chain. The first operand is the token chain,
481 /// BR - Unconditional branch. The first operand is the chain
485 /// BRIND - Indirect branch. The first operand is the chain, the secon
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JDKKeyStore.java 531 Certificate[] chain = entry.getCertificateChain(); local
533 if (chain != null)
535 return chain[0];
562 Certificate[] chain = entry.getCertificateChain(); local
564 if (chain != null && chain[0].equals(cert))
658 Certificate[] chain)
661 table.put(alias, new StoreEntry(alias, key, chain));
668 Certificate[] chain)
671 if ((key instanceof PrivateKey) && (chain == null)
703 Certificate[] chain = null; local
756 Certificate[] chain = entry.getCertificateChain(); local
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_vfy.c 66 static int ocsp_check_issuer(OCSP_BASICRESP *bs, STACK_OF(X509) *chain, unsigned long flags);
79 STACK_OF(X509) *chain = NULL;
121 chain = X509_STORE_CTX_get1_chain(&ctx);
136 /* At this point we have a valid certificate chain
139 ret = ocsp_check_issuer(bs, chain, flags);
149 x = sk_X509_value(chain, sk_X509_num(chain) - 1);
161 if(chain) sk_X509_pop_free(chain, X509_free);
216 static int ocsp_check_issuer(OCSP_BASICRESP *bs, STACK_OF(X509) *chain, unsigned long flags
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 27 /// Return with a flag operand. Operand 0 is the chain operand.
54 /// MSP430 conditional branches. Operand 0 is the chain operand, operand 1
127 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
136 SDValue LowerCCCArguments(SDValue Chain,
144 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
151 LowerFormalArguments(SDValue Chain,
161 LowerReturn(SDValue Chain,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
scope-001.js 24 * See ECMA Section 10.1.4 Scope Chain and Identifier Resolution
25 * (This section defines the scope chain of an execution context)
30 * (This section defines the scope chain of a function object as that
48 * Why? f captures its scope chain from when it's declared, and imposes that chain
49 * when it's executed. In other words, f's scope chain is from when it was compiled.
69 * f's associated scope chain now includes 'obj' before the global object.
scope-002.js 24 * See ECMA Section 10.1.4 Scope Chain and Identifier Resolution
25 * (This section defines the scope chain of an execution context)
30 * (This section defines the scope chain of a function object as that
52 * Why? f captures its scope chain from when it's declared, and imposes that chain
53 * when it's executed. In other words, f's scope chain is from when it was compiled.
70 * f's associated scope chain now includes 'obj' before the global object.
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLContext.java 198 * certificate chain from the given KeyStore and a TrustManager
251 X509Certificate[] chain = (X509Certificate[]) serverChain; local
252 trustManager.checkServerTrusted(chain, chain[0].getPublicKey().getAlgorithm());
258 X509Certificate[] chain = (X509Certificate[]) clientChain; local
259 trustManager.checkClientTrusted(chain, chain[0].getPublicKey().getAlgorithm());
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java 77 * This constructor does <i>not</i> clone the proxy chain array,
86 * @param proxies the proxy chain to use, or
129 * @param proxies the proxy chain to use, or
216 * Helper to convert a proxy to a proxy chain.
218 * @param proxy the only proxy in the chain, or <code>null</code>
220 * @return a proxy chain array, or <code>null</code>
231 * Helper to duplicate and check a proxy chain.
232 * An empty proxy chain is converted to <code>null</code>.
234 * @param proxies the proxy chain to duplicate, or <code>null</code>
236 * @return a new proxy chain array, or <code>null</code
    [all...]
RouteInfo.java 101 * A route through a chain of <i>n</i> proxies has <i>n+1</i> hops.
112 * the target of previous hops is the respective proxy in the chain.
132 * @return the first proxy in the proxy chain, or
141 * If there is a proxy chain, only end-to-end tunnels are considered.
151 * If there is a proxy chain, only end-to-end tunnels are considered.
  /external/clang/lib/Serialization/
ModuleManager.cpp 56 New->Index = Chain.size();
60 Chain.push_back(New);
125 for (unsigned i = 0, n = Chain.size(); i != n; ++i) {
126 Chain[i]->ImportedBy.remove_if(checkInSet);
135 // Remove the modules from the chain.
136 Chain.erase(first, last);
196 for (unsigned i = 0, e = Chain.size(); i != e; ++i)
197 delete Chain[e - i - 1];
206 if (VisitOrder.size() != Chain.size()) {
347 for (unsigned I = 0, N = Chain.size(); I != N; ++I)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 286 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
291 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
301 HexagonTargetLowering::LowerReturn(SDValue Chain,
318 SmallVector<SDValue, 4> RetOps(1, Chain);
324 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
327 Flag = Chain.getValue(1);
331 RetOps[0] = Chain; // Update chain.
346 /// Chain/InFlag are the input chain/flag to use, and that TheCall is the cal
    [all...]
  /external/ipsec-tools/src/racoon/
genlist.c 54 TAILQ_INSERT_HEAD(head, entry, chain);
63 TAILQ_INSERT_TAIL(head, entry, chain);
72 TAILQ_FOREACH(p, head, chain) {
89 p = (buf && *buf) ? TAILQ_NEXT(*buf, chain) : NULL;
101 TAILQ_REMOVE(head, p, chain);
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 160 /// InlinedChain - represents a chain of inlined_subroutine
163 /// (except the last DIE) in this chain is contained in address
164 /// range for next DIE in the chain.
167 /// Get inlined chain for a given address, rooted at the current DIE.
168 /// Returns empty chain if address is not contained in address range
  /external/llvm/test/Transforms/BBVectorize/
search-limit.ll 2 ; RUN: opt < %s -bb-vectorize -bb-vectorize-req-chain-depth=3 -bb-vectorize-ignore-target-info -instcombine -gvn -S | FileCheck %s
3 ; RUN: opt < %s -bb-vectorize -bb-vectorize-req-chain-depth=3 -bb-vectorize-search-limit=4 -bb-vectorize-ignore-target-info -instcombine -gvn -S | FileCheck %s -check-prefix=CHECK-SL4
20 ; Here we have a dependency chain: the short search limit will not
21 ; see past this chain and so will not see the second part of the
35 ; end of chain.
  /sdk/emulator/qtools/
hash_table.h 69 // Delete all the pointers in the chain at this table position.
102 // Search the chain for a matching key
131 // Search the chain for a matching key and keep track of the previous
132 // element in the chain.
155 // Search the chain for a matching key
  /external/iptables/iptables/
iptables-xml.1 47 target like SNAT and another chain.
53 <chain name="PREROUTING" policy="ACCEPT" packet-count="63436"
71 </chain>
  /external/llvm/include/llvm/IR/
GlobalAlias.h 72 /// by going through the aliasing chain and trying to find the very last
74 /// the whole chain aliasing chain is traversed, otherwise - only strong
  /external/openssl/crypto/x509/
x509_vfy.h 114 certificate chain.
181 * validation. Once we have a certificate chain, the 'verify'
182 * function is then called to actually check the cert chain. */
199 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
228 * gathering of the cert chain can take some time (and have to be
237 STACK_OF(X509) *untrusted; /* chain of X509s - untrusted - passed in */
248 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
258 int valid; /* if 0, rebuild chain */
260 STACK_OF(X509) *chain; /* chain of X509s - built up and trusted * member in struct:x509_store_ctx_st
    [all...]
  /external/openssl/include/openssl/
x509_vfy.h 114 certificate chain.
181 * validation. Once we have a certificate chain, the 'verify'
182 * function is then called to actually check the cert chain. */
199 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
228 * gathering of the cert chain can take some time (and have to be
237 STACK_OF(X509) *untrusted; /* chain of X509s - untrusted - passed in */
248 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
258 int valid; /* if 0, rebuild chain */
260 STACK_OF(X509) *chain; /* chain of X509s - built up and trusted * member in struct:x509_store_ctx_st
    [all...]

Completed in 792 milliseconds

1 2 3 4 5 6 78 91011>>