TL                 47 ext/com_dotnet/com_com.c 	ITypeLib *TL = NULL;
TL                242 ext/com_dotnet/com_com.c 		TL = php_com_load_typelib_via_cache(typelib_name, obj->code_page, &cached);
TL                244 ext/com_dotnet/com_com.c 		if (TL) {
TL                246 ext/com_dotnet/com_com.c 				php_com_import_typelib(TL, mode, obj->code_page);
TL                251 ext/com_dotnet/com_com.c 			ITypeLib_GetTypeInfo(TL, 0, &obj->typeinfo);
TL                252 ext/com_dotnet/com_com.c 			ITypeLib_Release(TL);
TL                257 ext/com_dotnet/com_com.c 		if (SUCCEEDED(ITypeInfo_GetContainingTypeLib(obj->typeinfo, &TL, &idx))) {
TL                261 ext/com_dotnet/com_com.c 			if (SUCCEEDED(ITypeLib_GetDocumentation(TL, -1, &name, NULL, NULL, NULL))) {
TL                264 ext/com_dotnet/com_com.c 				if (NULL != zend_ts_hash_str_add_ptr(&php_com_typelibraries, typelib_name, typelib_name_len, TL)) {
TL                265 ext/com_dotnet/com_com.c 					php_com_import_typelib(TL, mode, obj->code_page);
TL                268 ext/com_dotnet/com_com.c 					ITypeLib_AddRef(TL);
TL                273 ext/com_dotnet/com_com.c 				php_com_import_typelib(TL, mode, obj->code_page);
TL                276 ext/com_dotnet/com_com.c 			ITypeLib_Release(TL);
TL                 40 ext/com_dotnet/com_typeinfo.c 	ITypeLib *TL = NULL;
TL                 67 ext/com_dotnet/com_typeinfo.c 		hr = LoadRegTypeLib((REFGUID)&clsid, major_i, minor_i, LANG_NEUTRAL, &TL);
TL                 78 ext/com_dotnet/com_typeinfo.c 				hr = ITypeInfo_GetContainingTypeLib(info, &TL, &idx);
TL                 91 ext/com_dotnet/com_typeinfo.c 		if (FAILED(LoadTypeLib(p, &TL))) {
TL                109 ext/com_dotnet/com_typeinfo.c 				for (i = 0; i < SubKeys && TL == NULL; i++) {
TL                132 ext/com_dotnet/com_typeinfo.c 										TL = php_com_load_typelib(str, codepage);
TL                152 ext/com_dotnet/com_typeinfo.c 	return TL;
TL                156 ext/com_dotnet/com_typeinfo.c PHP_COM_DOTNET_API int php_com_import_typelib(ITypeLib *TL, int mode, int codepage)
TL                169 ext/com_dotnet/com_typeinfo.c 	if (TL == NULL) {
TL                173 ext/com_dotnet/com_typeinfo.c 	interfaces = ITypeLib_GetTypeInfoCount(TL);
TL                175 ext/com_dotnet/com_typeinfo.c 		ITypeLib_GetTypeInfoType(TL, i, &pTKind);
TL                177 ext/com_dotnet/com_typeinfo.c 			ITypeLib_GetTypeInfo(TL, i, &TypeInfo);
TL                235 ext/com_dotnet/com_typeinfo.c 	ITypeLib *TL;
TL                241 ext/com_dotnet/com_typeinfo.c 	if ((TL = zend_ts_hash_str_find_ptr(&php_com_typelibraries, search_string, l)) != NULL) {
TL                244 ext/com_dotnet/com_typeinfo.c 		ITypeLib_AddRef(TL);
TL                245 ext/com_dotnet/com_typeinfo.c 		return TL;
TL                250 ext/com_dotnet/com_typeinfo.c 	TL = php_com_load_typelib(name_dup, codepage);
TL                253 ext/com_dotnet/com_typeinfo.c 	if (TL) {
TL                255 ext/com_dotnet/com_typeinfo.c 				search_string, l, TL)) {
TL                257 ext/com_dotnet/com_typeinfo.c 			ITypeLib_AddRef(TL);
TL                261 ext/com_dotnet/com_typeinfo.c 	return TL;
TL                175 ext/com_dotnet/php_com_dotnet_internal.h PHP_COM_DOTNET_API int php_com_import_typelib(ITypeLib *TL, int mode,