Home
last modified time | relevance | path

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

/ndk/sources/host-tools/make-3.81/
Djob.c253 unsigned path_size = GetTempPath(sizeof temp_path, temp_path); in create_batch_file() local
258 if (path_size == 0) in create_batch_file()
260 path_size = GetCurrentDirectory (sizeof temp_path, temp_path); in create_batch_file()
264 while (path_size > 0 && 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()
291 path_size = GetCurrentDirectory (sizeof temp_path, temp_path); in create_batch_file()
303 const unsigned final_size = path_size + size + 1; in create_batch_file()