OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempfd
(Results
1 - 2
of
2
) sorted by null
/external/bison/lib/
w32spawn.h
77
/* Undoes the effect of
TEMPFD
= dup_safer_noinherit (ORIGFD); */
79
undup_safer_noinherit (int
tempfd
, int origfd)
81
if (
tempfd
>= 0)
83
if (dup2 (
tempfd
, origfd) < 0)
86
close (
tempfd
);
/external/qemu/android/utils/
tempfile.c
80
int
tempfd
= -1;
local
91
tempfd
= mkstemp( template );
92
if (
tempfd
< 0) {
96
close(
tempfd
);
Completed in 1063 milliseconds