Lines Matching refs:authid
49 COAUTHIDENTITY authid = {0}; in PHP_FUNCTION() local
53 &authid, EOAC_NONE in PHP_FUNCTION()
131 authid.User = php_com_string_to_olestring(user_name, -1, obj->code_page TSRMLS_CC); in PHP_FUNCTION()
132 authid.UserLength = user_name_len; in PHP_FUNCTION()
135 authid.Password = (OLECHAR*)password; in PHP_FUNCTION()
136 authid.PasswordLength = password_len; in PHP_FUNCTION()
138 authid.Password = (OLECHAR*)""; in PHP_FUNCTION()
139 authid.PasswordLength = 0; in PHP_FUNCTION()
143 authid.Domain = (OLECHAR*)domain_name; in PHP_FUNCTION()
144 authid.DomainLength = domain_name_len; in PHP_FUNCTION()
146 authid.Domain = (OLECHAR*)""; in PHP_FUNCTION()
147 authid.DomainLength = 0; in PHP_FUNCTION()
149 authid.Flags = SEC_WINNT_AUTH_IDENTITY_ANSI; in PHP_FUNCTION()
219 STR_FREE((char*)authid.User); in PHP_FUNCTION()