Lines Matching refs:imap_sendf
100 static CURLcode imap_sendf(struct Curl_easy *data, const char *fmt, ...)
441 result = imap_sendf(data, "CAPABILITY"); in imap_perform_capability()
458 CURLcode result = imap_sendf(data, "STARTTLS"); in imap_perform_starttls()
527 result = imap_sendf(data, "LOGIN %s %s", user ? user : "", in imap_perform_login()
555 result = imap_sendf(data, "AUTHENTICATE %s %s", mech, ir); in imap_perform_authenticate()
559 result = imap_sendf(data, "AUTHENTICATE %s", mech); in imap_perform_authenticate()
654 result = imap_sendf(data, "%s%s", imap->custom, in imap_perform_list()
664 result = imap_sendf(data, "LIST \"%s\" *", mailbox); in imap_perform_list()
705 result = imap_sendf(data, "SELECT %s", mailbox); in imap_perform_select()
730 result = imap_sendf(data, "UID FETCH %s BODY[%s]<%s>", in imap_perform_fetch()
734 result = imap_sendf(data, "UID FETCH %s BODY[%s]", in imap_perform_fetch()
740 result = imap_sendf(data, "FETCH %s BODY[%s]<%s>", in imap_perform_fetch()
744 result = imap_sendf(data, "FETCH %s BODY[%s]", in imap_perform_fetch()
817 result = imap_sendf(data, "APPEND %s (\\Seen) {%" FMT_OFF_T "}", in imap_perform_append()
846 result = imap_sendf(data, "SEARCH %s", imap->query); in imap_perform_search()
863 CURLcode result = imap_sendf(data, "LOGOUT"); in imap_perform_logout()
1772 static CURLcode imap_sendf(struct Curl_easy *data, const char *fmt, ...) in imap_sendf() function