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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/
GrAddPathRenderers_default.cpp 20 void GrPathRenderer::AddPathRenderers(GrContext* ctx, GrPathRendererChain* chain) {
22 chain->addPathRenderer(SkNEW(GrStrokePathRenderer))->unref();
25 chain->addPathRenderer(SkNEW(GrAndroidPathRenderer))->unref();
28 chain->addPathRenderer(pr)->unref();
31 chain->addPathRenderer(pr)->unref();
33 chain->addPathRenderer(SkNEW(GrAAConvexPathRenderer))->unref();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 26 * A directory that is stored in a cluster chain.
46 final ClusterChain chain; field in class:ClusterChainDirectory
48 protected ClusterChainDirectory(ClusterChain chain, boolean isRoot) {
50 super((int)(chain.getLengthOnDisk() / FatDirectoryEntry.SIZE),
51 chain.isReadOnly(), isRoot);
53 this.chain = chain;
57 ClusterChain chain) throws IOException {
60 new ClusterChainDirectory(chain, true);
70 "only FAT32 stores root directory in a cluster chain");
    [all...]
FatFile.java 29 * The in-memory representation of a single file (chain of clusters) on a
37 private final ClusterChain chain; field in class:FatFile
39 private FatFile(FatDirectoryEntry myEntry, ClusterChain chain) {
43 this.chain = chain;
56 "entry is larger than associated cluster chain");
91 chain.setSize(length);
93 this.entry.setStartCluster(chain.getStartCluster());
126 chain.readData(offset, dest);
157 chain.writeData(offset, srcBuf)
    [all...]
ClusterChain.java 28 * A chain of clusters as stored in a {@link Fat}.
43 * @param fat the {@code Fat} that holds the new chain
44 * @param readOnly if the chain should be created read-only
82 * Returns the first cluster of this chain.
84 * @return the chain's first cluster, which may be 0 if this chain does
108 * @return the size this chain occupies on the device in bytes
140 * @return the length of this chain
145 final long[] chain = getFat().getChain(getStartCluster()); local
146 return chain.length
164 final long[] chain = fat.allocNew(nrClusters); local
167 final long[] chain = fat.getChain(startCluster); local
204 final long[] chain = getFat().getChain(startCluster); local
254 final long[] chain = fat.getChain(getStartCluster()); local
    [all...]
  /external/iptables/include/libiptc/
libip6tc.h 23 /* Does this chain exist? */
24 int ip6tc_is_chain(const char *chain, struct ip6tc_handle *const 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, struct ip6tc_handle *const 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 27 /* Does this chain exist? */
28 int iptc_is_chain(const char *chain, struct iptc_handle *const handle);
40 /* Get first rule in the given chain: NULL for empty chain. */
41 const struct ipt_entry *iptc_first_rule(const char *chain,
52 /* Is this a built-in chain? */
53 int iptc_builtin(const char *chain, struct iptc_handle *const handle);
55 /* Get the policy of a given built-in chain */
56 const char *iptc_get_policy(const char *chain,
64 /* Insert the entry `e' in chain `chain' into position `rulenum'. *
    [all...]
  /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/eigen/bench/btl/generic_bench/utils/
utilities.h 22 # define INFOS(chain) {HEREWEARE ; cerr << chain << endl ;}
23 # define PYSCRIPT(chain) {cout<<flush ; cerr << "---PYSCRIPT--- " << chain << endl ;}
59 # define MESSAGE(chain) {HERE ; cerr << chain << endl ;}
67 #define BEGIN_OF(chain) {REPERE ; HERE ; cerr << "Begin of: " << chain << endl ; REPERE ; }
68 #define END_OF(chain) {REPERE ; HERE ; cerr << "Normal end of: " << chain << endl ; REPERE ;
    [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...]
  /external/iptables/include/
ip6tables.h 14 extern int flush_entries6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
15 extern int delete_chain6(const ip6t_chainlabel chain, int verbose, struct ip6tc_handle *handle);
16 void print_rule6(const struct ip6t_entry *e, struct ip6tc_handle *h, const char *chain, int counters);
iptables.h 12 extern int delete_chain4(const ipt_chainlabel chain, int verbose,
14 extern int flush_entries4(const ipt_chainlabel chain, int verbose,
19 struct iptc_handle *handle, const char *chain, int counters);
  /external/iptables/iptables/
ip6tables-save.c 65 const char *chain = NULL; local
86 /* Dump out chain names first,
88 for (chain = ip6tc_first_chain(h);
89 chain;
90 chain = ip6tc_next_chain(h)) {
92 printf(":%s ", chain);
93 if (ip6tc_builtin(chain, h)) {
96 ip6tc_get_policy(chain, &count, h));
104 for (chain = ip6tc_first_chain(h);
105 chain;
    [all...]
iptables-save.c 63 const char *chain = NULL; local
84 /* Dump out chain names first,
86 for (chain = iptc_first_chain(h);
87 chain;
88 chain = iptc_next_chain(h)) {
90 printf(":%s ", chain);
91 if (iptc_builtin(chain, h)) {
94 iptc_get_policy(chain, &count, h));
102 for (chain = iptc_first_chain(h);
103 chain;
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 36 public XmlPullParserException(String msg, XmlPullParser parser, Throwable chain) {
39 + (chain == null ? "" : "caused by: "+chain));
45 this.detail = chain;
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 59 public void checkClientTrusted(X509Certificate[] chain, String authType)
62 + "chain=" + chain.length + " "
66 trustManager.checkClientTrusted(chain, authType);
80 public void checkServerTrusted(X509Certificate[] chain, String authType)
83 + "chain=" + chain.length + " "
87 trustManager.checkServerTrusted(chain, authType);
  /external/webkit/Source/JavaScriptCore/bytecode/
StructureStubInfo.h 76 void initGetByIdChain(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure, StructureChain* chain)
81 u.getByIdChain.chain.set(globalData, owner, chain);
102 void initPutByIdTransition(JSGlobalData& globalData, JSCell* owner, Structure* previousStructure, Structure* structure, StructureChain* chain)
108 u.putByIdTransition.chain.set(globalData, owner, chain);
144 WriteBarrierBase<StructureChain> chain; member in struct:JSC::StructureStubInfo::__anon17518::__anon17521
157 WriteBarrierBase<StructureChain> chain; member in struct:JSC::StructureStubInfo::__anon17518::__anon17524
  /frameworks/base/core/java/android/net/http/
X509TrustManagerExtensions.java 53 * Verifies the given certificate chain.
56 * description of the chain and authType parameters. The final parameter, host, should be the
59 * @throws CertificateException if the chain does not verify correctly.
60 * @return the properly ordered chain used for verification as a list of X509Certificates.
62 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
64 return mDelegate.checkServerTrusted(chain, authType, host);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
PinListEntry.java 40 * Determines whether a failed match here will prevent the chain from being accepted. If true,
41 * an unpinned chain will log and cause a match failure. If false, it will merely log.
91 * Checks the given chain against the pin list corresponding to this entry.
97 public boolean chainIsNotPinned(List<X509Certificate> chain) {
98 for (X509Certificate cert : chain) {
104 logPinFailure(chain);
139 private boolean chainContainsUserCert(List<X509Certificate> chain) {
143 for (X509Certificate cert : chain) {
151 private void logPinFailure(List<X509Certificate> chain) {
152 PinFailureLogger.log(cn, chainContainsUserCert(chain), enforcing, chain)
    [all...]
PinFailureLogger.java 33 List<X509Certificate> chain) {
39 writeToLog(cn, chainContainsUserCert, pinIsEnforcing, chain);
46 List<X509Certificate> chain) {
54 for (X509Certificate cert : chain) {
TrustManagerImpl.java 61 * The CertPinManager, which validates the chain against a host-to-pin mapping
185 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
187 checkTrusted(chain, authType, null, true);
190 @Override public void checkServerTrusted(X509Certificate[] chain, String authType)
192 checkTrusted(chain, authType, null, false);
197 * chain is pinned appropriately for that host. If null, it does not check for pinned certs.
200 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
202 return checkTrusted(chain, authType, host, false);
213 private List<X509Certificate> checkTrusted(X509Certificate[] chain, String authType,
216 if (chain == null || chain.length == 0 || authType == null || authType.length() == 0)
    [all...]
  /external/flac/libFLAC/
metadata_iterators.c 920 FLAC__Metadata_Chain *chain; member in struct:FLAC__Metadata_Iterator
1260 FLAC__Metadata_Chain *chain = (FLAC__Metadata_Chain*)client_data; local
1281 FLAC__Metadata_Chain *chain = (FLAC__Metadata_Chain*)client_data; local
1304 FLAC__Metadata_Chain *chain = (FLAC__Metadata_Chain*)client_data; local
1501 FLAC__Metadata_Chain *chain = (FLAC__Metadata_Chain*)calloc(1, sizeof(FLAC__Metadata_Chain)); local
    [all...]
  /external/icu4c/layout/
MorphTables.cpp 27 le_uint32 chain; local
29 for (chain = 0; chain < chainCount; chain += 1) {
  /libcore/luni/src/main/java/java/security/
KeyStore.java 256 * Returns the certificate chain for the entry with the given alias.
260 * @return the certificate chain for the entry with the given alias, or
307 * Associates the given alias with the key, password and certificate chain.
317 * @param chain
318 * the certificate chain.
322 * if {@code key} is a {@code PrivateKey} and {@code chain} does
328 Certificate[] chain) throws KeyStoreException {
333 // Certificate chain is required for PrivateKey
334 if (key != null && key instanceof PrivateKey && (chain == null || chain.length == 0))
1178 private Certificate[] chain; field in class:KeyStore.PrivateKeyEntry
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
typelist.h 63 struct chain struct in namespace:typelist
141 struct apply_<Fn, chain<Hd, Tl> >
163 struct apply_generator1_<Gn, chain<Hd, Tl> >
185 struct apply_generator2_<Gn, chain<Hd1, TlT>, chain<Hd2, TlV> >
207 struct append_<chain<Hd, Tl>, Typelist_Chain>
213 typedef chain<Hd, typename append_type::type> type;
238 struct append_typelist_<chain<Hd, null_type> >
240 typedef chain<Hd, null_type> type;
244 struct append_typelist_<chain< Hd, Tl>
    [all...]

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>