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, string_len, olestring, 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, uint *string_len, int codepage TSRMLS_DC)
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         103 ext/com_dotnet/com_variant.c 	OLECHAR *olestring;
olestring         156 ext/com_dotnet/com_variant.c 			olestring = php_com_string_to_olestring(Z_STRVAL_P(z), Z_STRLEN_P(z), codepage TSRMLS_CC);
olestring         158 ext/com_dotnet/com_variant.c 				V_BSTR(v) = SysAllocStringByteLen((char*)olestring, wcslen(olestring) * sizeof(OLECHAR));
olestring         160 ext/com_dotnet/com_variant.c 				V_BSTR(v) = SysAllocStringByteLen((char*)olestring, Z_STRLEN_P(z) * sizeof(OLECHAR));
olestring         162 ext/com_dotnet/com_variant.c 			efree(olestring);
olestring         176 ext/com_dotnet/com_variant.c 	OLECHAR *olestring = NULL;
olestring         219 ext/com_dotnet/com_variant.c 			olestring = V_BSTR(v);
olestring         220 ext/com_dotnet/com_variant.c 			if (olestring) {
olestring         222 ext/com_dotnet/com_variant.c 				Z_STRVAL_P(z) = php_com_olestring_to_string(olestring,
olestring         224 ext/com_dotnet/com_variant.c 				olestring = NULL;
olestring         254 ext/com_dotnet/com_variant.c 	if (olestring) {
olestring         255 ext/com_dotnet/com_variant.c 		efree(olestring);
olestring          87 ext/com_dotnet/php_com_dotnet_internal.h PHP_COM_DOTNET_API char *php_com_olestring_to_string(OLECHAR *olestring,