OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tmp_file_name
(Results
1 - 2
of
2
) sorted by null
/external/bison/djgpp/
subpipe.c
57
static char
tmp_file_name
[2][L_tmpnam];
variable
81
strcpy(
tmp_file_name
[0], tmpdir);
82
strcat(
tmp_file_name
[0], "/bnXXXXXX");
83
fd = mkstemp(
tmp_file_name
[0]);
88
strcpy(
tmp_file_name
[1], tmpdir);
89
strcat(
tmp_file_name
[1], "/bnXXXXXX");
90
fd = mkstemp(
tmp_file_name
[1]);
151
from_in_fd = open(
tmp_file_name
[0], O_WRONLY | O_CREAT | O_TRUNC, S_IWUSR);
156
remove_tmp_file(from_in_fd,
tmp_file_name
[0]);
181
int from_out_fd = open(
tmp_file_name
[0], O_RDONLY, S_IRUSR); /* pipe from bison to m4. *
[
all
...]
/external/opencv3/modules/imgcodecs/test/
test_grfmt.cpp
864
string
tmp_file_name
= tempfile(".hdr");
local
868
imwrite(
tmp_file_name
, img_rle, param);
869
Mat written_img = imread(
tmp_file_name
, -1);
870
ASSERT_FALSE(written_img.empty()) << "Could not open " <<
tmp_file_name
;
Completed in 122 milliseconds