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

  /external/libchrome/base/files/
scoped_temp_dir_unittest.cc 58 FilePath tmp_dir; local
59 EXPECT_TRUE(base::GetTempDir(&tmp_dir));
60 EXPECT_TRUE(test_path.value().find(tmp_dir.value()) != std::string::npos);
  /external/ltp/lib/tests/
tst_tmpdir_test.c 51 char *tmp_dir; local
58 tmp_dir = tst_get_tmpdir();
61 if (strcmp(tmp_dir, changed_dir) == 0 &&
62 strcmp(tmp_dir, start_dir) != 0) {
71 if (chdir(tmp_dir) == -1 && errno == ENOENT) {
  /external/libchrome/base/
os_compat_android_unittest.cc 19 FilePath tmp_dir; local
20 EXPECT_TRUE(base::GetTempDir(&tmp_dir));
23 FilePath sub_dir = tmp_dir.Append("XX");
34 FilePath sub_dir2 = tmp_dir.Append("XXXXXX");
  /external/ltp/testcases/kernel/syscalls/readlink/
readlink04.c 109 char *tmp_dir = NULL; local
119 if ((tmp_dir = getcwd(tmp_dir, 0)) == NULL)
126 SAFE_CHOWN(cleanup, tmp_dir, pwent->pw_uid, pwent->pw_gid);
128 if (chmod(tmp_dir, 0711) != 0)
129 tst_brkm(TBROK|TERRNO, cleanup, "chmod(%s) failed", tmp_dir);
  /external/skia/infra/bots/
utils.py 39 class tmp_dir(object): class in inherits:object
  /external/skqp/infra/bots/
utils.py 39 class tmp_dir(object): class in inherits:object
  /prebuilts/devtools/tools/
android.bat 49 set tmp_dir=%TEMP%\temp-android-tool variable
50 xcopy %swt_path% %tmp_dir%\%swt_path% /I /E /C /G /R /Y /Q > nul
51 copy /B /D /Y lib\common.jar %tmp_dir%\lib\ > nul
52 copy /B /D /Y lib\commons-codec* %tmp_dir%\lib\ > nul
53 copy /B /D /Y lib\commons-compress* %tmp_dir%\lib\ > nul
54 copy /B /D /Y lib\commons-logging* %tmp_dir%\lib\ > nul
55 copy /B /D /Y lib\dvlib.jar %tmp_dir%\lib\ > nul
56 copy /B /D /Y lib\guava* %tmp_dir%\lib\ > nul
57 copy /B /D /Y lib\httpclient* %tmp_dir%\lib\ > nul
58 copy /B /D /Y lib\httpcore* %tmp_dir%\lib\ > nul
    [all...]
  /system/timezone/
update-tzdata.py 49 tmp_dir = tempfile.mkdtemp('-tzdata') variable
80 zone_compactor_setup_file = '%s/setup' % tmp_dir
91 icu_build_dir = '%s/icu' % tmp_dir
127 zic_build_dir = '%s/zic' % tmp_dir
149 zic_output_dir = '%s/data' % tmp_dir
236 iana_data_dir = '%s/iana_data' % tmp_dir
  /bionic/linker/tests/
linker_config_test.cpp 126 TemporaryDir tmp_dir; local
128 std::string executable_path = std::string(tmp_dir.path) + "/some-binary";
129 std::string version_file = std::string(tmp_dir.path) + "/.version";
233 TemporaryDir tmp_dir; local
235 std::string executable_path = std::string(tmp_dir.path) + "/some-binary";
  /external/skia/infra/bots/recipe_modules/flavor/
default_flavor.py 26 tmp_dir):
33 self._tmp_dir = tmp_dir
62 def tmp_dir(self): member in class:DeviceDirs
155 tmp_dir=self.m.vars.tmp_dir)
  /external/skqp/infra/bots/recipe_modules/flavor/
default_flavor.py 26 tmp_dir):
33 self._tmp_dir = tmp_dir
62 def tmp_dir(self): member in class:DeviceDirs
155 tmp_dir=self.m.vars.tmp_dir)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_libc_test.cc 65 char tmp_dir[MAX_PATH]; local
66 if (!::GetTempPathA(MAX_PATH, tmp_dir))
70 if (!::GetTempFileNameA(tmp_dir, prefix, 0, tmp_path))
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
parse_flags_from_env_test.cc 101 const char* tmp_dir = nullptr; local
102 for (int i = 0; i != TF_ARRAYSIZE(kTempVars) && tmp_dir == nullptr; i++) {
103 tmp_dir = getenv(kTempVars[i]);
105 if (tmp_dir == nullptr) {
106 tmp_dir = kTempDir;
109 tmp_dir, getpid());
  /external/tensorflow/tensorflow/core/kernels/
debug_ops_test.cc 74 const string tmp_dir = testing::TmpDir(); local
79 const string dump_root = strings::StrCat(tmp_dir, "_", i);
  /system/extras/simpleperf/
gtest_main.cpp 204 std::unique_ptr<ScopedTempDir> tmp_dir; local
208 tmp_dir.reset(new ScopedTempDir);
209 testdata_dir = std::string(tmp_dir->path()) + "/";
  /external/toybox/toys/pending/
bootchartd.c 208 static void stop_logging(char *tmp_dir, char *prog)
246 if (tmp_dir) {
252 rmdir(tmp_dir);
290 char *tmp_dir = create_tmp_dir(); local
297 stop_logging(tmp_dir, bchartd_opt == 1 ? toys.optargs[1] : NULL);
  /art/dexlayout/
dexlayout_test.cc 294 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1); local
298 { "-w", tmp_dir, "-o", tmp_name, dex_file };
305 { "/usr/bin/unzip", dex_file, "classes.dex", "-d", tmp_dir};
310 { "/usr/bin/diff", tmp_dir + "classes.dex" , tmp_dir + dex_file_name };
314 if (!UnlinkFile(tmp_dir + "classes.dex")) {
317 if (!UnlinkFile(tmp_dir + dex_file_name)) {
392 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1); local
395 std::string dex_file = tmp_dir + "classes.dex";
397 std::string profile_file = tmp_dir + "primary.prof"
421 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1); local
485 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1); local
729 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1); local
767 std::string tmp_dir = tmp_name.substr(0, tmp_last_slash + 1); local
    [all...]
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.23.0/
google-api-java-client-min-repackaged-1.23.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 885 milliseconds