Searched defs:cpath (Results 1 - 9 of 9) sorted by relevance

/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DTimestampTest.java43 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();
H A DCodeSignerTest.java38 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, t
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DCodeSigner_ImplTest.java38 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());
H A DTimestamp_ImplTest.java44 private CertPath cpath = new MyCertPath(encoding); field in class:Timestamp_ImplTest
47 assertTrue(new Timestamp(now, cpath).hashCode() == (now.hashCode() ^ cpath
/external/webkit/Source/WebCore/platform/efl/
H A DFileSystemEfl.cpp114 CString cpath = path.utf8(); local
121 if (cpath.length() + NAME_MAX >= sizeof(filePath))
124 memcpy(filePath, cpath.data(), cpath.length());
125 fileName = filePath + cpath.length();
126 if (cpath.length() > 0 && filePath[cpath.length() - 1] != '/') {
132 dir = opendir(cpath.data());
/external/dbus/bus/
H A Dconfig-parser-trivial.c241 char *cpath; local
244 if (!_dbus_string_copy_data(&content_sane, &cpath))
251 if (!_dbus_list_append (&parser->service_dirs, cpath))
253 dbus_free (cpath);
/external/opencv/cvaux/src/
H A Dcvcorrespond.cpp76 uchar cpath; local
208 cpath = 1;
213 cpath = 3;
223 cpath = 2;
228 cpath = 3;
234 matchEdges[i + j * row_size] = cpath;
/external/webkit/Source/WebCore/platform/posix/
H A DFileSystemPOSIX.cpp238 CString cpath = path.utf8(); local
240 DIR* dir = opendir(cpath.data());
250 if (static_cast<int>(sizeof(filePath) - 1) < snprintf(filePath, sizeof(filePath), "%s/%s", cpath.data(), name))
/external/dbus/dbus/
H A Ddbus-sysdeps.c267 char *cpath; local
307 if (!_dbus_string_copy_data(&path, &cpath))
313 if (!_dbus_list_append (dir_list, cpath))
316 dbus_free (cpath);
349 if (!_dbus_string_copy_data(&path, &cpath))
355 if (!_dbus_list_append (dir_list, cpath))
358 dbus_free (cpath);

Completed in 474 milliseconds