Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/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
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
Dexecutor.py168 temp_path, err, exitCode = self._execute_command_remote([cmd])
169 temp_path = temp_path.strip()
172 return temp_path
/ndk/sources/host-tools/make-3.81/
Djob.c252 char temp_path[MAXPATHLEN]; /* need to know its length */ in create_batch_file() local
253 unsigned path_size = GetTempPath(sizeof temp_path, temp_path); in create_batch_file()
260 path_size = GetCurrentDirectory (sizeof temp_path, temp_path); in create_batch_file()
265 path_size + sizemax < sizeof temp_path && in create_batch_file()
268 unsigned size = sprintf (temp_path + path_size, in create_batch_file()
270 temp_path[path_size - 1] == '\\' ? "" : "\\", in create_batch_file()
272 HANDLE h = CreateFile (temp_path, /* file name */ in create_batch_file()
291 path_size = GetCurrentDirectory (sizeof temp_path, temp_path); in create_batch_file()
305 memcpy (path, temp_path, final_size); in create_batch_file()