HomeSort by relevance Sort by last modified time
    Searched refs:TempDir (Results 1 - 25 of 26) sorted by null

1 2

  /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;
TestHelpers.cpp 67 TempDir::TempDir() {
71 LOG_FATAL_IF(mName == nullptr, "could not allocate tempdir %s", mName);
74 TempDir::~TempDir() {
89 TempFile* TempDir::newTempFile() {
InputHub_test.cpp 97 auto tempDir = std::make_shared<TempDir>();
105 ASSERT_EQ(OK, mInputHub->registerDevicePath(tempDir->getName()));
107 // Create a new file in tempDir after 100ms.
113 tempFile.reset(tempDir->newTempFile());
129 auto tempDir = std::make_unique<TempDir>();
130 auto deviceFile = std::unique_ptr<TempFile>(tempDir->newTempFile());
144 ASSERT_EQ(OK, mInputHub->registerDevicePath(tempDir->getName()));
145 // Ensure that tempDir was scanned to find the device
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
client_generation_test.py 23 def TempDir():
46 with TempDir():
  /external/v8/build/
protoc_java.py 43 with build_utils.TempDir() as temp_dir:
  /external/v8/build/android/gyp/
aidl.py 29 with build_utils.TempDir() as temp_dir:
generate_resource_rewriter.py 83 with build_utils.TempDir() as temp_dir:
jar.py 81 with build_utils.TempDir() as temp_dir:
dex.py 106 with build_utils.TempDir() as classes_temp_dir:
jinja_template.py 51 with build_utils.TempDir() as temp_dir:
lint.py 80 with build_utils.TempDir() as temp_dir:
package_resources.py 264 with build_utils.TempDir() as temp_dir:
javac.py 124 with build_utils.TempDir() as temp_dir:
process_resources.py 346 with build_utils.TempDir() as temp_dir:
  /external/libchrome/base/files/
scoped_temp_dir_unittest.cc 49 TEST(ScopedTempDir, TempDir) {
51 // child of TempDir.
  /external/chromium-trace/catapult/third_party/vinn/bin/
update_v8 114 with TempDir() as v8_checkout_path:
177 class TempDir:
  /external/llvm/unittests/Support/
Path.cpp 355 SmallString<32> TempDir;
356 path::system_temp_directory(false, TempDir);
357 EXPECT_TRUE(!TempDir.empty());
358 TempDir.clear();
359 path::system_temp_directory(true, TempDir);
360 EXPECT_TRUE(!TempDir.empty());
378 SmallString<300> TempDir; \
379 path::system_temp_directory(true, TempDir); \
380 raw_os_ostream(std::cerr) << TempDir; \
    [all...]
  /external/skia/experimental/fiddle/
fiddler.go 76 // @param tempDir: where to place the compiled executable
77 func fiddler(skiaSrc string, inputReader io.Reader, output io.Writer, tempDir string) error {
78 binarypath := path.Join(tempDir, "fiddle")
134 tempDir, err := ioutil.TempDir("", "fiddle_")
139 err = os.RemoveAll(tempDir)
141 glog.Fatalf("os.RemoveAll(tempDir) failed: %v", err)
145 if err := fiddler(skiaSrc, os.Stdin, os.Stdout, tempDir); err != nil {
154 if err = fiddler(skiaSrc, inputFile, os.Stdout, tempDir); err != nil {
  /external/v8/build/android/incremental_install/
installer.py 134 with build_utils.TempDir() as temp_dir:
148 with build_utils.TempDir() as temp_dir:
  /external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc 513 TempDir().c_str(), GetCurrentExecutableName().c_str(),
535 String TempDir() const {
  /external/google-breakpad/src/tools/mac/upload_system_symbols/
upload_system_symbols.go 129 if p, err := ioutil.TempDir("", "upload_system_symbols"); err != nil {
  /external/gtest/test/
gtest-filepath_test.cc 495 TempDir() + GetCurrentExecutableName().string() +
517 std::string TempDir() const {
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 507 TempDir().c_str(), GetCurrentExecutableName().c_str(),
529 String TempDir() const {
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-filepath_test.cc 495 TempDir() + GetCurrentExecutableName().string() +
517 std::string TempDir() const {
  /ndk/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 495 TempDir() + GetCurrentExecutableName().string() +
517 std::string TempDir() const {

Completed in 490 milliseconds

1 2