Searched refs:cur_path (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome_frame/
H A Dchrome_launcher_utils.cc93 base::FilePath cur_path; local
94 PathService::Get(base::DIR_MODULE, &cur_path);
95 cur_path = cur_path.Append(chrome::kBrowserProcessExecutableName);
101 if (!base::PathExists(cur_path)) {
102 PathService::Get(base::DIR_MODULE, &cur_path);
103 cur_path = cur_path.DirName().Append(chrome::kBrowserProcessExecutableName);
106 return cur_path;
H A Dchrome_launcher.cc239 wchar_t cur_path[MAX_PATH * 4] = {0}; local
241 GetModuleFileName(NULL, cur_path, arraysize(cur_path) / 2);
243 PathRemoveFileSpec(cur_path);
246 if (PathAppend(cur_path, kBrowserProcessExecutableName)) {
247 if (!PathFileExists(cur_path)) {
253 PathRemoveFileSpec(cur_path);
254 PathRemoveFileSpec(cur_path);
255 PathAppend(cur_path, kBrowserProcessExecutableName);
258 if (PathFileExists(cur_path)) {
[all...]
/external/llvm/lib/Support/Windows/
H A DPath.inc296 SmallVector<wchar_t, 128> cur_path;
297 cur_path.reserve(128);
299 DWORD len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
307 if (len > cur_path.capacity()) {
308 cur_path.reserve(len);
312 cur_path.set_size(len);
313 // cur_path now holds the current directory in utf-16. Convert to utf-8.
319 cur_path.data(), cur_path
[all...]
/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder_kernel.cc122 ATL::CString cur_path(object_directory_info->ObjectName.Buffer,
130 new_path = path + cur_path;
132 new_path = path + L"\\" + cur_path;
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager.cc1128 base::FilePath cur_path = cache.GetPathOfProfileAtIndex(i); local
1130 if (cur_path != profile_dir && !cache.ProfileIsManagedAtIndex(i) &&
1131 !IsProfileMarkedForDeletion(cur_path)) {
1132 last_non_managed_profile_path = cur_path;

Completed in 134 milliseconds