Home
last modified time | relevance | path

Searched refs:temp_path (Results 1 – 17 of 17) sorted by relevance

/external/google-breakpad/src/client/windows/unittests/
Dexception_handler_nesting_test.cc146 wchar_t temp_path[MAX_PATH] = { '\0' }; in InstallExceptionHandlerAndCrash() local
147 GetTempPath(MAX_PATH, temp_path); in InstallExceptionHandlerAndCrash()
149 ASSERT_TRUE(DoesPathExist(temp_path)); in InstallExceptionHandlerAndCrash()
151 temp_path, in InstallExceptionHandlerAndCrash()
256 wchar_t temp_path[MAX_PATH] = { '\0' }; in TEST() local
257 GetTempPath(MAX_PATH, temp_path); in TEST()
259 ASSERT_TRUE(DoesPathExist(temp_path)); in TEST()
261 temp_path, in TEST()
280 wchar_t temp_path[MAX_PATH] = { '\0' }; in TEST() local
281 GetTempPath(MAX_PATH, temp_path); in TEST()
[all …]
Dexception_handler_test.cc115 TCHAR temp_path[MAX_PATH] = { '\0' }; in SetUp() local
119 GetTempPath(MAX_PATH, temp_path); in SetUp()
129 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide); in SetUp()
Dexception_handler_death_test.cc77 TCHAR temp_path[MAX_PATH] = { '\0' }; in SetUp() local
81 GetTempPath(MAX_PATH, temp_path); in SetUp()
91 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide); in SetUp()
/external/webrtc/webrtc/test/testsupport/
Dfileutils.cc78 std::string temp_path = path; in SetExecutablePath() local
82 temp_path = path.substr(working_dir.length() + 1); in SetExecutablePath()
88 std::replace(temp_path.begin(), temp_path.end(), '/', '\\'); in SetExecutablePath()
92 temp_path = temp_path.substr(0, temp_path.find_last_of(kPathDelimiter)); in SetExecutablePath()
93 strncpy(relative_dir_path, temp_path.c_str(), FILENAME_MAX); in SetExecutablePath()
/external/libcxx/utils/libcxx/android/
Dexecutors.py20 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
21 temp_path = temp_path.strip()
24 return temp_path
/external/libchrome/base/process/
Dprocess_metrics_unittest.cc472 const FilePath temp_path = command_line->GetSwitchValuePath(kTempDirFlag); in MULTIPROCESS_TEST_MAIN() local
473 CHECK(DirectoryExists(temp_path)); in MULTIPROCESS_TEST_MAIN()
478 CHECK(SignalEvent(temp_path, kSignalClosed)); in MULTIPROCESS_TEST_MAIN()
491 const FilePath temp_path = temp_dir.path(); in TEST() local
493 child_command_line.AppendSwitchPath(kTempDirFlag, temp_path); in TEST()
497 WaitForEvent(temp_path, kSignalClosed); in TEST()
/external/libcxx/utils/libcxx/test/
Dexecutor.py199 temp_path, err, exitCode = self._execute_command_remote([cmd])
200 temp_path = temp_path.strip()
203 return temp_path
/external/google-breakpad/src/tools/windows/symupload/
Dsymupload.cc123 wchar_t temp_path[_MAX_PATH]; in DumpSymbolsToTempFile() local
124 if (GetTempPath(_MAX_PATH, temp_path) == 0) { in DumpSymbolsToTempFile()
129 if (GetTempFileName(temp_path, L"sym", 0, temp_filename) == 0) { in DumpSymbolsToTempFile()
/external/autotest/server/cros/
Ddebugd_dev_tools.py287 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/
Dwin32regkey_unittest.cc567 wchar_t temp_path[MAX_PATH] = {0}; in RegKeyStaticFunctionsTest() local
568 EXPECT_LT(::GetTempPath(arraysize(temp_path), temp_path), in RegKeyStaticFunctionsTest()
569 static_cast<DWORD>(arraysize(temp_path))); in RegKeyStaticFunctionsTest()
571 EXPECT_NE(::GetTempFileName(temp_path, L"rkut_", in RegKeyStaticFunctionsTest()
/external/e2fsprogs/misc/
Dfuse2fs.c913 char *temp_path = strdup(path); in op_mknod() local
924 if (!temp_path) { in op_mknod()
928 node_name = strrchr(temp_path, '/'); in op_mknod()
943 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path, in op_mknod()
1030 free(temp_path); in op_mknod()
1040 char *temp_path = strdup(path); in op_mkdir() local
1052 if (!temp_path) { in op_mkdir()
1056 node_name = strrchr(temp_path, '/'); in op_mkdir()
1071 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path, in op_mkdir()
1113 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path, in op_mkdir()
[all …]
/external/autotest/client/cros/
Dcros_disks.py555 def _remove_temp_path(self, temp_path): argument
557 if temp_path:
559 path = temp_path.name
560 temp_path.clean()
/external/autotest/client/common_lib/
Dpackages.py824 temp_path = tarball_path + '.tmp'
825 cmd_list = ['tar', '-cf', temp_path, '-C', src_dir]
836 os.unlink(temp_path)
839 os.rename(temp_path, tarball_path)
Dbase_job_unittest.py349 temp_path = jd.path
351 self.assert_(not os.path.isdir(temp_path))
/external/ply/ply/ply/
Dcpp.py166 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]
/external/autotest/scheduler/
Ddrone_utility.py208 temp_path = os.path.join(temp_dir, base_name)
209 os.rename(log_path, temp_path)
214 os.rename(temp_path, os.path.join(log_path, 'old_log'))
/external/autotest/server/cros/faft/
Dfirmware_test.py1271 temp_path = self.faft_client.updater.get_temp_path()
1272 working_shellball = os.path.join(temp_path,