OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:path_result
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
platform-win32.cc
704
DWORD
path_result
= 0;
local
705
path_result
= GetTempPathA(MAX_PATH, tempPathBuffer);
706
if (
path_result
> MAX_PATH ||
path_result
== 0) return NULL;
[
all
...]
/external/v8/src/
platform-win32.cc
722
DWORD
path_result
= 0;
local
723
path_result
= GetTempPathA(MAX_PATH, tempPathBuffer);
724
if (
path_result
> MAX_PATH ||
path_result
== 0) return NULL;
[
all
...]
Completed in 714 milliseconds