HomeSort by relevance Sort by last modified time
    Searched refs:last_with_datap (Results 1 - 4 of 4) sorted by null

  /external/libevent/
buffer.c 292 struct evbuffer_chain **ch = buf->last_with_datap;
293 /* Find the first victim chain. It might be *last_with_datap */
312 if (*buf->last_with_datap == NULL) {
314 EVUTIL_ASSERT(buf->last_with_datap == &buf->first);
322 buf->last_with_datap = chp;
371 buffer->last_with_datap = &buffer->first;
708 if (!*buf->last_with_datap)
711 while ((*buf->last_with_datap)->next && (*buf->last_with_datap)->next->off) {
712 buf->last_with_datap = &(*buf->last_with_datap)->next
    [all...]
buffer_iocp.c 110 chainp = evbuf->last_with_datap;
120 evbuf->last_with_datap = chainp;
162 evo->buffer.last_with_datap = &evo->buffer.first;
evbuffer-internal.h 94 * The last_with_datap pointer points at _whatever 'next' pointer_
95 * points at the last_with_datap chain. If the last_with_data chain
96 * is the first chain, or it is NULL, then the last_with_datap pointer
99 struct evbuffer_chain **last_with_datap; member in struct:evbuffer
  /external/libevent/test/
regress_buffer.c 82 tt_assert(buf->last_with_datap);
83 if (buf->last_with_datap == &buf->first)
87 if (&chain->next == buf->last_with_datap)
98 tt_assert(*buf->last_with_datap);
100 if (*buf->last_with_datap) {
101 chain = *buf->last_with_datap;
113 tt_assert(buf->last_with_datap == &buf->first);
    [all...]

Completed in 791 milliseconds