HomeSort by relevance Sort by last modified time
    Searched full:chain (Results 1 - 25 of 1057) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
access-via-redirect-expected.txt 1 This tests that the start of redirect chain doesn't get into an application cache if the end of the chain has a manifest.
  /external/iproute2/include/libiptc/
libip6tc.h 23 /* Does this chain exist? */
24 int ip6tc_is_chain(const char *chain, const ip6tc_handle_t handle);
36 /* Get first rule in the given chain: NULL for empty chain. */
37 const struct ip6t_entry *ip6tc_first_rule(const char *chain,
48 /* Is this a built-in chain? */
49 int ip6tc_builtin(const char *chain, const ip6tc_handle_t handle);
51 /* Get the policy of a given built-in chain */
52 const char *ip6tc_get_policy(const char *chain,
60 /* Insert the entry `fw' in chain `chain' into position `rulenum'. *
    [all...]
libiptc.h 31 /* Does this chain exist? */
32 int iptc_is_chain(const char *chain, const iptc_handle_t handle);
44 /* Get first rule in the given chain: NULL for empty chain. */
45 const struct ipt_entry *iptc_first_rule(const char *chain,
56 /* Is this a built-in chain? */
57 int iptc_builtin(const char *chain, const iptc_handle_t handle);
59 /* Get the policy of a given built-in chain */
60 const char *iptc_get_policy(const char *chain,
68 /* Insert the entry `e' in chain `chain' into position `rulenum'. *
    [all...]
  /external/iptables/include/libiptc/
libip6tc.h 23 /* Does this chain exist? */
24 int ip6tc_is_chain(const char *chain, const ip6tc_handle_t handle);
36 /* Get first rule in the given chain: NULL for empty chain. */
37 const struct ip6t_entry *ip6tc_first_rule(const char *chain,
48 /* Is this a built-in chain? */
49 int ip6tc_builtin(const char *chain, const ip6tc_handle_t handle);
51 /* Get the policy of a given built-in chain */
52 const char *ip6tc_get_policy(const char *chain,
60 /* Insert the entry `fw' in chain `chain' into position `rulenum'. *
    [all...]
libiptc.h 31 /* Does this chain exist? */
32 int iptc_is_chain(const char *chain, const iptc_handle_t handle);
44 /* Get first rule in the given chain: NULL for empty chain. */
45 const struct ipt_entry *iptc_first_rule(const char *chain,
56 /* Is this a built-in chain? */
57 int iptc_builtin(const char *chain, const iptc_handle_t handle);
59 /* Get the policy of a given built-in chain */
60 const char *iptc_get_policy(const char *chain,
68 /* Insert the entry `e' in chain `chain' into position `rulenum'. *
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
X509TrustManager.java 30 * Checks whether the specified certificate chain (partial or complete) can
34 * @param chain
35 * the certificate chain to validate.
39 * if the certificate chain can't be validated or isn't trusted.
41 * if the specified certificate chain is empty or {@code null},
45 public void checkClientTrusted(X509Certificate[] chain, String authType)
50 * Checks whether the specified certificate chain (partial or complete) can
54 * @param chain
55 * the certificate chain to validate.
59 * if the certificate chain can't be validated or isn't trusted
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 97 public void checkClientTrusted(X509Certificate[] chain, String authType)
99 if (chain == null || chain.length == 0 || authType == null
108 // establish an actual certificate chain the usual way,
110 if (isDirectlyTrustedCert(chain)) {
116 CertPath certPath = factory.generateCertPath(Arrays.asList(chain));
117 if (!Arrays.equals(chain[0].getEncoded(),
122 throw new CertificateException("Certificate chain error");
137 public void checkServerTrusted(X509Certificate[] chain, String authType)
139 if (chain == null || chain.length == 0 || authType == nul
    [all...]
  /external/chromium/net/base/
connection_type_histograms.h 21 // the certificate chain (excluding root)
23 // the certificate chain (excluding root)
25 // the certificate chain (excluding root)
27 // in the certificate chain (excluding root)
29 // in the certificate chain (excluding root)
cert_verify_result.h 11 // certificate chain that was constructed during certificate verification.
27 // Properties of the certificate chain.
  /external/dropbear/libtomcrypt/src/modes/cbc/
cbc_done.c 15 CBC implementation, finish chain, Tom St Denis
20 /** Terminate the chain
21 @param cbc The CBC chain to terminate
  /external/dropbear/libtomcrypt/src/modes/cfb/
cfb_done.c 15 CFB implementation, finish chain, Tom St Denis
20 /** Terminate the chain
21 @param cfb The CFB chain to terminate
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_done.c 15 CTR implementation, finish chain, Tom St Denis
20 /** Terminate the chain
21 @param ctr The CTR chain to terminate
  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_done.c 15 ECB implementation, finish chain, Tom St Denis
20 /** Terminate the chain
21 @param ecb The ECB chain to terminate
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_done.c 15 F8 implementation, finish chain, Tom St Denis
20 /** Terminate the chain
21 @param f8 The F8 chain to terminate
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_done.c 15 OFB implementation, finish chain, Tom St Denis
20 /** Terminate the chain
21 @param ofb The OFB chain to terminate
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KSPrivateKeyEntryTest.java 65 * Test for <code>PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain)</code>
86 * Test for <code>PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain)</code>
88 * Assertion: throws NullPointerException when chain is null
89 * and throws IllegalArgumentException when chain length is 0
98 Certificate[] chain = null; local
101 new KeyStore.PrivateKeyEntry(pk, chain);
102 fail("NullPointerException must be thrown when chain is null");
106 chain = new Certificate[0];
107 new KeyStore.PrivateKeyEntry(pk, chain);
108 fail("IllegalArgumentException must be thrown when chain length is 0")
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 51 private Hashtable<String, Object> Chain = new Hashtable<String, Object>();
72 if (Chain.containsKey(alias)) {
73 return (Certificate[]) Chain.get(alias);
93 Certificate[] chain) throws KeyStoreException {
98 if (chain != null) {
99 Chain.put(alias, chain);
104 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
112 if (Chain.containsKey(alias)) {
113 Chain.remove(alias)
    [all...]
  /external/clearsilver/man/man3/
nerr_error_string.3 31 level of the error chain)
nerr_error_traceback.3 30 returns the full traceback of the error chain
nerr_ignore.3 26 error (should I rename it?). Free's the error chain.
nerr_log_error.3 26 free's the error chain
  /external/webkit/JavaScriptCore/bytecode/
StructureStubInfo.h 80 void initGetByIdChain(Structure* baseObjectStructure, StructureChain* chain)
87 u.getByIdChain.chain = chain;
88 chain->ref();
109 void initPutByIdTransition(Structure* previousStructure, Structure* structure, StructureChain* chain)
119 u.putByIdTransition.chain = chain;
120 chain->ref();
156 StructureChain* chain; member in struct:JSC::StructureStubInfo::__anon7892::__anon7895
169 StructureChain* chain; member in struct:JSC::StructureStubInfo::__anon7892::__anon7898
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-1.js 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution
26 Every execution context has associated with it a scope chain. This is
28 When control enters an execution context, the scope chain is created and
30 code. When control leaves the execution context, the scope chain is
33 During execution, the scope chain of the execution context is affected
35 specified in the with statement is added to the front of the scope chain.
37 continue statement, the object is removed from the scope chain. The object
38 being removed will always be the first object in the scope chain.
43 1. Get the next object in the scope chain. If there isn't one, go to step 5.
60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution")
    [all...]
10.1.4-10.js 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution
26 Every execution context has associated with it a scope chain. This is
28 When control enters an execution context, the scope chain is created and
30 code. When control leaves the execution context, the scope chain is
33 During execution, the scope chain of the execution context is affected
35 specified in the with statement is added to the front of the scope chain.
37 continue statement, the object is removed from the scope chain. The object
38 being removed will always be the first object in the scope chain.
43 1. Get the next object in the scope chain. If there isn't one, go to step 5.
60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution")
    [all...]
10.1.4-2.js 24 ECMA Section: 10.1.4 Scope Chain and Identifier Resolution
26 Every execution context has associated with it a scope chain. This is
28 When control enters an execution context, the scope chain is created and
30 code. When control leaves the execution context, the scope chain is
33 During execution, the scope chain of the execution context is affected
35 specified in the with statement is added to the front of the scope chain.
37 continue statement, the object is removed from the scope chain. The object
38 being removed will always be the first object in the scope chain.
43 1. Get the next object in the scope chain. If there isn't one, go to step 5.
60 writeHeaderToLog( SECTION + " Scope Chain and Identifier Resolution")
    [all...]

Completed in 487 milliseconds

1 2 3 4 5 6 7 8 91011>>