Symbol: tmpfile
headers/posix/stdio.h
198
extern FILE *tmpfile(void);
headers/private/kernel/boot/stdio.h
72
extern FILE *tmpfile(void);
src/add-ons/translators/raw/RAW.cpp
3291
if ((ifp = tmpfile())) {
src/bin/unchop.c
60
char *tmpfile = origfile;
src/bin/unchop.c
65
tmpfile = temp_file();
src/bin/unchop.c
69
do_unchop(tmpfile, origfile);
src/bin/unchop.c
73
replace(origfile, tmpfile);
src/bin/unchop.c
75
remove(tmpfile);
src/kits/mail/numailkit.cpp
153
ret = tmpfile.SetTo(&settings_entry, B_WRITE_ONLY | B_CREATE_FILE);
src/kits/mail/numailkit.cpp
170
ret = tmpfile.Lock(); //-ATT-changed account_file to tmpfile. Is that allowed?
src/kits/mail/numailkit.cpp
187
tmpfile.SetSize(0);
src/kits/mail/numailkit.cpp
190
ret = archive.Flatten(&tmpfile);
src/kits/mail/numailkit.cpp
199
ret = tmpfile.Sync();
src/kits/mail/numailkit.cpp
69
BFile tmpfile;
src/system/libroot/posix/glibc/libio/stdio.h
205
extern FILE *tmpfile (void) __wur;
src/system/libroot/posix/glibc/libio/stdio.h
208
extern FILE *__REDIRECT (tmpfile, (void), tmpfile64) __wur;
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
304
BFile tmpfile("/tmp/tgatmp", B_READ_WRITE | B_CREATE_FILE |
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
308
CPPUNIT_ASSERT(tmpfile.InitCheck() == B_OK);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
312
CPPUNIT_ASSERT(tmpfile.Seek(0, SEEK_SET) == 0);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
313
CPPUNIT_ASSERT(tmpfile.SetSize(0) == B_OK);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
314
CPPUNIT_ASSERT(proster->Translate(pinput, NULL, pmsg, &tmpfile,
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
316
CPPUNIT_ASSERT(CompareStreams(tmpfile, bitsfile) == true);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
320
CPPUNIT_ASSERT(tmpfile.Seek(0, SEEK_SET) == 0);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
321
CPPUNIT_ASSERT(tmpfile.SetSize(0) == B_OK);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
322
CPPUNIT_ASSERT(proster->Translate(pinput, NULL, pmsg, &tmpfile,
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
324
CPPUNIT_ASSERT(CompareStreams(tmpfile, bitsfile) == true);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
330
CPPUNIT_ASSERT(proster->Translate(&tmpfile, NULL, pmsg, &dtmpfile,
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
336
CPPUNIT_ASSERT(tmpfile.Seek(0, SEEK_SET) == 0);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
337
CPPUNIT_ASSERT(tmpfile.SetSize(0) == B_OK);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
338
CPPUNIT_ASSERT(proster->Translate(pinput, NULL, pmsg, &tmpfile,
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
340
CPPUNIT_ASSERT(CompareStreams(tmpfile, tgafile) == true);
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
347
CPPUNIT_ASSERT(proster->Translate(&tmpfile, NULL, pmsg, &dtmpfile,
src/tests/add-ons/translators/tgatranslator/TGATranslatorTest.cpp
355
CPPUNIT_ASSERT(proster->Translate(&tmpfile, NULL, pmsg, &dtmpfile,
src/tests/kits/translation/TranslationUtilsTest.cpp
248
BFile tmpfile("/tmp/out_styled_text.stxt", B_READ_WRITE | B_CREATE_FILE | B_ERASE_FILE);
src/tests/kits/translation/TranslationUtilsTest.cpp
249
CPPUNIT_ASSERT(tmpfile.InitCheck() == B_OK);
src/tests/kits/translation/TranslationUtilsTest.cpp
250
CPPUNIT_ASSERT(BTranslationUtils::PutStyledText(ptextview, &tmpfile) == B_OK);
src/tests/kits/translation/TranslationUtilsTest.cpp
253
CPPUNIT_ASSERT(tmpfile.GetSize(&tmpsize) == B_OK);
src/tests/kits/translation/TranslationUtilsTest.cpp
260
CPPUNIT_ASSERT(tmpfile.ReadAt(0, tmpbuf, tmpsize) == tmpsize);
src/tests/kits/translation/TranslationUtilsTest.cpp
274
CPPUNIT_ASSERT(BTranslationUtils::PutStyledText(NULL, &tmpfile) == B_BAD_VALUE);
src/tests/system/kernel/cache/file_cache_resize_races_test.cpp
18
const char* tmpfile = "__file";
src/tests/system/kernel/cache/file_cache_resize_races_test.cpp
34
int nocached = open(tmpfile, O_RDWR | O_NOCACHE);
src/tests/system/kernel/cache/file_cache_resize_races_test.cpp
60
int file = open(tmpfile, O_CREAT | O_TRUNC | O_RDWR);
src/tests/system/kernel/vm/mmap_fixed_test.cpp
15
char tmpfile[] = "/tmp/mmap_fixed_test_XXXXXX";
src/tests/system/kernel/vm/mmap_fixed_test.cpp
16
int fd = mkstemp(tmpfile);
src/tests/system/kernel/vm/mmap_fixed_test.cpp
23
unlink(tmpfile);