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

  /external/libevent/include/event2/
buffer_compat.h 89 @param cbarg an argument to be provided to the callback function
91 void evbuffer_setcb(struct evbuffer *buffer, evbuffer_cb cb, void *cbarg);
bufferevent_compat.h 69 @param cbarg an argument that will be supplied to each of the callbacks
76 evbuffercb readcb, evbuffercb writecb, everrorcb errorcb, void *cbarg);
rpc.h 184 struct reqstruct *, struct rplystruct *, void *cbarg), \
197 void *cbarg);
211 * @param cbarg the argument to supply to the callback
214 pool, request, reply, cb, cbarg) \
221 cbarg)
237 struct reqstruct *, struct rplystruct *, void *cbarg), \
238 void *cbarg) { \
241 cbarg, \
316 * @param cbarg an additional parameter that can be passed to the callback.
319 #define EVRPC_REGISTER(base, name, request, reply, callback, cbarg) \
    [all...]
bufferevent_struct.h 102 void *cbarg; member in struct:bufferevent
buffer.h 698 @param cbarg an argument to be provided to the callback function
701 struct evbuffer_cb_entry *evbuffer_add_cb(struct evbuffer *buffer, evbuffer_cb_func cb, void *cbarg);
720 int evbuffer_remove_cb(struct evbuffer *buffer, evbuffer_cb_func cb, void *cbarg);
bufferevent.h 295 @param cbarg an argument that will be supplied to each of the callbacks
301 bufferevent_event_cb eventcb, void *cbarg);
  /external/libevent/
bufferevent.c 144 bufev->errorcb(bufev, BEV_EVENT_CONNECTED, bufev->cbarg);
148 bufev->readcb(bufev, bufev->cbarg);
152 bufev->writecb(bufev, bufev->cbarg);
160 bufev->errorcb(bufev, what, bufev->cbarg);
180 void *cbarg = bufev->cbarg; local
182 UNLOCKED(errorcb(bufev, BEV_EVENT_CONNECTED, cbarg));
186 void *cbarg = bufev->cbarg; local
188 UNLOCKED(readcb(bufev, cbarg));
192 void *cbarg = bufev->cbarg; local
198 void *cbarg = bufev->cbarg; local
    [all...]
http-internal.h 116 void *cbarg; member in struct:evhttp_cb
evbuffer-internal.h 71 void *cbarg; member in struct:evbuffer_cb_entry
buffer.c 493 info.orig_size, new_size, cbent->cbarg);
495 cbent->cb.cb_func(buffer, &info, cbent->cbarg);
    [all...]
evrpc.c 832 void *cbarg)
848 ctx->cb_arg = cbarg;
1136 void (*callback)(struct evrpc_req_generic *, void *), void *cbarg,
1149 (void (*)(struct evrpc_req_generic*, void *))callback, cbarg);
bufferevent_sock.c 537 bufferevent_event_cb eventcb, void *cbarg)
544 bufferevent_setcb(bufev, readcb, writecb, eventcb, cbarg);
http.c     [all...]

Completed in 740 milliseconds