olestring          35 ext/com_dotnet/com_olechar.c 	OLECHAR *olestring = NULL;
olestring          48 ext/com_dotnet/com_olechar.c 		olestring = (OLECHAR*)safe_emalloc(string_len, sizeof(OLECHAR), 0);
olestring          52 ext/com_dotnet/com_olechar.c 		ok = MultiByteToWideChar(codepage, flags, string, (int)string_len, olestring, (int)string_len);
olestring          54 ext/com_dotnet/com_olechar.c 			olestring[ok] = '\0';
olestring          58 ext/com_dotnet/com_olechar.c 		olestring = (OLECHAR*)emalloc(sizeof(OLECHAR));
olestring          59 ext/com_dotnet/com_olechar.c 		*olestring = 0;
olestring          71 ext/com_dotnet/com_olechar.c 	return olestring;
olestring          74 ext/com_dotnet/com_olechar.c PHP_COM_DOTNET_API char *php_com_olestring_to_string(OLECHAR *olestring, size_t *string_len, int codepage)
olestring          80 ext/com_dotnet/com_olechar.c 	length = WideCharToMultiByte(codepage, 0, olestring, -1, NULL, 0, NULL, NULL);
olestring          84 ext/com_dotnet/com_olechar.c 		length = WideCharToMultiByte(codepage, 0, olestring, -1, string, length, NULL, NULL);
olestring         101 ext/com_dotnet/com_variant.c 	OLECHAR *olestring;
olestring         164 ext/com_dotnet/com_variant.c 			olestring = php_com_string_to_olestring(Z_STRVAL_P(z), Z_STRLEN_P(z), codepage);
olestring         166 ext/com_dotnet/com_variant.c 				V_BSTR(v) = SysAllocStringByteLen((char*)olestring, (UINT)(wcslen(olestring) * sizeof(OLECHAR)));
olestring         168 ext/com_dotnet/com_variant.c 				V_BSTR(v) = SysAllocStringByteLen((char*)olestring, (UINT)(Z_STRLEN_P(z) * sizeof(OLECHAR)));
olestring         170 ext/com_dotnet/com_variant.c 			efree(olestring);
olestring         184 ext/com_dotnet/com_variant.c 	OLECHAR *olestring = NULL;
olestring         235 ext/com_dotnet/com_variant.c 			olestring = V_BSTR(v);
olestring         236 ext/com_dotnet/com_variant.c 			if (olestring) {
olestring         238 ext/com_dotnet/com_variant.c 				char *str = php_com_olestring_to_string(olestring,
olestring         243 ext/com_dotnet/com_variant.c 				olestring = NULL;
olestring         273 ext/com_dotnet/com_variant.c 	if (olestring) {
olestring         274 ext/com_dotnet/com_variant.c 		efree(olestring);
olestring          90 ext/com_dotnet/php_com_dotnet_internal.h PHP_COM_DOTNET_API char *php_com_olestring_to_string(OLECHAR *olestring,