Searched refs:read_idx (Results 1 - 3 of 3) sorted by relevance

/haiku/src/apps/poorman/
H A DPoorManServer.cpp321 &(hc->read_buf[hc->read_idx]),
322 hc->read_size - hc->read_idx,
328 hc->read_idx += retval;
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.h104 size_t read_size, read_idx, checked_idx; member in struct:__anon19
225 ** yet. The caller reads data into hc->read_buf[hc->read_idx] and advances
226 ** hc->read_idx. This routine checks what has been read so far, using
H A Dlibhttpd.c1749 hc->read_idx = 0;
1804 ** hc->read_idx is how much has been read in; hc->checked_idx is how much we
1813 for ( ; hc->checked_idx < hc->read_idx; ++hc->checked_idx )
2417 for ( i = hc->checked_idx; hc->checked_idx < hc->read_idx; ++hc->checked_idx )
2424 if ( c == '\015' && hc->checked_idx < hc->read_idx &&
3230 c = hc->read_idx - hc->checked_idx;
3452 if ( hc->method == METHOD_POST && hc->read_idx > hc->checked_idx )

Completed in 91 milliseconds