stuff             127 ext/com_dotnet/com_dotnet.c 	struct dotnet_runtime_stuff *stuff;
stuff             131 ext/com_dotnet/com_dotnet.c 	stuff = malloc(sizeof(*stuff));
stuff             132 ext/com_dotnet/com_dotnet.c 	if (!stuff) {
stuff             135 ext/com_dotnet/com_dotnet.c 	memset(stuff, 0, sizeof(*stuff));
stuff             139 ext/com_dotnet/com_dotnet.c 			&IID_ICorRuntimeHost, (LPVOID*)&stuff->dotnet_host);
stuff             146 ext/com_dotnet/com_dotnet.c 	hr = ICorRuntimeHost_Start(stuff->dotnet_host);
stuff             151 ext/com_dotnet/com_dotnet.c 	hr = ICorRuntimeHost_GetDefaultDomain(stuff->dotnet_host, &unk);
stuff             156 ext/com_dotnet/com_dotnet.c 	hr = IUnknown_QueryInterface(unk, &IID_mscorlib_System_AppDomain, (LPVOID*)&stuff->dotnet_domain);
stuff             160 ext/com_dotnet/com_dotnet.c 	COMG(dotnet_runtime_stuff) = stuff;
stuff             168 ext/com_dotnet/com_dotnet.c 		if (stuff->dotnet_domain) {
stuff             169 ext/com_dotnet/com_dotnet.c 			IUnknown_Release(stuff->dotnet_domain);
stuff             171 ext/com_dotnet/com_dotnet.c 		if (stuff->dotnet_host) {
stuff             172 ext/com_dotnet/com_dotnet.c 			ICorRuntimeHost_Stop(stuff->dotnet_host);
stuff             173 ext/com_dotnet/com_dotnet.c 			ICorRuntimeHost_Release(stuff->dotnet_host);
stuff             175 ext/com_dotnet/com_dotnet.c 		free(stuff);
stuff             192 ext/com_dotnet/com_dotnet.c 	struct dotnet_runtime_stuff *stuff;
stuff             201 ext/com_dotnet/com_dotnet.c 	stuff = (struct dotnet_runtime_stuff*)COMG(dotnet_runtime_stuff);
stuff             202 ext/com_dotnet/com_dotnet.c 	if (stuff == NULL) {
stuff             213 ext/com_dotnet/com_dotnet.c 		stuff = (struct dotnet_runtime_stuff*)COMG(dotnet_runtime_stuff);
stuff             215 ext/com_dotnet/com_dotnet.c 	} else if (stuff->dotnet_domain == NULL) {
stuff             217 ext/com_dotnet/com_dotnet.c 		hr = ICorRuntimeHost_GetDefaultDomain(stuff->dotnet_host, &unk);
stuff             230 ext/com_dotnet/com_dotnet.c 		hr = IUnknown_QueryInterface(unk, &IID_mscorlib_System_AppDomain, (LPVOID*)&stuff->dotnet_domain);
stuff             258 ext/com_dotnet/com_dotnet.c 	hr = stuff->dotnet_domain->lpVtbl->CreateInstance(stuff->dotnet_domain, oleassembly_sys, oletype_sys, &unk);
stuff             322 ext/com_dotnet/com_dotnet.c 	struct dotnet_runtime_stuff *stuff = COMG(dotnet_runtime_stuff);
stuff             324 ext/com_dotnet/com_dotnet.c 	if (stuff->dotnet_domain) {
stuff             325 ext/com_dotnet/com_dotnet.c 		IDispatch_Release(stuff->dotnet_domain);
stuff             327 ext/com_dotnet/com_dotnet.c 	if (stuff->dotnet_host) {
stuff             328 ext/com_dotnet/com_dotnet.c 		ICorRuntimeHost_Stop(stuff->dotnet_host);
stuff             329 ext/com_dotnet/com_dotnet.c 		ICorRuntimeHost_Release(stuff->dotnet_host);
stuff             330 ext/com_dotnet/com_dotnet.c 		stuff->dotnet_host = NULL;
stuff             332 ext/com_dotnet/com_dotnet.c 	free(stuff);
stuff             338 ext/com_dotnet/com_dotnet.c 	struct dotnet_runtime_stuff *stuff = COMG(dotnet_runtime_stuff);
stuff             340 ext/com_dotnet/com_dotnet.c 	if (stuff->dotnet_domain) {
stuff             341 ext/com_dotnet/com_dotnet.c 		IDispatch_Release(stuff->dotnet_domain);
stuff             342 ext/com_dotnet/com_dotnet.c 		stuff->dotnet_domain = NULL;
stuff            3472 ext/phar/phar.c 			phar_entry_fp *stuff = (phar_entry_fp *) ecalloc(zend_hash_num_elements(&cached_phars), sizeof(phar_entry_fp));
stuff            3477 ext/phar/phar.c 				stuff[pphar->phar_pos].manifest = (phar_entry_fp_info *) ecalloc( zend_hash_num_elements(&(pphar->manifest)), sizeof(phar_entry_fp_info));
stuff            3480 ext/phar/phar.c 			PHAR_G(cached_fp) = stuff;
stuff              62 ext/phar/phar_object.c 	zval *stuff;
stuff              76 ext/phar/phar_object.c 	if (NULL != (stuff = zend_hash_str_find(_SERVER, "PATH_INFO", sizeof("PATH_INFO")-1))) {
stuff              77 ext/phar/phar_object.c 		path_info = Z_STRVAL_P(stuff);
stuff              78 ext/phar/phar_object.c 		code = Z_STRLEN_P(stuff);
stuff              80 ext/phar/phar_object.c 			ZVAL_STR(&temp, Z_STR_P(stuff));
stuff              81 ext/phar/phar_object.c 			ZVAL_STRINGL(stuff, path_info + entry_len, request_uri_len);
stuff              86 ext/phar/phar_object.c 	if (NULL != (stuff = zend_hash_str_find(_SERVER, "PATH_TRANSLATED", sizeof("PATH_TRANSLATED")-1))) {
stuff              89 ext/phar/phar_object.c 		ZVAL_STR(&temp, Z_STR_P(stuff));
stuff              90 ext/phar/phar_object.c 		ZVAL_NEW_STR(stuff, str);
stuff             100 ext/phar/phar_object.c 		if (NULL != (stuff = zend_hash_str_find(_SERVER, "REQUEST_URI", sizeof("REQUEST_URI")-1))) {
stuff             101 ext/phar/phar_object.c 			path_info = Z_STRVAL_P(stuff);
stuff             102 ext/phar/phar_object.c 			code = Z_STRLEN_P(stuff);
stuff             104 ext/phar/phar_object.c 				ZVAL_STR(&temp, Z_STR_P(stuff));
stuff             105 ext/phar/phar_object.c 				ZVAL_STRINGL(stuff, path_info + basename_len, code - basename_len);
stuff             112 ext/phar/phar_object.c 		if (NULL != (stuff = zend_hash_str_find(_SERVER, "PHP_SELF", sizeof("PHP_SELF")-1))) {
stuff             113 ext/phar/phar_object.c 			path_info = Z_STRVAL_P(stuff);
stuff             114 ext/phar/phar_object.c 			code = Z_STRLEN_P(stuff);
stuff             117 ext/phar/phar_object.c 				ZVAL_STR(&temp, Z_STR_P(stuff));
stuff             118 ext/phar/phar_object.c 				ZVAL_STRINGL(stuff, path_info + basename_len, code - basename_len);
stuff             125 ext/phar/phar_object.c 		if (NULL != (stuff = zend_hash_str_find(_SERVER, "SCRIPT_NAME", sizeof("SCRIPT_NAME")-1))) {
stuff             126 ext/phar/phar_object.c 			ZVAL_STR(&temp, Z_STR_P(stuff));
stuff             127 ext/phar/phar_object.c 			ZVAL_STRINGL(stuff, entry, entry_len);
stuff             133 ext/phar/phar_object.c 		if (NULL != (stuff = zend_hash_str_find(_SERVER, "SCRIPT_FILENAME", sizeof("SCRIPT_FILENAME")-1))) {
stuff             136 ext/phar/phar_object.c 			ZVAL_STR(&temp, Z_STR_P(stuff));
stuff             137 ext/phar/phar_object.c 			ZVAL_NEW_STR(stuff, str);