Searched refs:cb_ptr (Results 1 – 4 of 4) sorted by relevance
/external/curl/lib/ |
D | conncache.c | 72 struct connectbundle **cb_ptr) in bundle_create() argument 75 DEBUGASSERT(*cb_ptr == NULL); in bundle_create() 76 *cb_ptr = malloc(sizeof(struct connectbundle)); in bundle_create() 77 if(!*cb_ptr) in bundle_create() 80 (*cb_ptr)->num_connections = 0; in bundle_create() 81 (*cb_ptr)->multiuse = BUNDLE_UNKNOWN; in bundle_create() 83 Curl_llist_init(&(*cb_ptr)->conn_list, (curl_llist_dtor) conn_llist_dtor); in bundle_create() 87 static void bundle_destroy(struct connectbundle *cb_ptr) in bundle_destroy() argument 89 if(!cb_ptr) in bundle_destroy() 92 Curl_llist_destroy(&cb_ptr->conn_list, NULL); in bundle_destroy() [all …]
|
D | pipeline.c | 385 struct connectbundle *cb_ptr; 388 cb_ptr = conn->bundle; 390 if(cb_ptr) { 391 curr = cb_ptr->conn_list->head;
|
/external/boringssl/src/crypto/rsa_extra/ |
D | rsa_test.cc | 973 [](int event, int n, BN_GENCB *cb_ptr) -> int { in TEST() argument 974 bool *failed_ptr = static_cast<bool *>(cb_ptr->arg); in TEST() 1000 [](int event, int n, BN_GENCB *cb_ptr) -> int { in TEST() argument 1001 bool *failed_ptr = static_cast<bool *>(cb_ptr->arg); in TEST()
|
/external/boringssl/src/ssl/ |
D | ssl_test.cc | 2999 CallbackType *cb_ptr = reinterpret_cast<CallbackType *>(arg); in TEST_P() local 3000 (*cb_ptr)(is_write, cb_version, cb_type, buf, len, ssl); in TEST_P()
|