Searched defs:hScriptCtx (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Storage/testcase/ |
H A D | VDScript.h | 155 * @param hScriptCtx The script context to destroy. 157 DECLHIDDEN(void) VDScriptCtxDestroy(VDSCRIPTCTX hScriptCtx); variable 163 * @param hScriptCtx The script context handle. 168 DECLHIDDEN(int) VDScriptCtxCallbacksRegister(VDSCRIPTCTX hScriptCtx, PCVDSCRIPTCALLBACK paCallbacks, 175 * @param hScriptCtx The script context handle. 178 DECLHIDDEN(int) VDScriptCtxLoadScript(VDSCRIPTCTX hScriptCtx, const char *pszScript); 184 * @param hScriptCtx The script context handle. 189 DECLHIDDEN(int) VDScriptCtxCallFn(VDSCRIPTCTX hScriptCtx, const char *pszFnCall, 196 * @param hScriptCtx The script context handle. 218 DECLHIDDEN(int) VDScriptCtxAsRegister(VDSCRIPTCTX hScriptCtx, cons [all...] |
H A D | VDScript.cpp | 2893 DECLHIDDEN(void) VDScriptCtxDestroy(VDSCRIPTCTX hScriptCtx) argument 2895 PVDSCRIPTCTXINT pThis = hScriptCtx; 2899 LogFlowFunc(("hScriptCtx=%p\n", pThis)); 2916 DECLHIDDEN(int) VDScriptCtxCallbacksRegister(VDSCRIPTCTX hScriptCtx, PCVDSCRIPTCALLBACK paCallbacks, argument 2920 PVDSCRIPTCTXINT pThis = hScriptCtx; 2922 LogFlowFunc(("hScriptCtx=%p paCallbacks=%p cCallbacks=%u pvUser=%p\n", 2969 DECLHIDDEN(int) VDScriptCtxLoadScript(VDSCRIPTCTX hScriptCtx, const char *pszScript) argument 2972 PVDSCRIPTCTXINT pThis = hScriptCtx; 2974 LogFlowFunc(("hScriptCtx=%p pszScript=%p\n", pThis, pszScript)); 2992 DECLHIDDEN(int) VDScriptCtxCallFn(VDSCRIPTCTX hScriptCtx, cons argument [all...] |
H A D | tstVDIo.cpp | 2750 VDSCRIPTCTX hScriptCtx = NULL; local 2751 rc = VDScriptCtxCreate(&hScriptCtx); 2755 VDScriptCtxCallbacksRegister(hScriptCtx, g_aScriptActions, g_cScriptActions, &GlobTest)); 2758 rc = VDScriptCtxLoadScript(hScriptCtx, pszScript); 2764 rc = VDScriptCtxCallFn(hScriptCtx, "main", NULL, 0); 2765 VDScriptCtxDestroy(hScriptCtx);
|
Completed in 76 milliseconds