/system/bt/btif/include/ |
btif_uid.h | 23 struct uid_set_t; 24 typedef struct uid_set_t uid_set_t; typedef in typeref:struct:uid_set_t 30 uid_set_t* uid_set_create(); 32 void uid_set_destroy(uid_set_t* set); 34 void uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes); 35 void uid_set_add_rx(uid_set_t* set, int32_t app_uid, uint64_t bytes); 43 bt_uid_traffic_t* uid_set_read_and_clear(uid_set_t* set);
|
btif_sock.h | 27 bt_status_t btif_sock_init(uid_set_t* uid_set);
|
btif_sock_l2cap.h | 15 bt_status_t btsock_l2cap_init(int handle, uid_set_t* set);
|
btif_sock_rfc.h | 32 bt_status_t btsock_rfc_init(int handle, uid_set_t* set);
|
btif_dm.h | 29 void btif_dm_init(uid_set_t* set);
|
/system/bt/btif/src/ |
btif_uid.cc | 35 typedef struct uid_set_t { struct 38 } uid_set_t; typedef in typeref:struct:uid_set_t 40 uid_set_t* uid_set_create(void) { 41 uid_set_t* set = (uid_set_t*)osi_calloc(sizeof(uid_set_t)); 45 void uid_set_destroy(uid_set_t* set) { 57 // Lock in uid_set_t must be held. 58 static uid_set_node_t* uid_set_find_or_create_node(uid_set_t* set, 74 void uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes) [all...] |
btif_sock.cc | 58 bt_status_t btif_sock_init(uid_set_t* uid_set) {
|
btif_sock_l2cap.cc | 93 static uid_set_t* uid_set = NULL; 338 bt_status_t btsock_l2cap_init(int handle, uid_set_t* set) { [all...] |
btif_sock_rfc.cc | 104 static uid_set_t* uid_set = NULL; 115 bt_status_t btsock_rfc_init(int poll_thread_handle, uid_set_t* set) {
|
btif_core.cc | 128 static uid_set_t* uid_set = NULL; [all...] |
btif_dm.cc | 198 static uid_set_t* uid_set = NULL; 287 void btif_dm_init(uid_set_t* set) { uid_set = set; } [all...] |