Home
last modified time | relevance | path

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

/external/angle/src/tests/test_utils/runner/
DTestSuite_unittest.cpp53 char tempDirName[kMaxTempDirLen * 2]; in runTestSuite() local
55 if (!GetTempDir(tempDirName, kMaxTempDirLen)) in runTestSuite()
61 tempFNameStream << tempDirName << GetPathSeparator() << "test_temp_" << rand() << ".json"; in runTestSuite()
193 char tempDirName[kMaxTempDirLen * 2]; in TEST() local
194 ASSERT_TRUE(GetTempDir(tempDirName, kMaxTempDirLen)); in TEST()
197 tempFNameStream << tempDirName << GetPathSeparator() << "flaky_temp.txt"; in TEST()
/external/llvm-project/flang/runtime/
Dfile.cpp38 char tempDirName[MAX_PATH - 14]; in openfile_mkstemp() local
40 unsigned long nBufferLength{sizeof(tempDirName)}; in openfile_mkstemp()
41 nBufferLength = ::GetTempPathA(nBufferLength, tempDirName); in openfile_mkstemp()
42 if (nBufferLength > sizeof(tempDirName) || nBufferLength == 0) { in openfile_mkstemp()
45 if (::GetTempFileNameA(tempDirName, "Fortran", uUnique, tempFileName) == 0) { in openfile_mkstemp()