Searched defs:temp_file (Results 1 - 11 of 11) sorted by relevance

/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_temp_storage_unittest.cc30 FilePath temp_file; local
32 file_util::CreateTemporaryFileInDir(temp_dir_.path(), &temp_file));
33 local_state_.reset(PrefService::CreatePrefService(temp_file, NULL, NULL));
/external/chromium/chrome/browser/history/
H A Dredirect_uitest.cc111 FilePath temp_file; local
113 &temp_file));
115 file_util::WriteFile(temp_file,
121 GURL first_url = net::FilePathToFileURL(temp_file);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file_unittest.cc33 const FilePath temp_file = local
35 file_util::Delete(temp_file, false);
63 const FilePath temp_file = local
67 EXPECT_FALSE(file_util::PathExists(temp_file));
71 EXPECT_TRUE(file_util::PathExists(temp_file));
78 EXPECT_TRUE(file_util::PathExists(temp_file));
83 EXPECT_FALSE(file_util::PathExists(temp_file));
/external/jpeg/
H A Djmemsys.h160 short temp_file; /* file reference number to temp file */ member in struct:backing_store_struct
165 short temp_file; /* file reference number to temp file */ member in struct:backing_store_struct
170 FILE * temp_file; /* stdio reference to temp file */ member in struct:backing_store_struct
/external/qemu/distrib/jpeg-6b/
H A Djmemsys.h160 short temp_file; /* file reference number to temp file */ member in struct:backing_store_struct
165 short temp_file; /* file reference number to temp file */ member in struct:backing_store_struct
170 FILE * temp_file; /* stdio reference to temp file */ member in struct:backing_store_struct
/external/chromium/base/
H A Dfile_util_posix.cc444 bool CreateTemporaryFileInDir(const FilePath& dir, FilePath* temp_file) { argument
446 int fd = CreateAndOpenFdForTemporaryFile(dir, temp_file);
H A Dfile_util_win.cc564 FilePath temp_file; local
569 if (CreateTemporaryFileInDir(*path, &temp_file)) {
570 *path = temp_file;
598 FilePath* temp_file) {
616 *temp_file = FilePath(temp_file_str);
597 CreateTemporaryFileInDir(const FilePath& dir, FilePath* temp_file) argument
/external/chromium/chrome/browser/download/
H A Ddownload_util.cc199 bool CreateTemporaryFileForDownload(FilePath* temp_file) { argument
201 temp_file))
203 return file_util::CreateTemporaryFile(temp_file);
H A Dsave_package.cc482 FilePath temp_file; local
483 file_util::CreateTemporaryFile(&temp_file);
484 file_name = temp_file.RemoveExtension().BaseName().value();
/external/chromium/net/http/
H A Dhttp_network_transaction_unittest.cc6148 FilePath temp_file; local
6149 ASSERT_TRUE(file_util::CreateTemporaryFile(&temp_file));
6151 ASSERT_TRUE(file_util::WriteFile(temp_file, temp_file_content.c_str(),
6153 ASSERT_TRUE(file_util::MakeFileUnreadable(temp_file));
6157 element.SetToFilePath(temp_file);
6189 file_util::Delete(temp_file, false);
6203 FilePath temp_file; local
6204 ASSERT_TRUE(file_util::CreateTemporaryFile(&temp_file));
6207 ASSERT_TRUE(file_util::WriteFile(temp_file, temp_file_contents.c_str(),
6212 element.SetToFilePath(temp_file);
[all...]
/external/netperf/
H A Dnetlib.c1549 char *temp_file;
1560 temp_file = tmpnam(NULL);
1561 if (NULL != temp_file) {
1562 fildes = open(temp_file,O_RDWR | O_EXCL | O_CREAT,0600);
1573 unlink(temp_file);
1534 char *temp_file; local

Completed in 1338 milliseconds