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

/vbox/src/VBox/HostServices/GuestControl/
H A Dgctrl.cpp57 int gctrlPrepareExecArgv(char *pszArgs, void **ppvList, uint32_t *pcbList, uint32_t *pcArgs) argument
83 *ppvList = pszTemp;
104 int gctrlAddToExecEnvv(const char *pszEnv, void **ppvList, uint32_t *pcbList, uint32_t *pcEnv) argument
108 if (*ppvList)
111 char *pvTmp = (char*)RTMemRealloc(*ppvList, cbNewLen);
120 *ppvList = (void**)pvTmp;
128 *ppvList = (void**)pcTmp;
/vbox/src/VBox/Main/src-client/
H A DGuestCtrlPrivate.cpp247 * @param ppvList This is actually a pointer to a char pointer
256 int GuestEnvironment::appendToEnvBlock(const char *pszEnv, void **ppvList, size_t *pcbList, uint32_t *pcEnvVars) argument
260 if (*ppvList)
263 char *pvTmp = (char *)RTMemRealloc(*ppvList, cbNewLen);
270 *ppvList = (void **)pvTmp;
278 *ppvList = (void **)pszTmp;

Completed in 45 milliseconds