HomeSort by relevance Sort by last modified time
    Searched refs:cpath (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 38 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in class:CodeSignerTest
41 private Timestamp ts = new Timestamp(now, cpath);
60 CodeSigner cs = new CodeSigner(cpath, null);
72 CodeSigner cs = new CodeSigner(cpath, ts);
84 CodeSigner one = new CodeSigner(cpath, ts);
85 CodeSigner two = new CodeSigner(cpath, ts);
86 CodeSigner three = new CodeSigner(cpath, null);
108 assertSame(new CodeSigner(cpath, null).getSignerCertPath(), cpath);
115 assertNull(new CodeSigner(cpath, null).getTimestamp())
    [all...]
TimestampTest.java 43 private CertPath cpath = new MyCertPath(encoding); field in class:TimestampTest
47 new Timestamp(null, cpath);
59 Timestamp timestamp = new Timestamp(now, cpath);
61 assertEquals("not expected cert path", cpath, timestamp.getSignerCertPath());
68 Timestamp one = new Timestamp(now, cpath);
69 Timestamp two = new Timestamp(now, cpath);
77 Timestamp two1 = new Timestamp(new Date(9999), cpath);
83 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
87 Timestamp t = new Timestamp(now, cpath);
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
CodeSigner_ImplTest.java 38 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in class:CodeSigner_ImplTest
41 private Timestamp ts = new Timestamp(now, cpath);
47 assertTrue(new CodeSigner(cpath, ts).hashCode() == (cpath.hashCode() ^ ts
49 assertTrue(new CodeSigner(cpath, null).hashCode() == cpath.hashCode());
Timestamp_ImplTest.java 44 private CertPath cpath = new MyCertPath(encoding); field in class:Timestamp_ImplTest
47 assertTrue(new Timestamp(now, cpath).hashCode() == (now.hashCode() ^ cpath
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 38 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in class:CodeSignerTest
41 private Timestamp ts = new Timestamp(now, cpath);
59 new CodeSigner(cpath, null);
67 CodeSigner one = new CodeSigner(cpath, ts);
68 CodeSigner two = new CodeSigner(cpath, ts);
69 CodeSigner three = new CodeSigner(cpath, null);
91 assertSame(new CodeSigner(cpath, null).getSignerCertPath(), cpath);
98 assertNull(new CodeSigner(cpath, null).getTimestamp());
99 assertSame(new CodeSigner(cpath, ts).getTimestamp(), ts)
    [all...]
TimestampTest.java 43 private CertPath cpath = new MyCertPath(encoding); field in class:TimestampTest
47 new Timestamp(null, cpath);
64 Timestamp one = new Timestamp(now, cpath);
65 Timestamp two = new Timestamp(now, cpath);
73 Timestamp two1 = new Timestamp(new Date(9999), cpath);
79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
83 Timestamp t = new Timestamp(now, cpath);
92 new Timestamp(now, cpath).toString();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
CodeSignerTest.java 44 CertPath cpath = TestCertUtils.getCertPath(); local
45 Timestamp ts = new Timestamp(new Date(1146633204309L), cpath);
46 return new Object[] { new CodeSigner(cpath, ts),
47 new CodeSigner(cpath, null) };
TimestampTest.java 43 CertPath cpath = TestCertUtils.getCertPath(); local
44 return new Object[] { new Timestamp(new Date(1146633251341L), cpath) };
  /bootable/recovery/minzip/
DirUtil.c 74 char *cpath = (char *)malloc(pathLen + 2); local
75 if (cpath == NULL) {
79 memcpy(cpath, path, pathLen);
83 char *c = cpath + pathLen - 1;
84 while (c != cpath && *c != '/') {
87 if (c == cpath) {
92 free(cpath);
99 cpath[pathLen] = '/';
100 cpath[pathLen + 1] = '\0';
105 ds = getPathDirStatus(cpath);
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertPathImplTest.java 80 X509CertPathImpl cpath = X509CertPathImpl.getInstance(bais); local
81 assertEquals("Certificate list size missmatch", certList.size(), cpath
90 X509CertPathImpl cpath = X509CertPathImpl.getInstance(encoding); local
91 assertEquals("Certificate list size missmatch", certList.size(), cpath
112 X509CertPathImpl cpath = X509CertPathImpl local
114 assertEquals("Certificate list size missmatch", certList.size(), cpath
119 cpath = X509CertPathImpl.getInstance(bais, "PKCS7");
120 assertEquals("Certificate list size missmatch", certList.size(), cpath
130 X509CertPathImpl cpath = X509CertPathImpl.getInstance(encoding); local
132 cpath.getCertificates().size())
    [all...]
  /external/chromium_org/base/
base_paths_posix.cc 68 char* cpath;
69 if ((cpath = getenv("CHROME_EXE_PATH")) != NULL)
70 *result = FilePath(cpath);
  /external/chromium_org/third_party/skia/src/utils/ios/
SkOSFile_iOS.mm 18 SkFILE* sk_fopen(const char cpath[], SkFILE_Flags flags) {
25 const char* start = strrchr(cpath, '/');
27 start = cpath;
31 const char* stop = strrchr(cpath, '.');
  /external/skia/src/utils/ios/
SkOSFile_iOS.mm 18 SkFILE* sk_fopen(const char cpath[], SkFILE_Flags flags) {
25 const char* start = strrchr(cpath, '/');
27 start = cpath;
31 const char* stop = strrchr(cpath, '.');
  /external/opencv/cvaux/src/
cvcorrespond.cpp 76 uchar cpath; local
208 cpath = 1;
213 cpath = 3;
223 cpath = 2;
228 cpath = 3;
234 matchEdges[i + j * row_size] = cpath;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.launching_3.5.100.v20100526.jar 
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 1941 milliseconds