Home
last modified time | relevance | path

Searched refs:system_buffer (Results 1 – 4 of 4) sorted by relevance

/external/chromium/base/
Dbase_paths_win.cc27 wchar_t system_buffer[MAX_PATH]; in PathProviderWin() local
28 system_buffer[0] = 0; in PathProviderWin()
33 GetModuleFileName(NULL, system_buffer, MAX_PATH); in PathProviderWin()
34 cur = FilePath(system_buffer); in PathProviderWin()
40 GetModuleFileName(this_module, system_buffer, MAX_PATH); in PathProviderWin()
41 cur = FilePath(system_buffer); in PathProviderWin()
45 GetWindowsDirectory(system_buffer, MAX_PATH); in PathProviderWin()
46 cur = FilePath(system_buffer); in PathProviderWin()
49 GetSystemDirectory(system_buffer, MAX_PATH); in PathProviderWin()
50 cur = FilePath(system_buffer); in PathProviderWin()
[all …]
Dfile_util_posix.cc598 char system_buffer[PATH_MAX] = ""; in GetCurrentDirectory() local
599 if (!getcwd(system_buffer, sizeof(system_buffer))) { in GetCurrentDirectory()
603 *dir = FilePath(system_buffer); in GetCurrentDirectory()
Dfile_util_win.cc818 wchar_t system_buffer[MAX_PATH]; in GetCurrentDirectory() local
819 system_buffer[0] = 0; in GetCurrentDirectory()
820 DWORD len = ::GetCurrentDirectory(MAX_PATH, system_buffer); in GetCurrentDirectory()
826 std::wstring dir_str(system_buffer); in GetCurrentDirectory()
/external/chromium/chrome/common/
Dchrome_paths_win.cc88 wchar_t system_buffer[MAX_PATH]; in GetUserDesktop() local
89 system_buffer[0] = 0; in GetUserDesktop()
91 SHGFP_TYPE_CURRENT, system_buffer))) in GetUserDesktop()
93 *result = FilePath(system_buffer); in GetUserDesktop()