HomeSort by relevance Sort by last modified time
    Searched refs:temp_path (Results 1 - 23 of 23) 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
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /system/core/adb/client/
main.cpp 45 WCHAR temp_path[MAX_PATH]; local
48 DWORD nchars = GetTempPathW(arraysize(temp_path), temp_path);
49 if (nchars >= arraysize(temp_path) || nchars == 0) {
56 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/libchrome/base/process/
process_metrics_unittest.cc 472 const FilePath temp_path = command_line->GetSwitchValuePath(kTempDirFlag); local
473 CHECK(DirectoryExists(temp_path));
478 CHECK(SignalEvent(temp_path, kSignalClosed));
491 const FilePath temp_path = temp_dir.path(); local
493 child_command_line.AppendSwitchPath(kTempDirFlag, temp_path);
497 WaitForEvent(temp_path, kSignalClosed);
  /external/libcxx/utils/libcxx/test/
executor.py 199 temp_path, err, exitCode = self._execute_command_remote([cmd])
200 temp_path = temp_path.strip()
203 return temp_path
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
executor.py 168 temp_path, err, exitCode = self._execute_command_remote([cmd])
169 temp_path = temp_path.strip()
172 return temp_path
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/test/
executor.py 177 temp_path, err, exitCode = self._execute_command_remote([cmd])
178 temp_path = temp_path.strip()
181 return temp_path
  /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/chromium-trace/catapult/telemetry/telemetry/value/
trace_unittest.py 133 temp_path = os.path.join(tempdir, 'test.json')
139 trace_files = html2trace.CopyTraceDataFromHTMLFilePath(f, 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 555 def _remove_temp_path(self, temp_path):
557 if temp_path:
559 path = temp_path.name
560 temp_path.clean()
  /external/autotest/scheduler/
drone_utility.py 292 temp_path = os.path.join(temp_dir, base_name)
293 os.rename(log_path, temp_path)
298 os.rename(temp_path, os.path.join(log_path, 'old_log'))
  /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 348 temp_path = jd.path
350 self.assert_(not os.path.isdir(temp_path))
    [all...]
  /system/core/fastboot/
fastboot.cpp 522 char temp_path[PATH_MAX]; local
523 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path);
524 if (nchars == 0 || nchars >= sizeof(temp_path)) {
530 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) {
    [all...]
  /external/autotest/server/cros/faft/
firmware_test.py     [all...]

Completed in 532 milliseconds