Searched refs:cb_ptr (Results 1 – 3 of 3) sorted by relevance
48 struct connectbundle **cb_ptr) in bundle_create() argument51 DEBUGASSERT(*cb_ptr == NULL); in bundle_create()52 *cb_ptr = malloc(sizeof(struct connectbundle)); in bundle_create()53 if(!*cb_ptr) in bundle_create()56 (*cb_ptr)->num_connections = 0; in bundle_create()57 (*cb_ptr)->multiuse = BUNDLE_UNKNOWN; in bundle_create()59 (*cb_ptr)->conn_list = Curl_llist_alloc((curl_llist_dtor) conn_llist_dtor); in bundle_create()60 if(!(*cb_ptr)->conn_list) { in bundle_create()61 Curl_safefree(*cb_ptr); in bundle_create()67 static void bundle_destroy(struct connectbundle *cb_ptr) in bundle_destroy() argument[all …]
420 struct connectbundle *cb_ptr;423 cb_ptr = conn->bundle;425 if(cb_ptr) {426 curr = cb_ptr->conn_list->head;
3137 CallbackType *cb_ptr = reinterpret_cast<CallbackType *>(arg); in TestRecordCallback() local3138 (*cb_ptr)(is_write, cb_version, cb_type, buf, len, ssl); in TestRecordCallback()