Home
last modified time | relevance | path

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

/system/core/adb/
Dadb_utils.cpp325 WCHAR temp_path[MAX_PATH]; in GetLogFilePath() local
328 DWORD nchars = GetTempPathW(arraysize(temp_path), temp_path); in GetLogFilePath()
329 if (nchars >= arraysize(temp_path) || nchars == 0) { in GetLogFilePath()
336 if (!android::base::WideToUTF8(temp_path, &temp_path_utf8)) { in GetLogFilePath()
/system/core/init/
Dperfboot.py111 for temp_path in self._temp_paths:
112 temp = int(self._device.shell(['cat', temp_path])[0].rstrip())
/system/core/fastboot/
Dfastboot.cpp533 char temp_path[PATH_MAX]; in win32_tmpfile() local
534 DWORD nchars = GetTempPath(sizeof(temp_path), temp_path); in win32_tmpfile()
535 if (nchars == 0 || nchars >= sizeof(temp_path)) { in win32_tmpfile()
540 if (GetTempFileName(temp_path, "fastboot", 0, filename) == 0) { in win32_tmpfile()