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

  /external/chromium/chrome/browser/extensions/
extension_creator.h 55 bool CreateZip(const FilePath& extension_dir, const FilePath& temp_path,
extension_creator.cc 152 const FilePath& temp_path,
154 *zip_path = temp_path.Append(FILE_PATH_LITERAL("extension.zip"));
  /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;
  /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/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/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...]
  /system/core/sh/
eval.c 697 volatile int temp_path; local
1000 temp_path = 1;
1002 temp_path = 0;
1030 if (temp_path) {

Completed in 238 milliseconds