Searched refs:pszExec (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Installer/solaris/
H A DVBoxISAExec.c28 const char *pszExec = getexecname(); local
30 if (!pszExec)
36 rc = isaexec(pszExec, argv, envv);
38 fprintf(stderr, "Failed to find/execute ISA specific executable for %s\n", pszExec);
/vbox/include/iprt/
H A Dprocess.h126 * @param pszExec Executable image to use to create the child process.
133 RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess);
141 * @param pszExec Executable image to use to create the child process.
176 RTR3DECL(int) RTProcCreateEx(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags,
/vbox/src/VBox/Runtime/r3/posix/
H A Dprocess-creation-posix.cpp267 RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess) argument
269 return RTProcCreateEx(pszExec, papszArgs, Env, fFlags,
281 const char *pszExec = (const char *)pvUser1; local
283 int rc = RTPathJoinEx(pszRealExec, RTPATH_MAX, pchPath, cchPath, pszExec, RTSTR_MAX);
295 RTR3DECL(int) RTProcCreateEx(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags, argument
304 AssertPtrReturn(pszExec, VERR_INVALID_POINTER);
305 AssertReturn(*pszExec, VERR_INVALID_PARAMETER);
384 if (access(pszExec, X_OK))
388 || RTPathHavePath(pszExec) )
393 rc = RTPathTraverseList(pszPath, ':', rtPathFindExec, (void *)pszExec,
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dprocess-win.cpp269 RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess) argument
271 return RTProcCreateEx(pszExec, papszArgs, Env, fFlags,
1066 const char *pszExec = (const char *)pvUser1; local
1068 int rc = RTPathJoinEx(pszRealExec, RTPATH_MAX, pchPath, cchPath, pszExec, RTSTR_MAX);
1077 RTR3DECL(int) RTProcCreateEx(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags, argument
1084 AssertPtrReturn(pszExec, VERR_INVALID_POINTER);
1085 AssertReturn(*pszExec, VERR_INVALID_PARAMETER);
1108 && !RTPathHavePath(pszExec)
1109 && !RTPathExists(pszExec) )
1117 rc = RTPathTraverseList(pszPath, ';', rtPathFindExec, (void *)pszExec,
[all...]
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceControlProcess.cpp1218 * @param pszExec Full qualified path of process to start (without arguments).
1230 static int gstcntlProcessCreateProcess(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags, argument
1234 AssertPtrReturn(pszExec, VERR_INVALID_PARAMETER);
1250 if (!RTStrICmp(pszExec, "sysprep"))
1319 if (RTStrStr(pszExec, "vbox_") == pszExec)
1331 rc = gstcntlProcessResolveExecutable(pszExec, szExecExp, sizeof(szExecExp));
1338 rc = gstcntlProcessAllocateArgv(pszExec /* Always use the unmodified executable name as argv0. */,
/vbox/src/bldprogs/
H A Dscmsubversion.cpp180 * @param pszExec Executable image to use to create the child process.
197 int RTProcExecToString(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags, argument
371 * @param pszExec Executable image to use to create the child process.
378 int RTProcExec(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags, argument

Completed in 58 milliseconds