Lines Matching refs:body
396 * Read in the body of a response. Terminated by a line with
465 * char **body, size_t *bodylen);
468 * there's a body to follow(code % 10 == 1), then the
469 * body buffer is allcoated with memget and stored in
470 * *BODY. The length of the allocated body buffer is stored
471 * in *BODY. The caller must give the body buffer back to
482 size_t textlen, char **body, size_t *bodylen) {
485 *body = NULL;
494 * Code that matches xx1 means there's a response body coming.
497 *body = irs_irp_read_body(pvt, bodylen);
498 if (*body == NULL) {