HomeSort by relevance Sort by last modified time
    Searched refs:temp_path (Results 1 - 24 of 24) sorted by null

  /external/google-breakpad/src/client/windows/unittests/
exception_handler_nesting_test.cc 146 wchar_t temp_path[MAX_PATH] = { '\0' }; local
147 GetTempPath(MAX_PATH, temp_path);
149 ASSERT_TRUE(DoesPathExist(temp_path));
151 temp_path,
256 wchar_t temp_path[MAX_PATH] = { '\0' }; local
257 GetTempPath(MAX_PATH, temp_path);
259 ASSERT_TRUE(DoesPathExist(temp_path));
261 temp_path,
280 wchar_t temp_path[MAX_PATH] = { '\0' }; local
281 GetTempPath(MAX_PATH, temp_path);
305 wchar_t temp_path[MAX_PATH] = { '\\0' }; local
    [all...]
exception_handler_death_test.cc 77 TCHAR temp_path[MAX_PATH] = { '\0' }; local
81 GetTempPath(MAX_PATH, temp_path);
91 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide);
exception_handler_test.cc 115 TCHAR temp_path[MAX_PATH] = { '\0' }; local
119 GetTempPath(MAX_PATH, temp_path);
129 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide);
  /external/libcxx/utils/libcxx/android/
executors.py 20 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
21 temp_path = temp_path.strip()
24 return temp_path
  /external/webrtc/webrtc/test/testsupport/
fileutils.cc 78 std::string temp_path = path; local
82 temp_path = path.substr(working_dir.length() + 1);
88 std::replace(temp_path.begin(), temp_path.end(), '/', '\\');
92 temp_path = temp_path.substr(0, temp_path.find_last_of(kPathDelimiter));
93 strncpy(relative_dir_path, temp_path.c_str(), FILENAME_MAX);
  /external/perf_data_converter/src/quipper/
scoped_temp_path_test.cc 118 ScopedTempDir temp_path; local
119 path = temp_path.path();
135 ScopedTempDir temp_path(prefix);
136 path = temp_path.path();
167 ScopedTempDir temp_path; local
168 path = temp_path.path();
  /system/core/adb/
adb_utils.cpp 294 WCHAR temp_path[MAX_PATH]; local
297 DWORD nchars = GetTempPathW(arraysize(temp_path), temp_path);
298 if (nchars >= arraysize(temp_path) || nchars == 0) {
305 if (!android::base::WideToUTF8(temp_path, &temp_path_utf8)) {
  /external/google-breakpad/src/tools/windows/symupload/
symupload.cc 123 wchar_t temp_path[_MAX_PATH]; local
124 if (GetTempPath(_MAX_PATH, temp_path) == 0) {
129 if (GetTempFileName(temp_path, L"sym", 0, temp_filename) == 0) {
  /external/python/cpython3/Lib/test/
test_support.py 114 with support.temp_dir(path) as temp_path:
115 self.assertEqual(temp_path, path)
123 with support.temp_dir() as temp_path:
124 self.assertTrue(os.path.isdir(temp_path))
125 self.assertFalse(os.path.isdir(temp_path))
130 with support.temp_dir(path) as temp_path:
150 with support.temp_dir(path, quiet=True) as temp_path:
151 self.assertEqual(path, temp_path)
166 with support.temp_dir() as temp_path:
167 with support.change_cwd(temp_path) as new_cwd
    [all...]
test_winconsoleio.py 113 temp_path = tempfile.mkdtemp()
114 self.addCleanup(support.rmtree, temp_path)
116 conout_path = os.path.join(temp_path, 'CONOUT$')
  /external/libcxx/utils/libcxx/test/
executor.py 174 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
175 temp_path = temp_path.strip()
178 return temp_path
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
executor.py 174 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
175 temp_path = temp_path.strip()
178 return temp_path
  /external/libchrome/base/process/
process_metrics_unittest.cc 536 const FilePath temp_path = command_line->GetSwitchValuePath(kTempDirFlag); local
537 CHECK(DirectoryExists(temp_path));
542 CHECK(SignalEvent(temp_path, kSignalClosed));
558 const FilePath temp_path = temp_dir.GetPath(); local
560 child_command_line.AppendSwitchPath(kTempDirFlag, temp_path);
564 WaitForEvent(temp_path, kSignalClosed);
  /external/autotest/server/cros/
debugd_dev_tools.py 287 temp_path = self._get_temp_path(path)
288 self._host.run('mkdir -p "%s"' % os.path.dirname(temp_path))
289 self._host.run('cp -r "%s" "%s"' % (path, temp_path),
  /external/webrtc/webrtc/base/
win32regkey_unittest.cc 567 wchar_t temp_path[MAX_PATH] = {0}; local
568 EXPECT_LT(::GetTempPath(arraysize(temp_path), temp_path),
569 static_cast<DWORD>(arraysize(temp_path)));
571 EXPECT_NE(::GetTempFileName(temp_path, L"rkut_",
  /external/e2fsprogs/misc/
fuse2fs.c 913 char *temp_path = strdup(path); local
924 if (!temp_path) {
928 node_name = strrchr(temp_path, '/');
943 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path,
1030 free(temp_path);
1040 char *temp_path = strdup(path); local
1052 if (!temp_path) {
1056 node_name = strrchr(temp_path, '/');
1071 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path,
1113 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path,
1427 char *temp_path = strdup(dest); local
1772 char *temp_path = strdup(dest); local
2838 char *temp_path = strdup(path); local
    [all...]
  /external/autotest/client/cros/
cros_disks.py 597 def _remove_temp_path(self, temp_path):
599 if temp_path:
601 path = temp_path.name
602 temp_path.clean()
  /external/ply/ply/ply/
cpp.py 166 self.temp_path = []
763 path = self.path + [""] + self.temp_path
766 path = self.temp_path + [""] + self.path
776 self.temp_path.insert(0,dname)
780 del self.temp_path[0]
    [all...]
  /system/core/init/
perfboot.py 111 for temp_path in self._temp_paths:
112 temp = int(self._device.shell(['cat', temp_path])[0].rstrip())
  /external/autotest/client/common_lib/
packages.py     [all...]
base_job_unittest.py 350 temp_path = jd.path
352 self.assert_(not os.path.isdir(temp_path))
    [all...]
  /system/core/fastboot/
fastboot.cpp 525 char temp_path[PATH_MAX]; local
526 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path);
527 if (nchars == 0 || nchars >= sizeof(temp_path)) {
532 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) {
    [all...]
  /external/autotest/server/cros/faft/
firmware_test.py     [all...]
  /external/python/cpython3/Lib/test/support/
__init__.py     [all...]

Completed in 937 milliseconds