Searched defs:temp_file_path (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfile_watcher_unittest.cc140 base::FilePath temp_file_path; local
141 ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir.path(), &temp_file_path));
/external/chromium_org/base/files/
H A Dmemory_mapped_file_unittest.cc51 const FilePath temp_file_path() const { return temp_file_path_; } function in class:base::__anon2270::MemoryMappedFileTest
61 map.Initialize(temp_file_path());
72 map.Initialize(File(temp_file_path(), File::FLAG_OPEN | File::FLAG_READ));
83 map.Initialize(temp_file_path());
95 File file(temp_file_path(), File::FLAG_OPEN | File::FLAG_READ);
109 File file(temp_file_path(), File::FLAG_OPEN | File::FLAG_READ);
124 File file(temp_file_path(), File::FLAG_OPEN | File::FLAG_READ);
140 File file(temp_file_path(), File::FLAG_OPEN | File::FLAG_READ);
156 File file(temp_file_path(), File::FLAG_OPEN | File::FLAG_READ);
/external/chromium_org/net/url_request/
H A Durl_fetcher_response_writer.cc71 base::FilePath* temp_file_path = new base::FilePath; local
75 base::Bind(&base::CreateTemporaryFile, temp_file_path),
79 base::Owned(temp_file_path)));
155 base::FilePath* temp_file_path,
161 file_path_ = *temp_file_path;
154 DidCreateTempFile(const CompletionCallback& callback, base::FilePath* temp_file_path, bool success) argument
/external/chromium_org/storage/browser/database/
H A Dvfs_backend.cc107 base::FilePath temp_file_path; local
108 if (!base::CreateTemporaryFileInDir(dir_path, &temp_file_path))
111 return OpenFile(temp_file_path, desired_flags);
/external/chromium_org/net/base/
H A Dfile_stream_unittest.cc64 const base::FilePath temp_file_path() const { return temp_file_path_; } function in class:net::FileStreamTest
78 int rv = stream.Open(temp_file_path(), flags, callback.callback());
95 int rv = stream->Open(temp_file_path(), flags, callback.callback());
115 base::WriteFile(temp_file_path(), kTestData, kTestDataSize));
118 base::File file(temp_file_path(), flags);
136 base::DeleteFile(temp_file_path(), false);
139 file.Initialize(temp_file_path(), flags);
155 base::ReadFile(temp_file_path(), read_buffer->data(),
181 EXPECT_TRUE(base::GetFileSize(temp_file_path(), &file_size));
187 int rv = stream.Open(temp_file_path(), flag
[all...]
H A Dupload_data_stream_unittest.cc173 base::FilePath temp_file_path; local
175 &temp_file_path));
177 base::WriteFile(temp_file_path, kTestData, kTestDataSize));
181 temp_file_path,
207 base::FilePath temp_file_path; local
209 &temp_file_path));
211 base::WriteFile(temp_file_path, kTestData, kTestDataSize));
219 temp_file_path,
325 base::FilePath temp_file_path; local
327 &temp_file_path));
551 base::FilePath temp_file_path; local
570 base::FilePath temp_file_path; local
614 base::FilePath temp_file_path; local
657 base::FilePath temp_file_path; local
714 base::FilePath temp_file_path; local
762 base::FilePath temp_file_path; local
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dremote_to_local_syncer.cc84 base::FilePath temp_file_path; local
85 if (!base::CreateTemporaryFile(&temp_file_path))
88 return storage::ScopedFile(temp_file_path,
/external/chromium_org/net/http/
H A Dhttp_stream_parser_unittest.cc134 base::FilePath temp_file_path; local
136 &temp_file_path));
140 temp_file_path,
H A Dhttp_network_transaction_unittest.cc8092 base::FilePath temp_file_path; local
8093 ASSERT_TRUE(base::CreateTemporaryFile(&temp_file_path));
8101 temp_file_path,
8144 base::DeleteFile(temp_file_path, false);
/external/chromium_org/chrome/browser/
H A Dshell_integration_linux.cc100 base::FilePath temp_file_path = temp_dir.path().Append(
102 std::string icon_name = temp_file_path.BaseName().RemoveExtension().value();
114 int bytes_written = base::WriteFile(temp_file_path,
133 argv.push_back(temp_file_path.value());
215 base::FilePath temp_file_path = temp_dir.path().Append(shortcut_filename); local
217 int bytes_written = base::WriteFile(temp_file_path, contents.data(),
235 argv.push_back(temp_file_path.value());

Completed in 2786 milliseconds