Home
last modified time | relevance | path

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

/external/qemu/android/utils/
Dtempfile.c61 char temp_dir[MAX_PATH]; in tempfile_create() local
62 char *p = temp_dir, *end = p + sizeof(temp_dir); in tempfile_create()
71 retval = GetTempFileName(temp_dir, "TMP", 0, temp_namebuff); in tempfile_create()
73 D( "can't create temporary file in '%s'", temp_dir ); in tempfile_create()
/external/gtest/test/
Dgtest_xml_output_unittest.py123 temp_dir = tempfile.mkdtemp()
124 output_file = os.path.join(temp_dir,
136 working_dir=temp_dir)
Dgtest-filepath_test.cc466 const char* temp_dir = getenv("TEMP"); in TempDir()
469 if (temp_dir == NULL || temp_dir[0] == '\0') in TempDir()
471 else if (String(temp_dir).EndsWith("\\")) in TempDir()
472 return String(temp_dir); in TempDir()
474 return String::Format("%s\\", temp_dir); in TempDir()
/external/qemu/
Dblock.c182 char temp_dir[MAX_PATH]; in get_tmp_filename() local
184 GetTempPath(MAX_PATH, temp_dir); in get_tmp_filename()
185 GetTempFileName(temp_dir, "qem", 0, filename); in get_tmp_filename()