Home
last modified time | relevance | path

Searched refs:tempdir (Results 1 – 6 of 6) sorted by relevance

/system/update_engine/
Domaha_response_handler_action_unittest.cc444 base::ScopedTempDir tempdir; in TEST_F() local
445 ASSERT_TRUE(tempdir.CreateUniqueTempDir()); in TEST_F()
449 params.set_root(tempdir.GetPath().value()); in TEST_F()
477 base::ScopedTempDir tempdir; in TEST_F() local
478 ASSERT_TRUE(tempdir.CreateUniqueTempDir()); in TEST_F()
482 params.set_root(tempdir.GetPath().value()); in TEST_F()
511 base::ScopedTempDir tempdir; in TEST_F() local
512 ASSERT_TRUE(tempdir.CreateUniqueTempDir()); in TEST_F()
516 params.set_root(tempdir.GetPath().value()); in TEST_F()
545 base::ScopedTempDir tempdir; in TEST_F() local
[all …]
Domaha_request_action_unittest.cc2148 base::ScopedTempDir tempdir; in TEST_F() local
2149 ASSERT_TRUE(tempdir.CreateUniqueTempDir()); in TEST_F()
2151 request_params_.set_root(tempdir.GetPath().value()); in TEST_F()
2178 base::ScopedTempDir tempdir; in TEST_F() local
2179 ASSERT_TRUE(tempdir.CreateUniqueTempDir()); in TEST_F()
2181 request_params_.set_root(tempdir.GetPath().value()); in TEST_F()
/system/gsid/tests/
DDSUEndtoEndTest.java91 File tempdir = ZipUtil2.extractZipToTemp(otaTools, "otatools"); in testDSU() local
95 String lpunpackPath = new File(tempdir, LPUNPACK_PATH).getAbsolutePath(); in testDSU()
114 simg2imgPath = new File(tempdir, SIMG2IMG_PATH).getAbsolutePath(); in testDSU()
/system/update_engine/common/
Dsubprocess_unittest.cc229 base::ScopedTempDir tempdir; in TEST_F() local
230 ASSERT_TRUE(tempdir.CreateUniqueTempDir()); in TEST_F()
231 string fifo_path = tempdir.GetPath().Append("fifo").value(); in TEST_F()
/system/core/fs_mgr/tests/
Dadb-remount-test.sh1310 tempdir="`mktemp -d`"
1312 rm -rf ${tempdir}
1314 adb pull /system/lib/bootstrap/libc.so ${tempdir} >/dev/null ||
1317 echo ${garbage} >> ${tempdir}/libc.so
1318 adb push ${tempdir}/libc.so /system/lib/bootstrap/libc.so >/dev/null ||
1320 adb pull /system/lib/bootstrap/libc.so ${tempdir}/libc.so.fromdevice >/dev/null ||
1322 diff ${tempdir}/libc.so ${tempdir}/libc.so.fromdevice > /dev/null ||
1392 adb pull /system/lib/bootstrap/libc.so ${tempdir}/libc.so.fromdevice >/dev/null ||
1394 diff ${tempdir}/libc.so ${tempdir}/libc.so.fromdevice > /dev/null || die "libc.so differ"
1395 rm -rf ${tempdir}
/system/core/fs_mgr/libfiemap/
Dfiemap_writer_test.cpp520 std::string tempdir = root_dir + "/XXXXXX"s; in main() local
521 if (!mkdtemp(tempdir.data())) { in main()
525 if (!android::base::Realpath(tempdir, &gTestDir)) { in main()
526 cerr << "unable to find realpath for " << tempdir; in main()