HomeSort by relevance Sort by last modified time
    Searched defs:temp_dir (Results 1 - 16 of 16) sorted by null

  /external/chromium/chrome/browser/extensions/
convert_user_script.cc 55 ScopedTempDir temp_dir; local
56 if (!temp_dir.CreateUniqueTempDirUnderPath(user_data_temp_dir)) {
134 FilePath manifest_path = temp_dir.path().Append(
144 temp_dir.path().AppendASCII("script.js"))) {
150 temp_dir.path(),
160 temp_dir.Take(); // The caller takes ownership of the directory.
test_extension_prefs.h 30 const FilePath& temp_dir() const { return temp_dir_.path(); } function in class:TestExtensionPrefs
convert_web_app.cc 94 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.
extension_service_unittest.cc 543 ScopedTempDir temp_dir; local
544 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
1502 ScopedTempDir temp_dir; local
1547 ScopedTempDir temp_dir; local
1626 ScopedTempDir temp_dir; local
    [all...]
  /external/chromium/chrome/common/
zip_unittest.cc 124 ScopedTempDir temp_dir; local
125 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
126 FilePath zip_file = temp_dir.path().AppendASCII("out.zip");
137 ScopedTempDir temp_dir; local
138 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
139 FilePath zip_file = temp_dir.path().AppendASCII("out.zip");
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file_unittest.cc 23 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/
shell_integration_unittest.cc 84 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...]
shell_integration_linux.cc 76 ScopedTempDir temp_dir;
77 if (!temp_dir.CreateUniqueTempDir())
80 FilePath temp_file_path = temp_dir.path().Append(
154 ScopedTempDir temp_dir; local
155 if (!temp_dir.CreateUniqueTempDir())
158 FilePath temp_file_path = temp_dir.path().Append(shortcut_filename);
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator_unittest.cc 329 ScopedTempDir temp_dir; local
330 ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
  /external/chromium/base/
platform_file_unittest.cc 62 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.path().AppendASCII("truncate_file")
253 ScopedTempDir temp_dir; local
    [all...]
shared_memory_posix.cc 290 FilePath temp_dir; local
291 if (!file_util::GetShmemTempDir(&temp_dir))
294 *path = temp_dir.AppendASCII("com.google.chrome.shmem." + mem_name);
file_util_unittest.cc 425 // temp_dir
433 // |-> to_sub_a (reparse point to temp_dir\base_a\sub_a)
434 // |-> to_base_b (reparse point to temp_dir\base_b)
435 // |-> to_sub_long (reparse point to temp_dir\sub_a\long_name_\sub_long)
1506 FilePath temp_dir; local
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings_unittest.cc 168 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.path().AppendASCII("UserSettings.sqlite3"))
263 ScopedTempDir temp_dir; local
    [all...]
  /external/qemu/android/utils/
tempfile.c 61 char temp_dir[MAX_PATH]; local
62 char *p = temp_dir, *end = p + sizeof(temp_dir);
71 retval = GetTempFileName(temp_dir, "TMP", 0, temp_namebuff);
73 D( "can't create temporary file in '%s'", temp_dir );
  /external/webkit/Tools/Scripts/webkitpy/common/system/
autoinstall.py 70 target_dir=None, temp_dir=None):
84 temp_dir: The directory path to use for any temporary files
100 self._temp_dir = temp_dir
193 temp_dir = self._temp_dir
194 if temp_dir is None or os.path.exists(temp_dir):
197 self._create_directory(temp_dir, "autoinstall temp")
504 temp_dir = os.path.join(target_dir, "Temp") variable in class:AutoInstaller
507 temp_dir=temp_dir)
    [all...]
  /external/qemu/
block.c 226 char temp_dir[MAX_PATH]; local
228 GetTempPath(MAX_PATH, temp_dir);
229 GetTempFileName(temp_dir, "qem", 0, filename);
    [all...]

Completed in 975 milliseconds