Lines Matching defs:line
175 255 - 8, /* Max line len - strlen("AUTH ") - 1 space - crlf */
205 char *line, size_t len, int *resp)
211 if(len >= 4 && !memcmp("-ERR", line, 4)) {
219 /* Do we have the terminating line? */
220 if(len >= 1 && line[0] == '.')
231 if(len >= 3 && !memcmp("+OK", line, 3)) {
238 if(len >= 1 && line[0] == '+') {
652 const char *line = Curl_dyn_ptr(&data->conn->proto.pop3c.pp.recvbuf);
667 lt = memchr(line, '<', len);
670 gt = memchr(lt, '>', len - (lt - line));
702 const char *line = Curl_dyn_ptr(&data->conn->proto.pop3c.pp.recvbuf);
710 if(len >= 4 && !memcmp(line, "STLS", 4))
714 else if(len >= 4 && !memcmp(line, "USER", 4))
718 else if(len >= 5 && !memcmp(line, "SASL ", 5)) {
722 line += 5;
725 /* Loop through the data line */
732 (*line == ' ' || *line == '\t' ||
733 *line == '\r' || *line == '\n')) {
735 line++;
743 for(wordlen = 0; wordlen < len && line[wordlen] != ' ' &&
744 line[wordlen] != '\t' && line[wordlen] != '\r' &&
745 line[wordlen] != '\n';)
749 mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
753 line += wordlen;
925 /* This 'OK' line ends with a CR LF pair which is the two first bytes of the
1466 5 bytes (0d 0a 2e 0d 0a). Note that a line starting with a dot matches