Searched refs:i_memcasecmp (Results 1 - 12 of 12) sorted by relevance
/dovecot/src/lib-mail/ |
H A D | mail-html2text.c | 75 if (size >= 7 && i_memcasecmp(data, "script", 6) == 0 && 80 if (size >= 6 && i_memcasecmp(data, "style", 5) == 0 && 85 if (size >= 8 && i_memcasecmp(data, "![CDATA[", 8) == 0) { 91 if (size >= 10 && i_memcasecmp(data, "blockquote", 10) == 0 && 97 size >= 12 && i_memcasecmp(data, "/blockquote>", 12) == 0) { 252 if (i_memcasecmp(data+i, "</script>", max_len) == 0) { 265 if (i_memcasecmp(data+i, "</style>", max_len) == 0) { 278 if (i_memcasecmp(data+i, "]]>", max_len) == 0) {
|
H A D | message-decoder.c | 105 if (i_memcasecmp(str_data(value), "7bit", 4) == 0 || 106 i_memcasecmp(str_data(value), "8bit", 4) == 0) 110 if (i_memcasecmp(str_data(value), "base64", 6) == 0) 112 else if (i_memcasecmp(str_data(value), "binary", 6) == 0) 116 if (i_memcasecmp(str_data(value), "quoted-printable", 16) == 0)
|
H A D | mbox-from.c | 27 if (i_memcasecmp(months[i], msg, 3) == 0) {
|
H A D | message-date.c | 157 if (i_memcasecmp(month_names[i], value, 3) == 0) {
|
H A D | istream-binary-converter.c | 222 i_memcasecmp(block.hdr->value, "binary", 6) == 0 &&
|
/dovecot/src/lib/ |
H A D | strfuncs.h | 68 int i_memcasecmp(const void *p1, const void *p2, size_t size) ATTR_PURE;
|
H A D | strfuncs.c | 485 int i_memcasecmp(const void *p1, const void *p2, size_t size) function
|
/dovecot/src/imap-hibernate/ |
H A D | imap-client.c | 265 if (i_memcasecmp(data, "DONE", I_MIN(size, 4)) != 0) 303 if (size <= 4 || i_memcasecmp(data, "IDLE", 4) != 0)
|
/dovecot/src/lib-imap/ |
H A D | imap-parser.c | 249 if (size == 3 && i_memcasecmp(data, "NIL", 3) == 0) {
|
/dovecot/src/lib-smtp/ |
H A D | smtp-client-command.c | 178 i_memcasecmp(data, name, name_len) != 0)
|
/dovecot/src/lib-http/ |
H A D | http-client-request.c | 461 if (size > key_len && i_memcasecmp(data, key, key_len) == 0 &&
|
/dovecot/src/lib-imap-client/ |
H A D | imapc-connection.c | 1212 if (i_memcasecmp(data, "OK ", 3) != 0) {
|
Completed in 38 milliseconds