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

  /bootable/recovery/minzip/
DirUtil.c 73 char *cpath = (char *)malloc(pathLen + 2); local
74 if (cpath == NULL) {
78 memcpy(cpath, path, pathLen);
82 char *c = cpath + pathLen - 1;
83 while (c != cpath && *c != '/') {
86 if (c == cpath) {
91 free(cpath);
98 cpath[pathLen] = '/';
99 cpath[pathLen + 1] = '\0';
104 ds = getPathDirStatus(cpath);
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 53 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in class:CodeSignerTest
56 private Timestamp ts = new Timestamp(now, cpath);
87 CodeSigner cs = new CodeSigner(cpath, null);
105 CodeSigner cs = new CodeSigner(cpath, ts);
123 CodeSigner one = new CodeSigner(cpath, ts);
124 CodeSigner two = new CodeSigner(cpath, ts);
125 CodeSigner three = new CodeSigner(cpath, null);
153 assertSame(new CodeSigner(cpath, null).getSignerCertPath(), cpath);
166 assertNull(new CodeSigner(cpath, null).getTimestamp())
    [all...]
TimestampTest.java 53 private CertPath cpath = new MyCertPath(encoding); field in class:TimestampTest
63 new Timestamp(null, cpath);
75 Timestamp timestamp = new Timestamp(now, cpath);
77 assertEquals("not expected cert path", cpath, timestamp.getSignerCertPath());
90 Timestamp one = new Timestamp(now, cpath);
91 Timestamp two = new Timestamp(now, cpath);
99 Timestamp two1 = new Timestamp(new Date(9999), cpath);
111 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
121 Timestamp t = new Timestamp(now, cpath);
    [all...]
CodeSource2Test.java 84 CertPath cpath = TestCertUtils.genCertPath(3, 0); local
87 Timestamp ts = new Timestamp(now, cpath);
88 CodeSigner cs = new CodeSigner(cpath, ts);
CodeSourceTest.java 293 CertPath cpath = TestCertUtils.getCertPath(); local
294 Certificate[] certs = (Certificate[]) cpath.getCertificates().toArray();
295 CodeSigner[] signers = { new CodeSigner(cpath, null) };
  /external/webkit/WebCore/platform/android/
FileSystemAndroid.cpp 108 CString cpath = path.utf8(); local
110 DIR* dir = opendir(cpath.data());
121 sizeof(filePath), "%s/%s", cpath.data(), name)) {
  /dalvik/
run-core-tests.sh 58 cpath=$framework/core-tests.jar
77 -Xbootclasspath:$bpath -classpath $cpath $debug_opts \
  /dalvik/libcore/security/src/main/java/java/security/
CodeSource.java 250 CertPath cpath = makeCertPath(list); local
251 if (cpath != null) {
252 asigners.add(new CodeSigner(cpath, null));
262 CertPath cpath = makeCertPath(list); local
263 if (cpath != null) {
264 asigners.add(new CodeSigner(cpath, null));
  /external/dbus/dbus/
dbus-sysdeps-unix.c 2572 char *cpath; local
    [all...]

Completed in 341 milliseconds