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

  /external/chromium_org/content/shell/common/
shell_test_configuration.h 24 base::FilePath temp_path; member in struct:content::ShellTestConfiguration
  /external/chromium_org/win8/delegate_execute/
crash_server_init.cc 70 wchar_t temp_path[MAX_PATH + 1] = {0}; local
71 DWORD path_len = ::GetTempPath(MAX_PATH, temp_path);
91 temp_path, NULL, NULL, NULL,
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker_unittest.cc 172 base::FilePath temp_path; local
173 base::CreateTemporaryFile(&temp_path);
176 TestFileSystemForOpenFile file_system(temp_path, CREATE_FILE);
181 base::Bind(&VerifyWrite, kExpectedSize, temp_path, kWriteData),
192 base::FilePath temp_path; local
193 base::CreateTemporaryFile(&temp_path);
194 google_apis::test_util::WriteStringToFile(temp_path, kInitialData);
198 TestFileSystemForOpenFile file_system(temp_path, OPEN_OR_CREATE_FILE);
203 base::Bind(&VerifyWrite, kExpectedSize, temp_path, kWriteData),
214 base::FilePath temp_path; local
236 base::FilePath temp_path; local
257 base::FilePath temp_path; local
    [all...]
  /external/chromium_org/chrome_frame/
crash_server_init.cc 88 wchar_t temp_path[MAX_PATH + 1] = {0}; local
89 DWORD path_len = ::GetTempPath(MAX_PATH, temp_path);
116 temp_path, NULL, NULL, NULL,
  /external/chromium_org/content/browser/fileapi/
transient_file_util_unittest.cc 77 base::FilePath temp_path; local
79 CreateAndRegisterTemporaryFile(&temp_url, &temp_path);
87 ASSERT_TRUE(base::PathExists(temp_path));
88 ASSERT_FALSE(base::DirectoryExists(temp_path));
99 ASSERT_EQ(temp_path, path);
103 ASSERT_TRUE(base::PathExists(temp_path));
107 ASSERT_EQ(temp_path, path);
115 ASSERT_FALSE(base::PathExists(temp_path));
  /external/chromium_org/content/shell/browser/
shell_browser_main.cc 153 base::FilePath temp_path; local
154 base::GetTempDir(&temp_path);
155 test_controller.SetTempPath(temp_path);
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_operation_runner_unittest.cc 346 base::FilePath temp_path; local
347 ASSERT_TRUE(CreateTempFile(&temp_path));
350 temp_path, kTestData.data(), kTestData.size()));
358 temp_path, URL(kFile),
371 // Now the file must have been created and have the same content as temp_path.
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 577 FilePath temp_path; local
578 if (!PathService::Get(chrome::DIR_USER_DATA_TEMP, &temp_path)) {
585 } else if (file_util::PathExists(temp_path)) {
588 if (!file_util::DirectoryExists(temp_path)) {
591 } else if (!file_util::PathIsWritable(temp_path)) {
599 } else if (!file_util::CreateDirectory(temp_path)) {
613 return temp_path;
  /external/chromium_org/chrome/browser/feedback/
feedback_util.cc 376 base::FilePath temp_path; local
381 if (!base::CreateNewTempDirectory(base::FilePath::StringType(), &temp_path))
383 if (file_util::WriteFile(temp_path.Append(filename),
388 zip::Zip(temp_path, zip_file, false) &&
391 base::DeleteFile(temp_path, true);
  /external/chromium_org/chrome/common/extensions/
extension_file_util.cc 505 base::FilePath temp_path = extensions_dir.Append(kTempDirectoryName); local
506 if (base::PathExists(temp_path)) {
507 if (!base::DirectoryExists(temp_path)) {
508 DLOG(WARNING) << "Not a directory: " << temp_path.value();
511 if (!base::PathIsWritable(temp_path)) {
512 DLOG(WARNING) << "Can't write to path: " << temp_path.value();
516 return temp_path;
520 if (!base::CreateDirectory(temp_path)) {
521 DLOG(WARNING) << "Couldn't create directory: " << temp_path.value();
524 return temp_path;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32regkey_unittest.cc 574 wchar_t temp_path[MAX_PATH] = {0}; local
575 EXPECT_LT(::GetTempPath(ARRAY_SIZE(temp_path), temp_path),
576 static_cast<DWORD>(ARRAY_SIZE(temp_path)));
578 EXPECT_NE(::GetTempFileName(temp_path, L"rkut_",
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
filemediaengine_unittest.cc 148 talk_base::Pathname temp_path; local
149 if (!talk_base::Filesystem::GetTemporaryFolder(temp_path, true, NULL)) {
152 temp_path.SetPathname(
153 talk_base::Filesystem::TempFilename(temp_path, "fme-test-"));
156 *filename = temp_path.pathname();
  /external/chromium_org/cloud_print/virtual_driver/win/install/
setup.cc 193 const base::FilePath* temp_path(
204 temp_path->Append(kDependencyList[i]).value().c_str());
252 base::ScopedTempDir temp_path; local
253 if (!temp_path.CreateUniqueTempDir())
255 ReadyDriverDependencies(temp_path.path());
260 base::FilePath file_path = temp_path.path().Append(kDependencyList[i]);
269 base::FilePath xps_path = temp_path.path().Append(kDriverName);
270 base::FilePath ui_path = temp_path.path().Append(kUiDriverName);
271 base::FilePath ui_help_path = temp_path.path().Append(kHelpName);
  /external/chromium_org/base/
file_util_win.cc 217 wchar_t temp_path[MAX_PATH + 1]; local
218 DWORD path_len = ::GetTempPath(MAX_PATH, temp_path);
224 *path = FilePath(temp_path).StripTrailingSeparators();
  /system/core/sh/
eval.c 697 volatile int temp_path = 0; local
1000 temp_path = 1;
1002 temp_path = 0;
1030 if (temp_path) {
  /external/chromium/base/
file_util_win.cc 387 WCHAR temp_path[MAX_PATH]; local
394 result = i_shell_link->GetPath(temp_path, MAX_PATH,
396 *path = FilePath(temp_path);
546 wchar_t temp_path[MAX_PATH + 1]; local
547 DWORD path_len = ::GetTempPath(MAX_PATH, temp_path);
553 *path = FilePath(temp_path).StripTrailingSeparators();
    [all...]
  /external/chromium/net/url_request/
url_request_unittest.cc 954 FilePath temp_path; local
955 EXPECT_TRUE(file_util::CreateTemporaryFile(&temp_path));
956 GURL temp_url = FilePathToFileURL(temp_path);
957 EXPECT_TRUE(file_util::WriteFile(temp_path, buffer.get(), buffer_size));
960 EXPECT_TRUE(file_util::GetFileSize(temp_path, &file_size));
990 EXPECT_TRUE(file_util::Delete(temp_path, false));
998 FilePath temp_path; local
999 EXPECT_TRUE(file_util::CreateTemporaryFile(&temp_path));
1000 GURL temp_url = FilePathToFileURL(temp_path);
1001 EXPECT_TRUE(file_util::WriteFile(temp_path, buffer.get(), buffer_size))
1041 FilePath temp_path; local
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_main.cc 233 installer::SelfCleaningTempDir temp_path; local
234 if (!temp_path.Initialize(target_path.DirName(),
245 temp_path.path().value(),
249 temp_path.path().value(),
251 install_list->AddDeleteTreeWorkItem(chrome_new_exe, temp_path.path());
253 install_list->AddDeleteTreeWorkItem(chrome_old_exe, temp_path.path())->
277 // temp_path's dtor will take care of deleting or scheduling itself for
279 VLOG(1) << "Deleting temporary directory " << temp_path.path().value();
609 // Initializes |temp_path| to "Temp" within the target directory, and
611 // |temp_path|. Returns false on error
992 base::ScopedTempDir temp_path; local
1400 SelfCleaningTempDir temp_path; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
job.c 254 char temp_path[MAXPATHLEN]; /* need to know its length */
255 unsigned path_size = GetTempPath(sizeof temp_path, temp_path);
262 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
267 path_size + sizemax < sizeof temp_path &&
270 unsigned size = sprintf (temp_path + path_size,
272 temp_path[path_size - 1] == '\\' ? "" : "\\",
274 HANDLE h = CreateFile (temp_path, /* file name */
293 path_size = GetCurrentDirectory (sizeof temp_path, temp_path)
252 char temp_path[MAXPATHLEN]; \/* need to know its length *\/ local
    [all...]
  /external/chromium_org/net/url_request/
url_request_unittest.cc 745 base::FilePath temp_path; local
746 EXPECT_TRUE(base::CreateTemporaryFile(&temp_path));
747 GURL temp_url = FilePathToFileURL(temp_path);
748 EXPECT_TRUE(file_util::WriteFile(temp_path, buffer.get(), buffer_size));
751 EXPECT_TRUE(base::GetFileSize(temp_path, &file_size));
781 EXPECT_TRUE(base::DeleteFile(temp_path, false));
789 base::FilePath temp_path; local
790 EXPECT_TRUE(base::CreateTemporaryFile(&temp_path));
791 GURL temp_url = FilePathToFileURL(temp_path);
792 EXPECT_TRUE(file_util::WriteFile(temp_path, buffer.get(), buffer_size))
832 base::FilePath temp_path; local
    [all...]

Completed in 2720 milliseconds