HomeSort by relevance Sort by last modified time
    Searched full:temp_path (Results 1 - 25 of 25) 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/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
  /ndk/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 41 WCHAR temp_path[MAX_PATH]; local
44 DWORD nchars = GetTempPathW(arraysize(temp_path), temp_path);
45 if (nchars >= arraysize(temp_path) || nchars == 0) {
52 if (!android::base::WideToUTF8(temp_path, &temp_path_utf8)) {
  /external/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
  /ndk/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
  /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/chromium-trace/catapult/telemetry/telemetry/value/
trace_unittest.py 127 temp_path = os.path.join(tempdir, 'test.json')
133 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_",
win32filesystem.cc 451 std::wstring temp_path16 = ToUtf16(temp_path.pathname());
  /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/trace_event/
process_memory_maps_dump_provider_unittest.cc 109 FilePath temp_path; local
110 FILE* temp_file = CreateAndOpenTemporaryFile(&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/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()
  /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/
base_packages.py 782 temp_path = tarball_path + '.tmp'
783 cmd_list = ['tar', '-cf', temp_path, '-C', src_dir]
794 os.unlink(temp_path)
797 os.rename(temp_path, tarball_path)
    [all...]
base_job_unittest.py 343 temp_path = jd.path
345 self.assert_(not os.path.isdir(temp_path))
    [all...]
  /external/autotest/scheduler/
drone_utility.py 306 temp_path = os.path.join(temp_dir, base_name)
307 os.rename(log_path, temp_path)
312 os.rename(temp_path, os.path.join(log_path, 'old_log'))
  /ndk/sources/host-tools/make-3.81/
job.c 254 char temp_path[MAXPATHLEN]; /* need to know its length */
255 unsigned path_size = GetTempPath(sizeof temp_path, temp_path);
262 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
267 path_size + sizemax < sizeof temp_path &&
270 unsigned size = sprintf (temp_path + path_size,
272 temp_path[path_size - 1] == '\\' ? "" : "\\",
274 HANDLE h = CreateFile (temp_path, /* file name */
293 path_size = GetCurrentDirectory (sizeof temp_path, temp_path)
252 char temp_path[MAXPATHLEN]; \/* need to know its length *\/ local
    [all...]
  /system/core/fastboot/
fastboot.cpp 521 char temp_path[PATH_MAX]; local
522 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path);
523 if (nchars == 0 || nchars >= sizeof(temp_path)) {
529 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) {
    [all...]
  /external/opencv3/modules/ts/misc/
run.py     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
boto_translation.py 713 (temp_fh, temp_path) = tempfile.mkstemp()
715 with open(temp_path, 'wb') as out_fp:
720 with open(temp_path, 'rb') as in_fp:
725 os.unlink(temp_path)
    [all...]

Completed in 2005 milliseconds