OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tempname
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/remoting/host/win/
elevated_controller.cc
163
base::FilePath
tempname
= GetTempLocationFor(filename);
local
165
CreateFileW(
tempname
.value().c_str(),
194
base::FilePath
tempname
= GetTempLocationFor(filename);
local
195
if (!MoveFileExW(
tempname
.value().c_str(),
199
PLOG(ERROR) << "Failed to rename '" <<
tempname
.value() << "' to '"
/external/chromium_org/third_party/webrtc/base/
unixfilesystem.cc
208
char *
tempname
= new char[len];
local
210
snprintf(
tempname
, len, "%s/%sXXXXXX", dir.pathname().c_str(),
212
int fd = ::mkstemp(
tempname
);
215
std::string ret(
tempname
);
216
delete[]
tempname
;
/external/fio/
diskutil.c
156
char
tempname
[PATH_MAX], *p;
local
177
strncpy(
tempname
, file_name, PATH_MAX - 1);
178
p = dirname(
tempname
);
Completed in 299 milliseconds