Lines Matching refs:msg
11 const unsigned char *msg;
19 while ((ret = i_stream_read_bytes(input, &msg, &size, startpos + 1)) > 0) {
21 if (msg[i] != '\n') {
22 if (msg[i] == '\0')
28 if (i == 0 || msg[i-1] != '\r') {
33 if (i == 0 || (i == 1 && msg[i-1] == '\r')) {
38 if ((i > 0 && msg[i-1] == '\n') ||
39 (i > 1 && msg[i-2] == '\n' && msg[i-1] == '\r')) {
71 const unsigned char *msg;
79 if ((ret = i_stream_read_more(input, &msg, &size)) <= 0) {
84 if (msg[0] == '\n')
89 if (msg[i] > '\n')
92 if (msg[i] == '\n') {
93 if (msg[i-1] != '\r') {
101 } else if (msg[i] == '\0') {
109 } while ((ret = i_stream_read_bytes(input, &msg, &size, 2)) > 0);
133 const unsigned char *msg;
142 while ((ret = i_stream_read_more(input, &msg, &size)) > 0) {
146 if (msg[i] == '\r') {
150 } else if (msg[i] == '\n') {
153 (i > 0 && msg[i-1] != '\r')) {
170 cr_skipped = msg[i-1] == '\r';