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

  /sdk/sdklauncher/
sdklauncher.c 78 LPSTR temp_path = (LPSTR) malloc(MAX_PATH); local
83 int ret = GetTempPath(MAX_PATH - 14, temp_path);
86 free(temp_path);
91 if (!GetTempFileName(temp_path, "txt", 0, temp_filename)) {
112 free(temp_path);
  /external/chromium/net/url_request/
url_request_unittest.cc 681 FilePath temp_path; local
682 EXPECT_TRUE(file_util::CreateTemporaryFile(&temp_path));
683 GURL temp_url = net::FilePathToFileURL(temp_path);
684 EXPECT_TRUE(file_util::WriteFile(temp_path, buffer.get(), buffer_size));
687 EXPECT_TRUE(file_util::GetFileSize(temp_path, &file_size));
714 EXPECT_TRUE(file_util::Delete(temp_path, false));
722 FilePath temp_path; local
723 EXPECT_TRUE(file_util::CreateTemporaryFile(&temp_path));
724 GURL temp_url = net::FilePathToFileURL(temp_path);
725 EXPECT_TRUE(file_util::WriteFile(temp_path, buffer.get(), buffer_size))
762 FilePath temp_path; local
    [all...]
  /external/chromium/base/
file_util_win.cc 286 WCHAR temp_path[MAX_PATH]; local
293 result = i_shell_link->GetPath(temp_path, MAX_PATH,
295 *path = FilePath(temp_path);
427 wchar_t temp_path[MAX_PATH + 1]; local
428 DWORD path_len = ::GetTempPath(MAX_PATH, temp_path);
434 *path = FilePath(temp_path).StripTrailingSeparators();
  /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 213 milliseconds