Lines Matching refs:cond1
372 int cond1; in parser_header_state() local
407 cond1 = parser->index > sizeof(CONNECTION) - 1; in parser_header_state()
408 if (cond1 || c != CONNECTION[parser->index]) { in parser_header_state()
419 cond1 = parser->index > sizeof(PROXY_CONNECTION) - 1; in parser_header_state()
420 if (cond1 || c != PROXY_CONNECTION[parser->index]) { in parser_header_state()
431 cond1 = parser->index > sizeof(CONTENT_LENGTH) - 1; in parser_header_state()
432 if (cond1 || c != CONTENT_LENGTH[parser->index]) { in parser_header_state()
443 cond1 = parser->index > sizeof(TRANSFER_ENCODING) - 1; in parser_header_state()
444 if (cond1 || c != TRANSFER_ENCODING[parser->index]) { in parser_header_state()
455 cond1 = parser->index > sizeof(UPGRADE) - 1; in parser_header_state()
456 if (cond1 || c != UPGRADE[parser->index]) { in parser_header_state()
486 int cond1; in header_states() local
552 cond1 = parser->index > sizeof(CHUNKED) - 1; in header_states()
553 if (cond1 || c != CHUNKED[parser->index]) { in header_states()
581 cond1 = parser->index > sizeof(KEEP_ALIVE) - 1; in header_states()
582 if (cond1 || c != KEEP_ALIVE[parser->index]) { in header_states()
592 cond1 = parser->index > sizeof(CLOSE) - 1; in header_states()
593 if (cond1 || c != CLOSE[parser->index]) { in header_states()
603 cond1 = parser->index > sizeof(UPGRADE) - 1; in header_states()
604 if (cond1 || c != UPGRADE[parser->index]) { in header_states()