OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:temp_path
(Results
1 - 5
of
5
) sorted by null
/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
;
/system/core/sh/
eval.c
697
volatile int
temp_path
;
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
...]
/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
...]
Completed in 184 milliseconds