Searched refs:exe_path (Results 1 – 11 of 11) sorted by relevance
/external/chromium/chrome/browser/ |
D | browser_util_win.cc | 20 FilePath exe_path; in IsBrowserAlreadyRunning() local 21 PathService::Get(base::FILE_EXE, &exe_path); in IsBrowserAlreadyRunning() 22 std::wstring exe = exe_path.value(); in IsBrowserAlreadyRunning()
|
D | utility_process_host.cc | 131 FilePath exe_path = GetUtilityProcessCmd(); in StartProcess() local 132 if (exe_path.empty()) { in StartProcess() 137 CommandLine* cmd_line = new CommandLine(exe_path); in StartProcess()
|
D | browser_main_win.cc | 286 FilePath exe_path; in CheckMachineLevelInstall() local 287 PathService::Get(base::DIR_EXE, &exe_path); in CheckMachineLevelInstall() 288 std::wstring exe = exe_path.value(); in CheckMachineLevelInstall()
|
/external/chromium/chrome/browser/first_run/ |
D | first_run_win.cc | 132 FilePath exe_path; in LaunchSetupWithParam() local 133 if (!PathService::Get(base::DIR_MODULE, &exe_path)) in LaunchSetupWithParam() 135 exe_path = exe_path.Append(installer::kInstallerDir); in LaunchSetupWithParam() 136 exe_path = exe_path.Append(installer::kSetupExe); in LaunchSetupWithParam() 138 CommandLine cl(exe_path); in LaunchSetupWithParam()
|
D | first_run.cc | 464 FilePath exe_path; in GetFirstRunSentinelFilePath() local 465 if (!PathService::Get(base::DIR_EXE, &exe_path)) in GetFirstRunSentinelFilePath() 467 if (InstallUtil::IsPerUserInstall(exe_path.value().c_str())) { in GetFirstRunSentinelFilePath() 468 first_run_sentinel = exe_path; in GetFirstRunSentinelFilePath()
|
/external/chromium/chrome/browser/importer/ |
D | profile_import_process_host.cc | 85 FilePath exe_path = GetProfileImportProcessCmd(); in StartProcess() local 86 if (exe_path.empty()) { in StartProcess() 91 CommandLine* cmd_line = new CommandLine(exe_path); in StartProcess()
|
/external/chromium/chrome/common/ |
D | service_process_util.cc | 260 FilePath exe_path = ChildProcessHost::GetChildPath(false); in CreateAutoRunCommandLine() local 261 if (exe_path.empty()) { in CreateAutoRunCommandLine() 264 autorun_command_line_.reset(new CommandLine(exe_path)); in CreateAutoRunCommandLine()
|
D | service_process_util_mac.mm | 138 NSString *exe_path = [launchd_conf objectForKey:@ LAUNCH_JOBKEY_PROGRAM]; 139 if (exe_path) { 140 NSString *bundle_path = [[[exe_path stringByDeletingLastPathComponent] 314 NSString* exe_path = [ns_launchd_conf objectForKey:@ LAUNCH_JOBKEY_PROGRAM]; 315 if (!exe_path) { 320 FilePath executable_path = FilePath([exe_path fileSystemRepresentation]);
|
/external/chromium/chrome/browser/nacl_host/ |
D | nacl_process_host.cc | 138 FilePath exe_path = GetChildPath(true); in LaunchSelLdr() local 139 if (exe_path.empty()) in LaunchSelLdr() 142 CommandLine* cmd_line = new CommandLine(exe_path); in LaunchSelLdr()
|
/external/chromium/chrome/browser/service/ |
D | service_process_control.cc | 125 FilePath exe_path = ChildProcessHost::GetChildPath(true); in Launch() local 126 if (exe_path.empty()) { in Launch() 130 CommandLine* cmd_line = new CommandLine(exe_path); in Launch()
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 325 char exe_path[MAXPATHLEN]; 326 uint32_t size = sizeof(exe_path); 327 if (_NSGetExecutablePath(exe_path, &size) == 0) { 329 if (realpath(exe_path, link_path)) 334 char exe_path[PATH_MAX]; 336 if (getprogpath(exe_path, argv0) != NULL) 337 return Path(exe_path); 339 char exe_path[MAXPATHLEN]; 340 ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path)); 342 return Path(StringRef(exe_path, len));
|