Home | History | Annotate | Download | only in http

Lines Matching refs:domain

51                                const string16& domain,
60 identity.Domain =
61 reinterpret_cast<unsigned short*>(const_cast<wchar_t*>(domain.c_str()));
62 identity.DomainLength = domain.size();
299 string16 domain;
301 SplitDomainAndUser(*username, &domain, &user);
302 rv = AcquireExplicitCredentials(library_, security_package_, domain,
395 string16* domain,
397 // |combined| may be in the form "user" or "DOMAIN\user".
399 // TODO(cbentzel): I believe user@domain is also a valid form.
402 domain->clear();
405 *domain = combined.substr(0, backslash_idx);