Home
last modified time | relevance | path

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

12

/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.cc71 TempDir TempDir::Create() { in Create()
72 TempDir temp_dir; in Create()
79 TempDir::TempDir() = default;
81 TempDir::~TempDir() { in ~TempDir()
Dtemp_file_unittest.cc103 TEST(TempFileTest, TempDir) { in TEST() argument
106 TempDir td = TempDir::Create(); in TEST()
/external/autotest/site_utils/lxc/
Dzygote_unittest.py206 with lxc_utils.TempDir() as tmpdir:
244 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote0:
258 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote:
270 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote:
285 with lxc_utils.TempDir() as tmpdir, self.createZygote() as zygote:
Dcontainer_unittest.py243 with lxc_utils.TempDir() as tmpdir:
262 with lxc_utils.TempDir() as tmpdir, self.createContainer() as container:
274 with lxc_utils.TempDir() as tmpdir, self.createContainer() as container:
286 with lxc_utils.TempDir() as tmpdir, self.createContainer() as container:
Dlxc_config_unittest.py44 with lxc_utils.TempDir() as tmpdir:
75 with lxc_utils.TempDir() as tmpdir:
Dutils.py92 def TempDir(*args, **kwargs): function
Dzygote.py131 with lxc_utils.TempDir(dir=usr_local_path) as tmpdir:
/external/golang-protobuf/proto/testdata/
Dgolden_test.go76 run(t, "protoc", "--go_out="+os.TempDir(), "test.proto")
77 newFile := filepath.Join(os.TempDir(), "test.pb.go")
/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/perfetto/src/perfetto_cmd/
Drate_limiter_unittest.cc40 MockRateLimiter() : dir_(base::TempDir::Create()) { in MockRateLimiter()
68 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/libchrome/base/files/
Dscoped_temp_dir_unittest.cc49 TEST(ScopedTempDir, TempDir) { in TEST() argument
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest-filepath_test.cc495 TempDir() + GetCurrentExecutableName().string() + in SetUp()
517 std::string TempDir() const { in TempDir() function in testing::internal::__anon101ec7020111::DirectoryCreationTest
/external/protobuf/gtest/test/
Dgtest-filepath_test.cc507 TempDir().c_str(), GetCurrentExecutableName().c_str(), in SetUp()
529 String TempDir() const { in TempDir() function in testing::internal::__anon5ae3c7ea0111::DirectoryCreationTest
/external/libmojo/mojo/public/tools/bindings/generators/
Dmojom_java_generator.py399 def TempDir(): function
531 with TempDir() as temp_java_root:
/external/google-breakpad/src/testing/gtest/test/
Dgtest-filepath_test.cc513 TempDir().c_str(), GetCurrentExecutableName().c_str(), in SetUp()
535 String TempDir() const { in TempDir() function in testing::internal::__anon54fa5ce10111::DirectoryCreationTest
/external/skia/tools/
Dbisect_roll.go36 …workdir = flag.String("workdir", path.Join(os.TempDir(), "autoroll_bisect"), "Working di…
/external/llvm/tools/llvm-go/
Dllvm-go.go153 tmpgopath, err := ioutil.TempDir("", "gopath")
/external/skqp/tools/
Dbisect_roll.go36 …workdir = flag.String("workdir", path.Join(os.TempDir(), "autoroll_bisect"), "Working di…
/external/boringssl/src/util/
Drun_android_tests.go199 tmpDir, err := ioutil.TempDir("", "boringssl-android")
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPathV2.inc75 error_code TempDir(SmallVectorImpl<char> &result) {
360 if (error_code ec = TempDir(TDir)) return ec;
/external/google-breakpad/src/tools/mac/upload_system_symbols/
Dupload_system_symbols.go129 if p, err := ioutil.TempDir("", "upload_system_symbols"); err != nil {
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DPathV2.inc99 error_code TempDir(SmallVectorImpl<wchar_t> &result) {
541 if (error_code ec = TempDir(temp_dir)) return ec;
/external/llvm/lib/Support/Unix/
DPath.inc686 static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
690 int ConfName = TempDir ? _CS_DARWIN_USER_TEMP_DIR

12