Home
last modified time | relevance | path

Searched refs:exe_path (Results 1 – 11 of 11) sorted by relevance

/external/chromium/chrome/browser/
Dbrowser_util_win.cc20 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()
Dutility_process_host.cc131 FilePath exe_path = GetUtilityProcessCmd(); in StartProcess() local
132 if (exe_path.empty()) { in StartProcess()
137 CommandLine* cmd_line = new CommandLine(exe_path); in StartProcess()
Dbrowser_main_win.cc286 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/
Dfirst_run_win.cc132 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()
Dfirst_run.cc464 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/
Dprofile_import_process_host.cc85 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/
Dservice_process_util.cc260 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()
Dservice_process_util_mac.mm138 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/
Dnacl_process_host.cc138 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/
Dservice_process_control.cc125 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/
DPath.inc325 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));