Lines Matching refs:stuff

127 	struct dotnet_runtime_stuff *stuff;  in dotnet_init()  local
131 stuff = malloc(sizeof(*stuff)); in dotnet_init()
132 if (!stuff) { in dotnet_init()
135 memset(stuff, 0, sizeof(*stuff)); in dotnet_init()
139 &IID_ICorRuntimeHost, (LPVOID*)&stuff->dotnet_host); in dotnet_init()
146 hr = ICorRuntimeHost_Start(stuff->dotnet_host); in dotnet_init()
151 hr = ICorRuntimeHost_GetDefaultDomain(stuff->dotnet_host, &unk); in dotnet_init()
156 hr = IUnknown_QueryInterface(unk, &IID_mscorlib_System_AppDomain, (LPVOID*)&stuff->dotnet_domain); in dotnet_init()
160 COMG(dotnet_runtime_stuff) = stuff; in dotnet_init()
168 if (stuff->dotnet_domain) { in dotnet_init()
169 IUnknown_Release(stuff->dotnet_domain); in dotnet_init()
171 if (stuff->dotnet_host) { in dotnet_init()
172 ICorRuntimeHost_Stop(stuff->dotnet_host); in dotnet_init()
173 ICorRuntimeHost_Release(stuff->dotnet_host); in dotnet_init()
175 free(stuff); in dotnet_init()
192 struct dotnet_runtime_stuff *stuff; in PHP_FUNCTION() local
202 stuff = (struct dotnet_runtime_stuff*)COMG(dotnet_runtime_stuff); in PHP_FUNCTION()
203 if (stuff == NULL) { in PHP_FUNCTION()
214 stuff = (struct dotnet_runtime_stuff*)COMG(dotnet_runtime_stuff); in PHP_FUNCTION()
216 } else if (stuff->dotnet_domain == NULL) { in PHP_FUNCTION()
218 hr = ICorRuntimeHost_GetDefaultDomain(stuff->dotnet_host, &unk); in PHP_FUNCTION()
231 hr = IUnknown_QueryInterface(unk, &IID_mscorlib_System_AppDomain, (LPVOID*)&stuff->dotnet_domain); in PHP_FUNCTION()
265 …hr = stuff->dotnet_domain->lpVtbl->CreateInstance(stuff->dotnet_domain, oleassembly_sys, oletype_s… in PHP_FUNCTION()
329 struct dotnet_runtime_stuff *stuff = COMG(dotnet_runtime_stuff); in php_com_dotnet_mshutdown() local
331 if (stuff->dotnet_domain) { in php_com_dotnet_mshutdown()
332 IDispatch_Release(stuff->dotnet_domain); in php_com_dotnet_mshutdown()
334 if (stuff->dotnet_host) { in php_com_dotnet_mshutdown()
335 ICorRuntimeHost_Stop(stuff->dotnet_host); in php_com_dotnet_mshutdown()
336 ICorRuntimeHost_Release(stuff->dotnet_host); in php_com_dotnet_mshutdown()
337 stuff->dotnet_host = NULL; in php_com_dotnet_mshutdown()
339 free(stuff); in php_com_dotnet_mshutdown()
345 struct dotnet_runtime_stuff *stuff = COMG(dotnet_runtime_stuff); in php_com_dotnet_rshutdown() local
347 if (stuff->dotnet_domain) { in php_com_dotnet_rshutdown()
348 IDispatch_Release(stuff->dotnet_domain); in php_com_dotnet_rshutdown()
349 stuff->dotnet_domain = NULL; in php_com_dotnet_rshutdown()