Lines Matching defs:pt
1057 listener_poll_type *pt = apr_pcalloc(p, sizeof(*pt));
1079 pt->type = PT_CSD;
1080 pt->baton = cs;
1081 cs->pfd.client_data = pt;
1316 listener_poll_type *pt = ap_malloc(sizeof(*pt));
1317 pt->type = PT_SERF;
1318 pt->baton = serf_baton;
1319 pfd->client_data = pt;
1328 listener_poll_type *pt = pfd->client_data;
1329 free(pt);
1340 listener_poll_type *pt;
1348 pt = apr_pcalloc(p, sizeof(*pt));
1353 pt->type = PT_ACCEPT;
1354 pt->baton = lr;
1356 pfd->client_data = pt;
1394 listener_poll_type *pt = (listener_poll_type *) pfd->client_data;
1395 event_conn_state_t *cs = (event_conn_state_t *) pt->baton;
1543 listener_poll_type *pt = apr_palloc(p, sizeof(*pt));
1553 pt->type = PT_USER;
1554 pt->baton = scb;
1567 pfds[i]->client_data = pt;
1872 listener_poll_type *pt = (listener_poll_type *) out_pfd->client_data;
1873 if (pt->type == PT_CSD) {
1875 event_conn_state_t *cs = (event_conn_state_t *) pt->baton;
1937 else if (pt->type == PT_ACCEPT) {
1971 ap_listen_rec *lr = (ap_listen_rec *) pt->baton;
2029 } /* if:else on pt->type */
2031 else if (pt->type == PT_SERF) {
2034 serf_event_trigger(g_serf, pt->baton, out_pfd);
2038 else if (pt->type == PT_USER) {
2041 socket_callback_baton_t *baton = (socket_callback_baton_t *) pt->baton;