Searched refs:Env (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstEnv.cpp74 RTENV Env;
75 CHECK_RC(RTEnvClone(&Env, RTENV_DEFAULT), VINF_SUCCESS);
77 CHECK(RTEnvExistEx(Env, k_pszPathVar));
78 CHECK(!RTEnvExistEx(Env, k_pszNonExistantVar));
80 CHECK_RC(RTEnvGetEx(Env, k_pszPathVar, NULL, 0, &cch), VINF_SUCCESS);
82 CHECK_RC(RTEnvGetEx(Env, k_pszPathVar, szBuf, sizeof(szBuf), &cch), VINF_SUCCESS);
83 CHECK_RC(RTEnvGetEx(Env, k_pszPathVar, szBuf, sizeof(szBuf), NULL), VINF_SUCCESS);
84 CHECK_RC(RTEnvGetEx(Env, k_pszPathVar, szBuf, 1, &cch), VERR_BUFFER_OVERFLOW);
85 CHECK_RC(RTEnvGetEx(Env, k_pszPathVar, szBuf, 1, NULL), VERR_BUFFER_OVERFLOW);
97 CHECK_RC(RTEnvSetEx(Env, "IPRTMyNewVa
[all...]
/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...]
H A Dprocess.h128 * @param Env Handle to the environment block for the child.
133 RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess);
/vbox/src/recompiler/
H A DVBoxRecompiler.c247 //AssertCompileMemberSize(REM, Env, REM_ENV_SIZE);
249 AssertCompile(RT_SIZEOFMEMB(REM, Env) <= REM_ENV_SIZE);
251 AssertCompile(RT_SIZEOFMEMB(REM, Env) <= REM_ENV_SIZE);
275 AssertReleaseMsg(sizeof(pVM->rem.padding) >= sizeof(pVM->rem.s), ("%#x >= %#x; sizeof(Env)=%#x\n", sizeof(pVM->rem.padding), sizeof(pVM->rem.s), sizeof(pVM->rem.s.Env)));
276 AssertReleaseMsg(sizeof(pVM->rem.s.Env) <= REM_ENV_SIZE, ("%#x == %#x\n", sizeof(pVM->rem.s.Env), REM_ENV_SIZE));
288 pVM->rem.s.Env.pVM = pVM;
318 if (!cpu_x86_init(&pVM->rem.s.Env, "vbox"))
324 CPUMGetGuestCpuId(pVCpu, 1, 0, &u32Dummy, &u32Dummy, &pVM->rem.s.Env
[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/VMM/include/
H A DREMInternal.h221 CPUX86State Env; member in struct:REM
226 } Env; member in struct:REM
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DToolDefClassObject.py47 for Env in os.environ:
48 self.MacroDictionary["ENV(%s)" % Env] = os.environ[Env]
/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/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,
/vbox/src/VBox/VMM/testcase/
H A DtstVMStructSize.cpp293 CHECK_MEMBER_ALIGNMENT(VM, rem.s.Env, 64);
H A DtstVMStruct.h955 GEN_CHECK_OFF(REM, Env);

Completed in 64 milliseconds