Searched defs:cEnvVars (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DGuestCtrlPrivate.cpp49 uint32_t cEnvVars = 0; local
66 rc = appendToEnvBlock(pszEnv, ppvEnv, &cbEnv, &cEnvVars);
69 Assert(cEnv == cEnvVars);
75 *pcEnvVars = cEnvVars;
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp2313 * @param cEnvVars The number of environment variables.
2316 static int txsExecSetupEnv(PTXSEXEC pTxsExec, uint32_t cEnvVars, const char * const *papszEnv) argument
2325 for (size_t i = 0; i < cEnvVars; i++)
2462 * @param cEnvVars The environment variable count.
2473 uint32_t cEnvVars, const char * const *papszEnv,
2506 rc = txsExecSetupEnv(pTxsExec, cEnvVars, papszEnv);
2643 /* 5. cEnvVars */
2644 uint32_t const cEnvVars = (size_t)(pchEnd - pch) > sizeof(uint32_t) ? *(uint32_t const *)pch : 0xfff; local
2646 if (cEnvVars * 1 >= (size_t)(pchEnd - pch))
2647 rc = txsReplyFailure(pPktHdr, "BAD ENVC", "Bad or missing environment variable count (%#x)", cEnvVars);
2471 txsDoExecHlp(PCTXSPKTHDR pPktHdr, uint32_t fFlags, const char *pszExecName, uint32_t cArgs, const char * const *papszArgs, uint32_t cEnvVars, const char * const *papszEnv, const char *pszStdIn, const char *pszStdOut, const char *pszStdErr, const char *pszTestPipe, const char *pszUsername, RTMSINTERVAL cMillies) argument
[all...]

Completed in 54 milliseconds