Home
last modified time | relevance | path

Searched refs:TempDir (Results 1 – 25 of 64) sorted by relevance

123

/external/perfetto/include/perfetto/base/
Dtemp_file.h57 class TempDir {
59 static TempDir Create();
61 TempDir(TempDir&&) noexcept;
62 TempDir& operator=(TempDir&&);
63 ~TempDir();
68 TempDir();
69 TempDir(const TempDir&) = delete;
70 TempDir& operator=(const TempDir&) = delete;
/external/perfetto/src/base/
Dtemp_file.cc77 TempDir TempDir::Create() { in Create()
78 TempDir temp_dir; in Create()
85 TempDir::TempDir() = default;
87 TempDir::~TempDir() { in ~TempDir()
Dtemp_file_unittest.cc103 TEST(TempFileTest, TempDir) { in TEST() argument
106 TempDir td = TempDir::Create(); in TEST()
/external/python/apitools/apitools/gen/
Dgen_client_test.py47 with test_utils.TempDir() as tmp_dir_path:
64 with test_utils.TempDir() as tmp_dir_path:
88 with test_utils.TempDir() as tmp_dir_path:
104 with test_utils.TempDir() as tmp_dir_path:
120 with test_utils.TempDir() as tmp_dir_path:
135 with test_utils.TempDir() as tmp_dir_path:
Dtest_utils.py36 def TempDir(change_to=False): function
Dclient_generation_test.py47 with test_utils.TempDir(change_to=True):
/external/autotest/site_utils/lxc/
Dzygote_unittest.py207 with lxc_utils.TempDir() as tmpdir:
245 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote0:
259 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote:
271 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote:
286 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote:
Dlxc_config_unittest.py44 with lxc_utils.TempDir() as tmpdir:
75 with lxc_utils.TempDir() as tmpdir:
Dcontainer_unittest.py244 with lxc_utils.TempDir() as tmpdir:
263 with lxc_utils.TempDir() as tmpdir, self.createContainer() as container:
275 with lxc_utils.TempDir() as tmpdir, self.createContainer() as container:
287 with lxc_utils.TempDir() as tmpdir, self.createContainer() as container:
Dutils.py111 def TempDir(*args, **kwargs): function
/external/googletest/googletest/include/gtest/internal/custom/
DREADME.md11 * `GTEST_CUSTOM_TEMPDIR_FUNCTION_` - An override for `testing::TempDir()`. See
12 `testing::TempDir` for semantics and signature.
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/custom/
DREADME.md11 * `GTEST_CUSTOM_TEMPDIR_FUNCTION_` - An override for `testing::TempDir()`. See
12 `testing::TempDir` for semantics and signature.
/external/syzkaller/syz-hub/state/
Dstate_test.go16 dir, err := ioutil.TempDir("", "syz-hub-state-test")
41 dir, err := ioutil.TempDir("", "syz-hub-state-test")
/external/llvm/unittests/Support/
DPath.cpp356 SmallString<32> TempDir; in TEST() local
357 path::system_temp_directory(false, TempDir); in TEST()
358 EXPECT_TRUE(!TempDir.empty()); in TEST()
359 TempDir.clear(); in TEST()
360 path::system_temp_directory(true, TempDir); in TEST()
361 EXPECT_TRUE(!TempDir.empty()); in TEST()
379 SmallString<300> TempDir; \
380 path::system_temp_directory(true, TempDir); \
381 raw_os_ostream(std::cerr) << TempDir; \
/external/syzkaller/pkg/osutil/
Dfileutil_test.go19 tmp, err := ioutil.TempDir("", "syz")
/external/golang-protobuf/protoc-gen-go/
Dgolden_test.go33 workdir, err := ioutil.TempDir("", "proto-test")
225 workdir, err := ioutil.TempDir("", "proto-test")
/external/python/apitools/samples/
Duptodate_check_test.py45 with test_utils.TempDir() as tmp_dir_path:
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DPath.cpp380 SmallString<32> TempDir; in TEST() local
381 path::system_temp_directory(false, TempDir); in TEST()
382 EXPECT_TRUE(!TempDir.empty()); in TEST()
383 TempDir.clear(); in TEST()
384 path::system_temp_directory(true, TempDir); in TEST()
385 EXPECT_TRUE(!TempDir.empty()); in TEST()
403 SmallString<300> TempDir; \
404 path::system_temp_directory(true, TempDir); \
405 raw_os_ostream(std::cerr) << TempDir; \
/external/syzkaller/tools/syz-bisect/
Dbisect.go52 mgrcfg.Workdir, err = ioutil.TempDir("", "syz-bisect")
/external/libchrome/base/files/
Dscoped_temp_dir_unittest.cc49 TEST(ScopedTempDir, TempDir) { in TEST() argument
/external/perfetto/src/perfetto_cmd/
Drate_limiter_unittest.cc41 MockRateLimiter() : dir_(base::TempDir::Create()) { in MockRateLimiter()
69 base::TempDir dir_;
/external/llvm/lib/LTO/
DThinLTOCodeGenerator.cpp76 static void saveTempBitcode(const Module &TheModule, StringRef TempDir, in saveTempBitcode() argument
78 if (TempDir.empty()) in saveTempBitcode()
81 auto SaveTempPath = TempDir + llvm::utostr(count) + Suffix; in saveTempBitcode()
/external/autotest/venv/skylab_staging/
Dswarming.py135 with osutils.TempDir() as tempdir:
/external/syzkaller/pkg/build/
Dlinux.go81 tempDir, err := ioutil.TempDir("", "syz-build")
/external/perfetto/src/traced/probes/ps/
Dprocess_stats_data_source_unittest.cc291 auto fake_proc = base::TempDir::Create(); in TEST_F()
367 auto fake_proc = base::TempDir::Create(); in TEST_F()

123