Lines Matching defs:urlt

618 		const struct imap_url *urlt = &valid_url_tests[i].url_parsed;
632 if (urlp->host.name == NULL || urlt->host.name == NULL) {
634 urlp->host.name == urlt->host.name);
637 strcmp(urlp->host.name, urlt->host.name) == 0);
639 if (urlp->userid == NULL || urlt->userid == NULL) {
641 urlp->userid == urlt->userid);
644 strcmp(urlp->userid, urlt->userid) == 0);
646 if (urlp->auth_type == NULL || urlt->auth_type == NULL) {
648 urlp->auth_type == urlt->auth_type);
651 strcmp(urlp->auth_type, urlt->auth_type) == 0);
655 urlp->port == urlt->port);
658 urlp->port == urlt->port);
662 urlp->host.ip.family == urlt->host.ip.family);
665 urlp->host.ip.family == urlt->host.ip.family);
667 if (urlp->mailbox == NULL || urlt->mailbox == NULL) {
669 urlp->mailbox == urlt->mailbox);
672 strcmp(urlp->mailbox, urlt->mailbox) == 0);
675 urlp->uidvalidity == urlt->uidvalidity);
677 urlp->uid == urlt->uid);
678 if (urlp->section == NULL || urlt->section == NULL) {
680 urlp->section == urlt->section);
683 strcmp(urlp->section, urlt->section) == 0);
687 urlp->partial_offset == urlt->partial_offset &&
688 urlp->partial_size == urlt->partial_size);
689 if (urlp->search_program == NULL || urlt->search_program == NULL) {
692 urlp->search_program == urlt->search_program);
696 strcmp(urlp->search_program, urlt->search_program) == 0);
698 if (urlt->uauth_rumpurl != NULL) {
705 strcmp(urlp->uauth_rumpurl, urlt->uauth_rumpurl) == 0);
708 urlt->uauth_access_application == NULL) {
711 urlp->uauth_access_application == urlt->uauth_access_application);
716 urlt->uauth_access_application) == 0);
719 urlt->uauth_access_user == NULL) {
722 urlp->uauth_access_user == urlt->uauth_access_user);
727 urlt->uauth_access_user) == 0);
729 if (urlp->uauth_mechanism == NULL || urlt->uauth_mechanism == NULL) {
732 urlp->uauth_mechanism == urlt->uauth_mechanism);
736 strcmp(urlp->uauth_mechanism, urlt->uauth_mechanism) == 0);
738 if (urlp->uauth_token == NULL || urlt->uauth_token == NULL) {
741 urlp->uauth_token == urlt->uauth_token);
743 bool equal = urlp->uauth_token_size == urlt->uauth_token_size;
751 if (urlp->uauth_token[i] != urlt->uauth_token[i]) {