Searched defs:Env (Results 1 - 6 of 6) sorted by relevance

/vbox/include/iprt/
H A Denv.h77 * @param Env Environment block handle.
80 RTDECL(int) RTEnvDestroy(RTENV Env); variable
89 * @returns NULL if Env is NULL or invalid.
91 * @param Env Environment block handle.
95 RTDECL(char const * const *) RTEnvGetExecEnvP(RTENV Env); variable
133 * @param Env The environment handle.
136 RTDECL(bool) RTEnvExistEx(RTENV Env, const char *pszVar);
161 * @param Env The environment handle.
167 RTDECL(int) RTEnvGetEx(RTENV Env, const char *pszVar, char *pszValue, size_t cbValue, size_t *pcchActual);
190 * @param Env Handl
[all...]
/vbox/src/VBox/Runtime/generic/
H A DRTEnvDupEx-generic.cpp41 RTDECL(char *) RTEnvDupEx(RTENV Env, const char *pszVar) argument
48 int rc = RTEnvGetEx(Env, pszVar, szSmall, sizeof(szSmall), NULL);
61 rc = RTEnvGetEx(Env, pszVar, pszBuf, cbBuf, NULL);
H A Denv-generic.cpp173 RTDECL(int) RTEnvDestroy(RTENV Env) argument
178 if ( Env == NIL_RTENV
179 || Env == RTENV_DEFAULT)
182 PRTENVINTERNAL pIntEnv = Env;
330 RTDECL(int) RTEnvPutEx(RTENV Env, const char *pszVarEqualValue) argument
336 rc = RTEnvUnsetEx(Env, pszVarEqualValue);
351 rc = RTEnvSetEx(Env, pszVar, pszValue);
358 RTDECL(int) RTEnvSetEx(RTENV Env, const char *pszVar, const char *pszValue)
365 if (Env == RTENV_DEFAULT)
392 PRTENVINTERNAL pIntEnv = Env;
468 RTEnvUnsetEx(RTENV Env, const char *pszVar) argument
528 RTEnvGetEx(RTENV Env, const char *pszVar, char *pszValue, size_t cbValue, size_t *pcchActual) argument
619 RTEnvExistEx(RTENV Env, const char *pszVar) argument
670 RTEnvGetExecEnvP(RTENV Env) argument
[all...]
/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,
/vbox/src/VBox/VMM/include/
H A DREMInternal.h221 CPUX86State Env; member in struct:REM
226 } Env; member in struct:REM
/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,

Completed in 48 milliseconds