• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/libcli/cldap/

Lines Matching defs:subreq

135 static void cldap_recvfrom_done(struct tevent_req *subreq);
173 static void cldap_recvfrom_done(struct tevent_req *subreq)
175 struct cldap_socket *c = tevent_req_callback_data(subreq,
187 ret = tdgram_recvfrom_recv(subreq,
192 talloc_free(subreq);
193 subreq = NULL;
212 talloc_free(subreq);
401 static void cldap_reply_state_destroy(struct tevent_req *subreq);
412 struct tevent_req *subreq;
469 subreq = tdgram_sendto_queue_send(state,
476 if (!subreq) {
480 tevent_req_set_callback(subreq, cldap_reply_state_destroy, state);
491 static void cldap_reply_state_destroy(struct tevent_req *subreq)
493 struct cldap_reply_state *state = tevent_req_callback_data(subreq,
497 talloc_free(subreq);
516 static void cldap_search_state_queue_done(struct tevent_req *subreq);
517 static void cldap_search_state_wakeup_done(struct tevent_req *subreq);
526 struct tevent_req *req, *subreq;
624 subreq = tdgram_sendto_queue_send(state,
631 if (tevent_req_nomem(subreq, req)) {
634 tevent_req_set_callback(subreq, cldap_search_state_queue_done, req);
644 static void cldap_search_state_queue_done(struct tevent_req *subreq)
646 struct tevent_req *req = tevent_req_callback_data(subreq,
654 ret = tdgram_sendto_queue_recv(subreq, &sys_errno);
655 talloc_free(subreq);
679 subreq = tevent_wakeup_send(state,
682 if (tevent_req_nomem(subreq, req)) {
685 tevent_req_set_callback(subreq, cldap_search_state_wakeup_done, req);
688 static void cldap_search_state_wakeup_done(struct tevent_req *subreq)
690 struct tevent_req *req = tevent_req_callback_data(subreq,
696 ok = tevent_wakeup_recv(subreq);
697 talloc_free(subreq);
703 subreq = tdgram_sendto_queue_send(state,
710 if (tevent_req_nomem(subreq, req)) {
713 tevent_req_set_callback(subreq, cldap_search_state_queue_done, req);
822 static void cldap_netlogon_state_done(struct tevent_req *subreq);
830 struct tevent_req *req, *subreq;
916 subreq = cldap_search_send(state, cldap, &state->search);
917 if (tevent_req_nomem(subreq, req)) {
920 tevent_req_set_callback(subreq, cldap_netlogon_state_done, req);
927 static void cldap_netlogon_state_done(struct tevent_req *subreq)
929 struct tevent_req *req = tevent_req_callback_data(subreq,
935 status = cldap_search_recv(subreq, state, &state->search);
936 talloc_free(subreq);