Home
last modified time | relevance | path

Searched refs:cpath (Results 1 – 17 of 17) sorted by relevance

/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DCodeSignerTest.java39 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in CodeSignerTest
42 private Timestamp ts = new Timestamp(now, cpath);
60 new CodeSigner(cpath, null); in testCodeSigner_01()
68 CodeSigner one = new CodeSigner(cpath, ts); in testEqualsObject()
69 CodeSigner two = new CodeSigner(cpath, ts); in testEqualsObject()
70 CodeSigner three = new CodeSigner(cpath, null); in testEqualsObject()
92 assertSame(new CodeSigner(cpath, null).getSignerCertPath(), cpath); in testGetSignerCertPath()
99 assertNull(new CodeSigner(cpath, null).getTimestamp()); in testGetTimestamp()
100 assertSame(new CodeSigner(cpath, ts).getTimestamp(), ts); in testGetTimestamp()
107 new CodeSigner(cpath, null).toString(); in testToString()
[all …]
DTimestampTest.java43 private CertPath cpath = new MyCertPath(encoding); field in TimestampTest
47 new Timestamp(null, cpath); in testTimestamp()
64 Timestamp one = new Timestamp(now, cpath); in testEqualsObject()
65 Timestamp two = new Timestamp(now, cpath); in testEqualsObject()
73 Timestamp two1 = new Timestamp(new Date(9999), cpath); in testEqualsObject()
79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath); in testGetSignerCertPath()
83 Timestamp t = new Timestamp(now, cpath); in testGetTimestamp()
92 new Timestamp(now, cpath).toString(); in testToString()
/external/toybox/toys/other/
Dacpi.c29 char *cpath;
55 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, NULL)), O_RDONLY))) { in acpi_callback()
81 free(TT.cpath); in acpi_callback()
94 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, NULL)), O_RDONLY))) { in temp_callback()
103 free(TT.cpath); in temp_callback()
119 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, &dfd)), O_RDONLY))) { in cool_callback()
120 TT.cpath = strcat(TT.cpath, "/type"); in cool_callback()
121 if (readfile(TT.cpath, toybuf, 256) && !errno) { in cool_callback()
131 free(TT.cpath); in cool_callback()
/external/skia/src/c/
Dsk_surface.cpp165 static const SkPath& AsPath(const sk_path_t& cpath) { in AsPath() argument
166 return reinterpret_cast<const SkPath&>(cpath); in AsPath()
169 static SkPath* as_path(sk_path_t* cpath) { in as_path() argument
170 return reinterpret_cast<SkPath*>(cpath); in as_path()
263 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); } in sk_path_delete() argument
265 void sk_path_move_to(sk_path_t* cpath, float x, float y) { in sk_path_move_to() argument
266 as_path(cpath)->moveTo(x, y); in sk_path_move_to()
269 void sk_path_line_to(sk_path_t* cpath, float x, float y) { in sk_path_line_to() argument
270 as_path(cpath)->lineTo(x, y); in sk_path_line_to()
273 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) { in sk_path_quad_to() argument
[all …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
DCodeSigner_ImplTest.java38 private CertPath cpath = TestCertUtils.genCertPath(3, 0); field in CodeSigner_ImplTest
41 private Timestamp ts = new Timestamp(now, cpath);
47 assertTrue(new CodeSigner(cpath, ts).hashCode() == (cpath.hashCode() ^ ts in testHashCode()
49 assertTrue(new CodeSigner(cpath, null).hashCode() == cpath.hashCode()); in testHashCode()
DTimestamp_ImplTest.java43 private CertPath cpath = new MyCertPath(encoding); field in Timestamp_ImplTest
46 assertTrue(new Timestamp(now, cpath).hashCode() == (now.hashCode() ^ cpath in testHashCode()
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
DCodeSignerTest.java43 CertPath cpath = TestCertUtils.getCertPath(); in getData() local
44 Timestamp ts = new Timestamp(new Date(1146633204309L), cpath); in getData()
45 return new Object[] { new CodeSigner(cpath, ts), in getData()
46 new CodeSigner(cpath, null) }; in getData()
DTimestampTest.java42 CertPath cpath = TestCertUtils.getCertPath(); in getData() local
43 return new Object[] { new Timestamp(new Date(1146633251341L), cpath) }; in getData()
/external/opencv/cvaux/src/
Dcvcorrespond.cpp76 uchar cpath; in icvDynamicCorrespond() local
208 cpath = 1; in icvDynamicCorrespond()
213 cpath = 3; in icvDynamicCorrespond()
223 cpath = 2; in icvDynamicCorrespond()
228 cpath = 3; in icvDynamicCorrespond()
234 matchEdges[i + j * row_size] = cpath; in icvDynamicCorrespond()
/external/dbus/dbus/
Ddbus-sysdeps.c231 char *cpath; in _dbus_split_paths_and_append() local
271 if (!_dbus_string_copy_data(&path, &cpath)) in _dbus_split_paths_and_append()
277 if (!_dbus_list_append (dir_list, cpath)) in _dbus_split_paths_and_append()
280 dbus_free (cpath); in _dbus_split_paths_and_append()
313 if (!_dbus_string_copy_data(&path, &cpath)) in _dbus_split_paths_and_append()
319 if (!_dbus_list_append (dir_list, cpath)) in _dbus_split_paths_and_append()
322 dbus_free (cpath); in _dbus_split_paths_and_append()
/external/dbus/bus/
Dconfig-parser-trivial.c241 char *cpath; in bus_config_parser_content() local
244 if (!_dbus_string_copy_data(&content_sane, &cpath)) in bus_config_parser_content()
251 if (!_dbus_list_append (&parser->service_dirs, cpath)) in bus_config_parser_content()
253 dbus_free (cpath); in bus_config_parser_content()
/external/toybox/generated/
Dglobals.h128 char *cpath; member
/external/llvm/bindings/go/llvm/
Dir.go1774 cpath := C.CString(path)
1775 defer C.free(unsafe.Pointer(cpath))
1776 fail := C.LLVMCreateMemoryBufferWithContentsOfFile(cpath, &b.C, &cmsg)
/external/guice/extensions/struts2/lib/
Djsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/guice/extensions/persist/lib/
Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/ ...