Home
last modified time | relevance | path

Searched refs:temp_path (Results 1 – 6 of 6) 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_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()
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()
/external/libcxx/test/libcxx/android/
Dexecutors.py20 temp_path, err, exitCode = self._execute_command_remote([cmd])
21 temp_path = temp_path.strip()
24 return temp_path
/external/libcxx/test/libcxx/test/
Dexecutor.py164 temp_path, err, exitCode = self._execute_command_remote([cmd])
165 temp_path = temp_path.strip()
168 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()