Lines Matching defs:identity
105 SEC_WINNT_AUTH_IDENTITY identity;
147 /* Populate our identity structure */
148 result = Curl_create_sspi_identity(userp, passwdp, &identity);
155 /* Allow proper cleanup of the identity structure */
156 p_identity = &identity;
229 /* Free the identity structure */
241 * This is used to populate the domain in a SSPI identity structure
248 * identity [in/out] - The identity structure.
253 SEC_WINNT_AUTH_IDENTITY *identity)
258 if(!identity->Domain || !identity->DomainLength) {
271 /* Setup identity's domain and length */
282 free(identity->Domain);
283 identity->Domain = dup_domain.tbyte_ptr;
284 identity->DomainLength = curlx_uztoul(_tcslen(dup_domain.tchar_ptr));
432 /* If the user/passwd that was used to make the identity for http_context
479 SEC_WINNT_AUTH_IDENTITY identity;
487 /* free the copy of user/passwd used to make the previous identity */
492 /* Populate our identity structure */
493 if(Curl_create_sspi_identity(userp, passwdp, &identity)) {
498 /* Populate our identity domain */
500 &identity)) {
505 /* Allow proper cleanup of the identity structure */
506 p_identity = &identity;
667 /* Free the copy of user/passwd used to make the identity for http_context */