Lines Matching refs:length_cur
215 int ret_len = 0, length_cur = length; in resp_print() local
221 while (length_cur > 0) { in resp_print()
231 ret_len = resp_parse(ndo, bp, length_cur); in resp_print()
234 length_cur -= ret_len; in resp_print()
291 int length_cur = length, len, ret_len; in resp_print_string_error_integer() local
295 SKIP_OPCODE(bp, length_cur); in resp_print_string_error_integer()
307 FIND_CRLF(bp_ptr, length_cur); in resp_print_string_error_integer()
326 int length_cur = length, string_len; in resp_print_bulk_string() local
329 SKIP_OPCODE(bp, length_cur); in resp_print_bulk_string()
332 GET_LENGTH(ndo, length_cur, bp, string_len); in resp_print_bulk_string()
339 LCHECK2(length_cur, string_len); in resp_print_bulk_string()
343 length_cur -= string_len; in resp_print_bulk_string()
351 FIND_CRLF(bp, length_cur); in resp_print_bulk_string()
352 CONSUME_CRLF(bp, length_cur); in resp_print_bulk_string()
364 return (length - length_cur); in resp_print_bulk_string()
372 u_int length_cur = length; in resp_print_bulk_array() local
376 SKIP_OPCODE(bp, length_cur); in resp_print_bulk_array()
379 GET_LENGTH(ndo, length_cur, bp, array_len); in resp_print_bulk_array()
384 ret_len = resp_parse(ndo, bp, length_cur); in resp_print_bulk_array()
389 length_cur -= ret_len; in resp_print_bulk_array()
403 return (length - length_cur); in resp_print_bulk_array()
411 int length_cur = length; in resp_print_inline() local
427 CONSUME_CR_OR_LF(bp, length_cur); in resp_print_inline()
433 FIND_CR_OR_LF(bp_ptr, length_cur); in resp_print_inline()
445 CONSUME_CR_OR_LF(bp_ptr, length_cur); in resp_print_inline()
450 return (length - length_cur); in resp_print_inline()