Searched defs:temp_dir (Results 26 - 50 of 103) sorted by relevance

12345

/external/chromium_org/chrome/browser/net/
H A Dnet_log_temp_file.cc140 base::FilePath temp_dir; local
141 if (!GetNetExportLogDirectory(&temp_dir))
144 log_path_ = temp_dir.Append(log_filename_);
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_browsertest.cc65 base::ScopedTempDir temp_dir; local
66 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
72 temp_dir.path(), &delegate, Profile::CREATE_MODE_SYNCHRONOUS));
82 base::ScopedTempDir temp_dir; local
83 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
84 CreatePrefsFileInDirectory(temp_dir.path());
90 temp_dir.path(), &delegate, Profile::CREATE_MODE_SYNCHRONOUS));
100 base::ScopedTempDir temp_dir; local
101 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
107 temp_dir
123 base::ScopedTempDir temp_dir; local
144 base::ScopedTempDir temp_dir; local
172 base::ScopedTempDir temp_dir; local
201 base::ScopedTempDir temp_dir; local
[all...]
/external/chromium_org/chrome/browser/themes/
H A Dtheme_service_unittest.cc69 base::ScopedTempDir temp_dir; local
70 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
75 MakeThemeExtension(temp_dir.path());
91 base::ScopedTempDir temp_dir; local
92 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
97 MakeThemeExtension(temp_dir.path());
/external/chromium_org/chrome/browser/thumbnails/
H A Dthumbnail_service_unittest.cc81 base::ScopedTempDir temp_dir; local
82 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
/external/chromium_org/chrome/common/
H A Dservice_process_util_linux.cc54 base::FilePath temp_dir; local
55 PathService::Get(base::DIR_TEMP, &temp_dir);
57 std::string pipe_path = temp_dir.Append(pipe_name).value();
/external/chromium_org/chrome/test/webdriver/
H A Dwebdriver_capabilities_parser_unittest.cc40 base::ScopedTempDir temp_dir; local
41 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
42 CapabilitiesParser parser(&dict, temp_dir.path(), Logger(), &caps);
62 base::ScopedTempDir temp_dir; local
63 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
64 CapabilitiesParser parser(&dict, temp_dir.path(), Logger(), &caps);
82 base::ScopedTempDir temp_dir; local
83 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
84 CapabilitiesParser parser(&dict, temp_dir.path(), Logger(), &caps);
100 base::ScopedTempDir temp_dir; local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dconvert_web_app.cc94 ScopedTempDir temp_dir; local
95 if (!temp_dir.CreateUniqueTempDirUnderPath(user_data_temp_dir)) {
136 FilePath manifest_path = temp_dir.path().Append(
145 FilePath icons_dir = temp_dir.path().AppendASCII(kIconsDirName);
171 temp_dir.path(),
181 temp_dir.Take(); // The caller takes ownership of the directory.
H A Dsandboxed_extension_unpacker_unittest.cc28 void OnUnpackSuccess(const FilePath& temp_dir, argument
31 // Don't delete temp_dir here, we need to do some post op checking.
42 void(const FilePath& temp_dir,
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file_unittest.cc23 FilePath temp_dir; local
24 ASSERT_TRUE(file_util::CreateNewTempDirectory(kFolderPrefix, &temp_dir));
26 file_deleter_.reset(new FileAutoDeleter(temp_dir));
28 filename_ = temp_dir;
/external/chromium/chrome/browser/tab_contents/
H A Dthumbnail_generator_unittest.cc329 ScopedTempDir temp_dir; local
330 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
/external/chromium_org/base/win/
H A Devent_trace_controller_unittest.cc164 ScopedTempDir temp_dir; local
165 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
167 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(temp_dir.path(), &temp));
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dtest_util.cc125 base::ScopedTempDir temp_dir; local
126 if (!temp_dir.CreateUniqueTempDir())
129 if (!file_util::CreateTemporaryFileInDir(temp_dir.path(), &source_path))
/external/chromium_org/chrome/browser/extensions/api/media_galleries/
H A Dmedia_galleries_apitest.cc139 base::ScopedTempDir temp_dir; local
140 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
141 MakeFakeMediaGalleryForTest(browser()->profile(), temp_dir.path());
149 base::ScopedTempDir temp_dir; local
150 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
151 MakeFakeMediaGalleryForTest(browser()->profile(), temp_dir.path());
/external/chromium_org/chrome/browser/extensions/
H A Dconvert_user_script.cc61 base::ScopedTempDir temp_dir; local
62 if (!temp_dir.CreateUniqueTempDirUnderPath(install_temp_dir)) {
159 base::FilePath manifest_path = temp_dir.path().Append(kManifestFilename);
168 temp_dir.path().AppendASCII("script.js"))) {
177 temp_dir.path(),
188 temp_dir.Take(); // The caller takes ownership of the directory.
H A Dsandboxed_unpacker_unittest.cc35 base::FilePath temp_dir() const { return temp_dir_; } function in class:extensions::MockSandboxedUnpackerClient
40 virtual void OnUnpackSuccess(const base::FilePath& temp_dir,
45 temp_dir_ = temp_dir;
100 return client_->temp_dir().AppendASCII(kTempExtensionName);
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_cache_database_unittest.cc44 base::ScopedTempDir temp_dir; local
47 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
48 base::FilePath history_db_name = temp_dir.path().AppendASCII("history.db");
49 android_cache_db_name = temp_dir.path().AppendASCII(
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_browsertest.cc103 base::ScopedTempDir temp_dir; local
104 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
/external/chromium_org/chrome/test/chromedriver/
H A Dsession.h69 base::ScopedTempDir temp_dir; member in struct:Session
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_database_unittest.cc113 base::ScopedTempDir temp_dir; local
114 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
116 temp_dir.path().AppendASCII("TestDOMStorageDatabase.db");
171 base::ScopedTempDir temp_dir; local
172 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
174 temp_dir.path().AppendASCII("TestDOMStorageDatabase.db");
220 base::ScopedTempDir temp_dir; local
221 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
223 temp_dir.path().AppendASCII("TestDOMStorageDatabase.db");
341 base::ScopedTempDir temp_dir; local
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_unittest.cc52 base::ScopedTempDir temp_dir; local
53 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
62 temp_dir.path(), special_storage_policy_, NULL, task_runner_);
82 base::ScopedTempDir temp_dir; local
83 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
93 temp_dir.path(), special_storage_policy_, NULL, task_runner_);
137 base::ScopedTempDir temp_dir; local
138 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
149 temp_dir.path(), special_storage_policy_, NULL, task_runner_);
/external/chromium_org/third_party/zlib/google/
H A Dzip_unittest.cc156 base::ScopedTempDir temp_dir; local
157 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
158 base::FilePath zip_file = temp_dir.path().AppendASCII("out.zip");
169 base::ScopedTempDir temp_dir; local
170 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
171 base::FilePath zip_file = temp_dir.path().AppendASCII("out.zip");
183 base::ScopedTempDir temp_dir; local
184 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
185 base::FilePath zip_file = temp_dir.path().AppendASCII("out.zip");
/external/chromium/base/
H A Dplatform_file_unittest.cc62 ScopedTempDir temp_dir; local
63 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
64 FilePath file_path = temp_dir.path().AppendASCII("create_file_1");
115 file_path = temp_dir.path().AppendASCII("create_file_2");
131 ScopedTempDir temp_dir; local
132 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
133 FilePath file_path = temp_dir.path().AppendASCII("read_write_file");
203 ScopedTempDir temp_dir; local
204 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
205 FilePath file_path = temp_dir
253 ScopedTempDir temp_dir; local
[all...]
/external/chromium/chrome/browser/
H A Dshell_integration_unittest.cc84 ScopedTempDir temp_dir; local
85 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
88 env.Set("XDG_DATA_HOME", temp_dir.path().value());
90 temp_dir.path().AppendASCII(kTemplateFilename),
99 ScopedTempDir temp_dir; local
100 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
103 env.Set("XDG_DATA_DIRS", temp_dir.path().value());
105 temp_dir.path().AppendASCII("applications")));
107 temp_dir.path().AppendASCII("applications")
117 ScopedTempDir temp_dir; local
[all...]
/external/chromium/chrome/browser/sync/util/
H A Duser_settings_unittest.cc168 ScopedTempDir temp_dir; local
169 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
170 SetUpVersion10Databases(temp_dir.path());
198 FilePath new_style_path = temp_dir.path().Append(
207 ScopedTempDir temp_dir; local
208 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
209 SetUpVersion11Database(temp_dir.path());
249 ScopedTempDir temp_dir; local
250 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
252 settings.Init(temp_dir
263 ScopedTempDir temp_dir; local
[all...]
/external/chromium_org/base/
H A Dplatform_file_unittest.cc31 base::ScopedTempDir temp_dir; local
32 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
33 FilePath file_path = temp_dir.path().AppendASCII("create_file_1");
94 file_path = temp_dir.path().AppendASCII("create_file_2");
110 base::ScopedTempDir temp_dir; local
111 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
112 FilePath file_path = temp_dir.path().AppendASCII("create_file_1");
146 base::ScopedTempDir temp_dir; local
147 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
148 FilePath file_path = temp_dir
225 base::ScopedTempDir temp_dir; local
278 base::ScopedTempDir temp_dir; local
333 base::ScopedTempDir temp_dir; local
[all...]

Completed in 713 milliseconds

12345