/system/core/adb/sysdeps/ |
D | stat_test.cpp | 26 TemporaryDir td; in TEST() local 30 ASSERT_EQ(0, stat(td.path, &st)); in TEST() 34 ASSERT_EQ(0, stat((std::string(td.path) + '/').c_str(), &st)); in TEST() 38 ASSERT_EQ(0, stat((std::string(td.path) + '\\').c_str(), &st)); in TEST() 42 std::string nonexistent_path = std::string(td.path) + "/nonexistent"; in TEST()
|
/system/core/base/ |
D | file_test.cpp | 128 TemporaryDir td; in TEST() local 129 ASSERT_FALSE(android::base::RemoveFileIfExists(td.path)); in TEST() 130 ASSERT_FALSE(android::base::RemoveFileIfExists(td.path, &err)); in TEST() 153 TemporaryDir td; in TEST() local 154 TemporaryFile tf(td.path); in TEST() 159 ASSERT_TRUE(chmod(td.path, S_IRUSR | S_IWUSR) == 0); in TEST() 163 ASSERT_TRUE(chmod(td.path, S_IRWXU) == 0); in TEST() 179 TemporaryDir td; in TEST() local 180 std::string min_path{std::string(td.path) + "/" + "min"}; in TEST() 181 std::string max_path{std::string(td.path) + "/" + "max"}; in TEST() [all …]
|
D | utf8_test.cpp | 454 TemporaryDir td; in TEST() local 457 std::string utf8 = td.path; in TEST()
|
/system/netd/tests/benchmarks/ |
D | README.md | 17 <td>Mean wall-clock time taken for each iteration of the function under test to complete. This 21 the semantics are roughly the same. See connect_benchmark.cpp for details.</td> 25 <td>Mean time spent in the current thread during each iteration of the function under test. This 29 client, these timings are not relevant and should be ignored for most purposes.</td> 33 <td>The number of runs of the test function that were executed, across all threads, in order for 38 benchmarks and also somewhat proportional to the number of threads used.</td> 42 <td>Field that the benchmark can fill with an arbitrary string. 50 things are.</td> 68 td,th {
|
/system/media/camera/docs/ |
D | html.mako | 42 td,th { border: 1px solid; border-color: #aaaaaa; padding-left: 0.5em; padding-right: 0.5em } 51 td { font-size: 0.9em; } 215 <tr><td colspan="7" id="section_${section.name}" class="section">${section.name}</td></tr> 218 <tr class="description"><td>${section.description}</td></tr> 222 <tr><td colspan="7" class="kind">${kind.name}</td></tr> 254 <td class="entry_name 260 </td> 261 <td class="entry_type"> 325 </td> <!-- entry_type --> 327 <td class="entry_description"> [all …]
|
/system/netd/tests/ |
D | binder_test.cpp | 317 const auto& td = kTestData[i]; in TEST_F() local 322 status = mNetd->ipSecAddTunnelInterface(td.deviceName, td.localAddress, td.remoteAddress, in TEST_F() 323 td.iKey, td.oKey, td.ifId); in TEST_F() 324 EXPECT_TRUE(status.isOk()) << td.family << status.exceptionMessage(); in TEST_F() 327 EXPECT_NE(0U, if_nametoindex(td.deviceName.c_str())); in TEST_F() 330 status = mNetd->ipSecUpdateTunnelInterface(td.deviceName, td.localAddress, td.remoteAddress, in TEST_F() 331 td.iKey, td.oKey, td.ifId); in TEST_F() 332 EXPECT_TRUE(status.isOk()) << td.family << status.exceptionMessage(); in TEST_F() 335 status = mNetd->ipSecRemoveTunnelInterface(td.deviceName); in TEST_F() 336 EXPECT_TRUE(status.isOk()) << td.family << status.exceptionMessage(); in TEST_F() [all …]
|
/system/core/adb/ |
D | bugreport_test.cpp | 338 TemporaryDir td; in TEST_F() local 340 android::base::StringPrintf("%s%cda_bugreport.zip", td.path, OS_PATH_SEPARATOR); in TEST_F() 350 const char* args[] = {"bugreport", td.path}; in TEST_F() 371 TemporaryDir td; in TEST_F() local 373 android::base::StringPrintf("%s%cda_bugreport.zip", td.path, OS_PATH_SEPARATOR); in TEST_F() 383 const char* args[] = {"bugreport", td.path}; in TEST_F()
|
/system/netd/resolv/ |
D | dnsresolver_binder_test.cpp | 255 const auto& td = kTlsTestData[i]; in TEST_F() local 258 for (const auto& fingerprint : td.tlsFingerprints) { in TEST_F() 263 test_domains, td.tlsName, td.servers, fingerprints); in TEST_F() 266 if (td.expectedReturnCode == 0) { in TEST_F() 273 EXPECT_EQ(td.expectedReturnCode, status.serviceSpecificErrorCode()); in TEST_F()
|
D | resolver_test.cpp | 1902 for (auto& td : kTestData) { in TEST_F() local 1903 SCOPED_TRACE(td.dname); in TEST_F() 1904 td.fd = resNetworkQuery(TEST_NETID, td.dname, ns_c_in, td.queryType, 0); in TEST_F() 1905 EXPECT_TRUE(td.fd != -1); in TEST_F() 1909 for (const auto& td : kTestData) { in TEST_F() local 1912 SCOPED_TRACE(td.dname); in TEST_F() 1913 int res = getAsyncResponse(td.fd, &rcode, buf, MAXPACKET); in TEST_F() 1915 EXPECT_EQ(rcode, td.expectRcode); in TEST_F() 2010 auto& td = kTestData[i]; in TEST_F() local 2011 SCOPED_TRACE(td.cmd); in TEST_F() [all …]
|
/system/core/libbacktrace/ |
D | backtrace_test.cpp | 1227 TemporaryDir td; in TEST_F() local 1229 ASSERT_NO_FATAL_FAILURE(CopySharedLibrary(td.path, &tmp_so_name)); in TEST_F() 1269 TemporaryDir td; in TEST_F() local 1271 ASSERT_NO_FATAL_FAILURE(CopySharedLibrary(td.path, &tmp_so_name)); in TEST_F() 1408 TemporaryDir td; in TEST_F() local 1410 ASSERT_NO_FATAL_FAILURE(CopySharedLibrary(td.path, &tmp_so_name)); in TEST_F() 1425 TemporaryDir td; in TEST_F() local 1427 ASSERT_NO_FATAL_FAILURE(CopySharedLibrary(td.path, &tmp_so_name)); in TEST_F()
|
/system/chre/build/sys_support/qcom/ |
D | uimage.lcs.toolv80 | 55 *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
|
/system/timezone/input_data/android/ |
D | countryzones.txt | 2969 isoCode:"td"
|