Lines Matching refs:bufp
171 - (buf->last->bufp + buf->last->size)) in buf_output()
174 memcpy (buf->last->bufp + buf->last->size, data, len); in buf_output()
197 newdata->bufp = newdata->text; in buf_output()
233 != buf->last->bufp + buf->last->size)) in buf_append_char()
235 *(buf->last->bufp + buf->last->size) = ch; in buf_append_char()
290 status = (*buf->output) (buf->closure, data->bufp, data->size, in buf_send_output()
308 data->bufp += nbytes; in buf_send_output()
436 data->bufp = data->text; in buf_send_counted()
471 data->bufp = data->text; in buf_send_special_count()
521 memcpy (new->text, cur->bufp, cur->size); in buf_copy_data()
522 new->bufp = new->text; in buf_copy_data()
610 data->bufp = data->text; in buf_read_file()
674 data->bufp = data->text; in buf_read_file_to_eof()
745 || (buf->last->bufp + buf->last->size in buf_input_data()
764 data->bufp = data->text; in buf_input_data()
769 - (buf->last->bufp + buf->last->size)); in buf_input_data()
772 buf->last->bufp + buf->last->size, in buf_input_data()
832 nl = memchr (data->bufp, '\012', data->size); in buf_read_short_line()
835 finallen = nl - data->bufp; in buf_read_short_line()
862 memcpy (p, data->bufp, data->size); in buf_read_short_line()
869 memcpy (p, data->bufp, finallen); in buf_read_short_line()
873 data->bufp = nl + 1; in buf_read_short_line()
891 || (buf->last->bufp + buf->last->size in buf_read_short_line()
908 data->bufp = data->text; in buf_read_short_line()
912 mem = buf->last->bufp + buf->last->size; in buf_read_short_line()
985 data->bufp = data->text; in buf_read_data()
992 status = (*buf->input) (buf->closure, data->bufp, get, in buf_read_data()
1000 *retdata = buf->data->bufp; in buf_read_data()
1005 buf->data->bufp += want; in buf_read_data()
1039 nl = memchr (data->bufp, '\n', data->size); in buf_copy_lines()
1073 len = nl + 1 - nldata->bufp; in buf_copy_lines()
1085 buf_output (outbuf, nldata->bufp, len); in buf_copy_lines()
1086 nldata->bufp += len; in buf_copy_lines()
1133 memcpy (intp, data->bufp, need); in buf_copy_counted()
1136 memcpy (intp, data->bufp, data->size); in buf_copy_counted()
1194 start->bufp += startoff; in buf_copy_counted()
1236 buf_output (outbuf, stop->bufp, stopwant); in buf_copy_counted()
1237 stop->bufp += stopwant; in buf_copy_counted()
1639 outdata->bufp = outdata->text; in packetizing_buffer_output()