Searched defs:new (Results 1 - 4 of 4) sorted by relevance

/dovecot/src/lib-http/
H A Dhttp-auth.c408 struct http_auth_challenge *new; local
410 new = p_new(pool, struct http_auth_challenge, 1);
411 http_auth_challenge_copy(pool, new, src);
413 return new;
431 struct http_auth_credentials *new; local
433 new = p_new(pool, struct http_auth_credentials, 1);
434 http_auth_credentials_copy(pool, new, src);
436 return new;
H A Dhttp-server-response.c74 start a new one (would usually be a failure response)
190 struct http_auth_challenge *new; local
196 new = array_append_space(&resp->auth_challenges);
197 http_auth_challenge_copy(pool, new, chlng);
/dovecot/src/lib-smtp/
H A Dsmtp-address.c605 struct smtp_address *new; local
623 new = (struct smtp_address *)data;
624 localpart = PTR_OFFSET(data, sizeof(*new));
627 domain = PTR_OFFSET(data, sizeof(*new) + lpsize);
630 new->localpart = localpart;
631 new->domain = domain;
633 return new;
659 struct smtp_address *new; local
664 new = t_new(struct smtp_address, 1);
665 new
[all...]
/dovecot/src/auth/
H A Dmech-gssapi.c225 gss_name_t new; local
227 major_status = gss_duplicate_name(&minor_status, old, &new);
233 return new;

Completed in 25 milliseconds