Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:temp_path

254   char temp_path[MAXPATHLEN]; /* need to know its length */
255 unsigned path_size = GetTempPath(sizeof temp_path, temp_path);
262 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
267 path_size + sizemax < sizeof temp_path &&
270 unsigned size = sprintf (temp_path + path_size,
272 temp_path[path_size - 1] == '\\' ? "" : "\\",
274 HANDLE h = CreateFile (temp_path, /* file name */
293 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
307 memcpy (path, temp_path, final_size);