/system/bt/osi/include/ |
fixed_queue.h | 26 struct fixed_queue_t; 27 typedef struct fixed_queue_t fixed_queue_t; typedef in typeref:struct:fixed_queue_t 31 typedef void (*fixed_queue_cb)(fixed_queue_t* queue, void* context); 37 fixed_queue_t* fixed_queue_new(size_t capacity); 44 void fixed_queue_free(fixed_queue_t* queue, fixed_queue_free_cb free_cb); 49 void fixed_queue_flush(fixed_queue_t* queue, fixed_queue_free_cb free_cb); 53 bool fixed_queue_is_empty(fixed_queue_t* queue); 57 size_t fixed_queue_length(fixed_queue_t* queue); 61 size_t fixed_queue_capacity(fixed_queue_t* queue) [all...] |
alarm.h | 26 typedef struct fixed_queue_t fixed_queue_t; typedef in typeref:struct:fixed_queue_t
|
/system/bt/osi/src/ |
fixed_queue.cc | 31 typedef struct fixed_queue_t { struct 41 } fixed_queue_t; typedef in typeref:struct:fixed_queue_t 45 fixed_queue_t* fixed_queue_new(size_t capacity) { 46 fixed_queue_t* ret = 47 static_cast<fixed_queue_t*>(osi_calloc(sizeof(fixed_queue_t))); 68 void fixed_queue_free(fixed_queue_t* queue, fixed_queue_free_cb free_cb) { 85 void fixed_queue_flush(fixed_queue_t* queue, fixed_queue_free_cb free_cb) { 96 bool fixed_queue_is_empty(fixed_queue_t* queue) { 103 size_t fixed_queue_length(fixed_queue_t* queue) [all...] |
alarm.cc | 102 fixed_queue_t* queue; // The processing queue to add this alarm to 140 static fixed_queue_t* default_callback_queue; 147 fixed_queue_t* queue, bool for_msg_loop); 152 static void alarm_queue_ready(fixed_queue_t* queue, void* context); 160 static void alarm_register_processing_queue(fixed_queue_t* queue, 232 fixed_queue_t* queue, bool for_msg_loop) { 549 static void alarm_register_processing_queue(fixed_queue_t* queue, 598 static void alarm_queue_ready(fixed_queue_t* queue, UNUSED_ATTR void* context) {
|
thread.cc | 48 fixed_queue_t* work_queue; 249 fixed_queue_t* queue = (fixed_queue_t*)context;
|
/system/bt/osi/test/ |
fixed_queue_test.cc | 40 static void fixed_queue_ready(fixed_queue_t* queue, UNUSED_ATTR void* context) { 55 fixed_queue_t* queue; 83 fixed_queue_t* queue; 125 fixed_queue_t* queue; 147 fixed_queue_t* queue; 169 fixed_queue_t* queue; 197 fixed_queue_t* queue = fixed_queue_new(TEST_QUEUE_SIZE); 234 fixed_queue_t* queue = fixed_queue_new(TEST_QUEUE_SIZE); 264 fixed_queue_t* queue = fixed_queue_new(TEST_QUEUE_SIZE); 295 fixed_queue_t* queue = fixed_queue_new(TEST_QUEUE_SIZE) [all...] |
/system/bt/stack/btu/ |
btu_init.cc | 43 extern fixed_queue_t* btu_hci_msg_queue;
|
/system/bt/stack/rfcomm/ |
port_int.h | 57 fixed_queue_t* queue; /* Queue of buffers waiting to be sent */ 92 fixed_queue_t* cmd_q; /* Queue for command messages on this mux */
|
/system/bt/test/suite/core/ |
thread_performance_test.cc | 25 void callback(fixed_queue_t* queue, void* data) { 50 fixed_queue_t* bt_msg_queue;
|
/system/bt/bta/pan/ |
bta_pan_int.h | 119 fixed_queue_t*
|
/system/bt/stack/avrc/ |
avrc_int.h | 137 fixed_queue_t*
|
/system/bt/btif/src/ |
btif_a2dp_sink.cc | 78 fixed_queue_t* cmd_msg_queue; 79 fixed_queue_t* rx_audio_queue; 102 static void btif_a2dp_sink_command_ready(fixed_queue_t* queue, void* context); 256 fixed_queue_t* cmd_msg_queue; 309 static void btif_a2dp_sink_command_ready(fixed_queue_t* queue,
|
btif_core.cc | 150 extern fixed_queue_t* btu_hci_msg_queue; [all...] |
btif_a2dp_source.cc | 287 fixed_queue_t* tx_audio_queue; [all...] |
/system/bt/stack/l2cap/ |
l2c_int.h | 203 fixed_queue_t* 205 fixed_queue_t* srej_rcv_hold_q; /* Buffers rcvd but held pending SREJ rsp */ 206 fixed_queue_t* retrans_q; /* Buffers being retransmitted */ 308 fixed_queue_t* xmit_hold_q; /* Transmit data hold queue */ 429 fixed_queue_t* le_sec_pending_q; /* LE coc channels waiting for security check [all...] |
l2c_fcr.cc | 755 fixed_queue_t* temp_q = p_ccb->fcrb.srej_rcv_hold_q; [all...] |
/system/bt/stack/btm/ |
btm_ble_int_types.h | 297 fixed_queue_t* conn_pending_q;
|
btm_int_types.h | [all...] |
btm_sec.cc | [all...] |
/system/bt/stack/gatt/ |
gatt_int.h | 221 fixed_queue_t* multi_rsp_q; 285 fixed_queue_t* pending_ind_q; 361 fixed_queue_t* sign_op_queue; 370 fixed_queue_t* srv_chg_clt_q; /* service change clients queue */
|
/system/bt/stack/avct/ |
avct_int.h | 84 fixed_queue_t* tx_q; /* Transmit data buffer queue */
|
/system/bt/stack/bnep/ |
bnep_int.h | 131 fixed_queue_t* xmit_q;
|
/system/bt/stack/avdt/ |
avdt_int.h | 616 fixed_queue_t* cmd_q; // Queue for outgoing command messages 617 fixed_queue_t* rsp_q; // Queue for outgoing response and reject messages [all...] |
/system/bt/stack/gap/ |
gap_conn.cc | 61 fixed_queue_t* tx_queue; /* Queue of buffers waiting to be sent */ 62 fixed_queue_t* rx_queue; /* Queue of buffers waiting to be read */ [all...] |