OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tmpfd
(Results
1 - 4
of
4
) sorted by null
/external/curl/tests/libtest/
lib537.c
104
int *
tmpfd
;
local
369
tmpfd
= realloc(fd, sizeof(*fd) * (size_t)(num_open.rlim_max));
370
if (
tmpfd
) {
371
fd =
tmpfd
;
372
tmpfd
= NULL;
/external/autotest/server/
base_utils.py
98
tmpfd
, tmpfile = tempfile.mkstemp(dir=tmpdir)
99
tmpfileobj = os.fdopen(
tmpfd
, 'w')
/external/toybox/toys/pending/
diff.c
181
int rd, wr,
tmpfd
= mkstemp(tmp_name);
local
183
if (
tmpfd
== -1) perror_exit("mkstemp");
191
wr = writeall(
tmpfd
, toybuf, rd);
194
return fdopen(
tmpfd
, "r");
/external/clang/lib/Serialization/
GlobalModuleIndex.cpp
830
int
TmpFD
;
831
if (llvm::sys::fs::createUniqueFile(IndexPath + "-%%%%%%%%",
TmpFD
,
836
llvm::raw_fd_ostream Out(
TmpFD
, true);
Completed in 126 milliseconds