HomeSort by relevance Sort by last modified time
    Searched defs:TempDir (Results 1 - 20 of 20) sorted by null

  /prebuilts/go/darwin-x86/src/io/ioutil/
tempfile.go 42 // for temporary files (see os.TempDir).
49 dir = os.TempDir()
69 // TempDir creates a new temporary directory in the directory dir
71 // new directory. If dir is the empty string, TempDir uses the
72 // default directory for temporary files (see os.TempDir).
73 // Multiple programs calling TempDir simultaneously
76 func TempDir(dir, prefix string) (name string, err error) {
78 dir = os.TempDir()
  /prebuilts/go/linux-x86/src/io/ioutil/
tempfile.go 42 // for temporary files (see os.TempDir).
49 dir = os.TempDir()
69 // TempDir creates a new temporary directory in the directory dir
71 // new directory. If dir is the empty string, TempDir uses the
72 // default directory for temporary files (see os.TempDir).
73 // Multiple programs calling TempDir simultaneously
76 func TempDir(dir, prefix string) (name string, err error) {
78 dir = os.TempDir()
  /hardware/libhardware/tests/input/evdev/
TestHelpers.h 64 class TempDir {
66 TempDir();
67 ~TempDir();
70 TempDir(const TempDir&) = delete;
71 TempDir& operator=(const TempDir&) = delete;
  /external/autotest/site_utils/lxc/
lxc_config_unittest.py 38 with TempDir() as tmpdir:
69 with TempDir() as tmpdir:
166 def TempDir():
  /external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc 513 TempDir().c_str(), GetCurrentExecutableName().c_str(),
535 String TempDir() const {
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 507 TempDir().c_str(), GetCurrentExecutableName().c_str(),
529 String TempDir() const {
  /external/r8/tools/
utils.py 64 class TempDir(object):
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-filepath_test.cc 495 TempDir() + GetCurrentExecutableName().string() +
517 std::string TempDir() const {
  /prebuilts/go/darwin-x86/src/os/
file_unix.go 264 // TempDir returns the default directory to use for temporary files.
265 func TempDir() string {
file_plan9.go 471 // TempDir returns the default directory to use for temporary files.
472 func TempDir() string {
file_windows.go 486 // TempDir returns the default directory to use for temporary files.
487 func TempDir() string {
  /prebuilts/go/linux-x86/src/os/
file_unix.go 264 // TempDir returns the default directory to use for temporary files.
265 func TempDir() string {
file_plan9.go 471 // TempDir returns the default directory to use for temporary files.
472 func TempDir() string {
file_windows.go 486 // TempDir returns the default directory to use for temporary files.
487 func TempDir() string {
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 495 TempDir() + GetCurrentExecutableName().string() +
517 std::string TempDir() const {
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 495 TempDir() + GetCurrentExecutableName().string() +
517 std::string TempDir() const {
  /build/soong/ui/build/
config.go 275 func (c *configImpl) TempDir() string {
  /external/libmojo/build/android/gyp/util/
build_utils.py 36 def TempDir():
  /external/libmojo/mojo/public/tools/bindings/generators/
mojom_java_generator.py 393 def TempDir():
533 with TempDir() as temp_java_root:
  /external/llvm/unittests/Support/
Path.cpp 356 SmallString<32> TempDir;
357 path::system_temp_directory(false, TempDir);
358 EXPECT_TRUE(!TempDir.empty());
359 TempDir.clear();
360 path::system_temp_directory(true, TempDir);
361 EXPECT_TRUE(!TempDir.empty());
379 SmallString<300> TempDir; \
380 path::system_temp_directory(true, TempDir); \
381 raw_os_ostream(std::cerr) << TempDir; \
    [all...]

Completed in 728 milliseconds