/bionic/tests/headers/posix/ |
stdio_h.c | 135 FUNCTION(tmpfile, FILE* (*f)(void));
|
/bionic/tests/ |
stdio_ext_test.cpp | 81 FILE* fp = tmpfile();
|
stdio_test.cpp | 105 FILE* fp = tmpfile(); 144 FILE* fp = tmpfile(); 179 FILE* fp = tmpfile(); 213 FILE* fp = tmpfile(); 255 FILE* fp = tmpfile(); 875 ASSERT_NE(nullptr, fp = tmpfile()); 886 ASSERT_NE(nullptr, fp = tmpfile()); [all...] |
sys_stat_test.cpp | 27 FILE* fp = tmpfile();
|
/bionic/tools/relocation_packer/src/ |
elf_file_unittest.cc | 46 FILE* temporary = tmpfile();
|
/external/libcxx/test/std/depr/depr.c.headers/ |
stdio_h.pass.cpp | 123 static_assert((std::is_same<decltype(tmpfile()), FILE*>::value), "");
|
/external/libcxx/test/std/input.output/file.streams/c.files/ |
cstdio.pass.cpp | 139 static_assert((std::is_same<decltype(std::tmpfile()), std::FILE*>::value), "");
|
/external/libmtp/examples/ |
detect.c | 245 FILE *xmltmp = tmpfile();
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/ |
stdio_h.pass.cpp | 123 static_assert((std::is_same<decltype(tmpfile()), FILE*>::value), "");
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/c.files/ |
cstdio.pass.cpp | 139 static_assert((std::is_same<decltype(std::tmpfile()), std::FILE*>::value), "");
|
/external/scapy/scapy/arch/windows/ |
__init__.py | 165 tmpfile = tempfile.NamedTemporaryFile(mode="wb", suffix=".vbs", delete=False) 166 tmpfile.write(raw(code)) 167 tmpfile.close() 168 ps = sp.Popen([conf.prog.cscript, tmpfile.name], 178 os.unlink(tmpfile.name) [all...] |
/external/scapy/scapy/ |
utils.py | [all...] |
/external/autotest/client/cros/audio/ |
audio_helper.py | 389 def record_sample(tmpfile, record_command=_DEFAULT_REC_COMMAND): 392 @param tmpfile: The file to record to. 395 utils.system('%s %s' % (record_command, tmpfile)) [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
func.go | 607 if tmpfile := os.Getenv("GSHS_LOGFILE"); tmpfile != "" { 609 file, err = os.Create(tmpfile) 611 f.Fatalf("could not open hash-testing logfile %s", tmpfile)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
func.go | 607 if tmpfile := os.Getenv("GSHS_LOGFILE"); tmpfile != "" { 609 file, err = os.Create(tmpfile) 611 f.Fatalf("could not open hash-testing logfile %s", tmpfile)
|
/system/extras/simpleperf/ |
CallChainJoiner.cpp | 262 std::unique_ptr<TemporaryFile> tmpfile = ScopedTempFiles::CreateTempFile(); local 263 FILE* fp = fdopen(tmpfile->release(), "web+");
|
/art/libartbase/base/unix_file/ |
fd_file_test.cc | 27 return new FdFile(fileno(tmpfile()), false);
|
/bionic/libc/include/ |
stdio.h | 163 __warnattr("tempnam is unsafe, use mkstemp or tmpfile instead"); 166 __warnattr("tempnam is unsafe, use mkstemp or tmpfile instead"); 216 FILE* tmpfile(void);
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
stdio.h | 9 FILE *tmpfile (void);
363 FILE *tmpfile (void);
[all...] |
/external/libpng/contrib/examples/ |
simpleover.c | 278 sprite->file = tmpfile(); 308 fprintf(stderr, "simpleover: sprite %s: could not allocate tmpfile: %s\n",
|
/external/devlib/devlib/ |
target.py | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_os.py | 97 if not hasattr(os, "tmpfile"):
99 # As with test_tmpnam() below, the Windows implementation of tmpfile()
103 # XP and below, the semantics of tmpfile() are the same, but the user
105 # their account already. If that's the case, then os.tmpfile() should
110 # test that a subsequent call to os.tmpfile() raises the same error. If
114 warnings.filterwarnings("ignore", "tmpfile", DeprecationWarning)
123 # open() failed, assert tmpfile() fails in the same way.
124 # Although open() raises an IOError and os.tmpfile() raises an
128 fp = os.tmpfile()
132 self.fail("expected os.tmpfile() to raise OSError") [all...] |
/external/python/cpython2/Lib/test/ |
test_os.py | 103 @unittest.skipUnless(hasattr(os, 'tmpfile'), 'test needs os.tmpfile()') 105 # As with test_tmpnam() below, the Windows implementation of tmpfile() 109 # XP and below, the semantics of tmpfile() are the same, but the user 111 # their account already. If that's the case, then os.tmpfile() should 116 # test that a subsequent call to os.tmpfile() raises the same error. If 120 warnings.filterwarnings("ignore", "tmpfile", DeprecationWarning) 129 # open() failed, assert tmpfile() fails in the same way. 130 # Although open() raises an IOError and os.tmpfile() raises an 134 fp = os.tmpfile() [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
pthread.h | 662 #define tmpfile macro [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_os.py | 98 if not hasattr(os, "tmpfile"): 100 # As with test_tmpnam() below, the Windows implementation of tmpfile() 104 # XP and below, the semantics of tmpfile() are the same, but the user 106 # their account already. If that's the case, then os.tmpfile() should 111 # test that a subsequent call to os.tmpfile() raises the same error. If 115 warnings.filterwarnings("ignore", "tmpfile", DeprecationWarning) 124 # open() failed, assert tmpfile() fails in the same way. 125 # Although open() raises an IOError and os.tmpfile() raises an 129 fp = os.tmpfile() 133 self.fail("expected os.tmpfile() to raise OSError" [all...] |