OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:temp_dir_path
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Tools/Scripts/webkitpy/common/net/
credentials_unittest.py
145
with _TemporaryDirectory(suffix="not_a_git_repo") as
temp_dir_path
:
146
credentials = FakeCredentials("bugs.webkit.org", cwd=
temp_dir_path
)
168
with _TemporaryDirectory(suffix="not_a_git_repo") as
temp_dir_path
:
169
credentials = FakeCredentials("fake.hostname", cwd=
temp_dir_path
, keyring=MockKeyring())
/external/chromium/testing/gtest/src/
gtest-port.cc
494
char
temp_dir_path
[MAX_PATH + 1] = { '\0' }; // NOLINT
497
::GetTempPathA(sizeof(
temp_dir_path
),
temp_dir_path
);
498
const UINT success = ::GetTempFileNameA(
temp_dir_path
,
503
<< "Unable to create a temporary file in " <<
temp_dir_path
;
/external/llvm/utils/unittest/googletest/
gtest-port.cc
459
char
temp_dir_path
[MAX_PATH + 1] = { '\0' }; // NOLINT
462
::GetTempPathA(sizeof(
temp_dir_path
),
temp_dir_path
);
463
const UINT success = ::GetTempFileNameA(
temp_dir_path
,
468
<< "Unable to create a temporary file in " <<
temp_dir_path
;
/external/gtest/src/
gtest-port.cc
421
char
temp_dir_path
[MAX_PATH + 1] = { '\0' }; // NOLINT
local
424
::GetTempPathA(sizeof(
temp_dir_path
),
temp_dir_path
);
local
425
::GetTempFileNameA(
temp_dir_path
, "gtest_redir", 0, temp_file_path);
/external/protobuf/gtest/src/
gtest-port.cc
455
char
temp_dir_path
[MAX_PATH + 1] = { '\0' }; // NOLINT
458
::GetTempPathA(sizeof(
temp_dir_path
),
temp_dir_path
);
459
::GetTempFileNameA(
temp_dir_path
, "gtest_redir", 0, temp_file_path);
Completed in 2637 milliseconds