HomeSort by relevance Sort by last modified time
    Searched refs:app_uid (Results 1 - 11 of 11) sorted by null

  /system/bt/btif/include/
btif_uid.h 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);
39 * is signaled by an element with app_uid == -1.
btif_sock_l2cap.h 17 int flags, int app_uid);
19 int* sock_fd, int flags, int app_uid);
btif_sock_rfc.h 36 int app_uid);
39 int* sock_fd, int flags, int app_uid);
  /system/bt/btif/src/
btif_uid.cc 60 int32_t app_uid) {
62 while (node && node->data.app_uid != app_uid) {
68 node->data.app_uid = app_uid;
75 void uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes) {
76 if (app_uid == -1 || bytes == 0) return;
79 uid_set_node_t* node = uid_set_find_or_create_node(set, app_uid);
83 void uid_set_add_rx(uid_set_t* set, int32_t app_uid, uint64_t bytes) {
84 if (app_uid == -1 || bytes == 0) return
    [all...]
btif_sock.cc 44 int flags, int app_uid);
47 int flags, int app_uid);
132 int* sock_fd, int flags, int app_uid) {
144 flags, app_uid);
148 btsock_l2cap_listen(service_name, channel, sock_fd, flags, app_uid);
165 btsock_l2cap_listen(service_name, channel, sock_fd, flags, app_uid);
182 int flags, int app_uid) {
192 btsock_rfc_connect(bd_addr, uuid, channel, sock_fd, flags, app_uid);
196 status = btsock_l2cap_connect(bd_addr, channel, sock_fd, flags, app_uid);
203 status = btsock_l2cap_connect(bd_addr, channel, sock_fd, flags, app_uid);
    [all...]
btif_sock_l2cap.cc 68 int app_uid; // The UID of the app who requested this socket member in struct:l2cap_socket
298 sock->app_uid = -1;
439 accept_rs->app_uid = sock->app_uid;
485 accept_rs->app_uid = sock->app_uid;
619 int app_uid = sock->app_uid; local
627 uid_set_add_tx(uid_set, app_uid, len);
633 int app_uid = -1 local
    [all...]
btif_sock_rfc.cc 92 int app_uid; // UID of the app for which this socket was created. member in struct:__anon1804
218 slot->app_uid = -1;
254 accept_rs->app_uid = srv_rs->app_uid;
271 int* sock_fd, int flags, int app_uid) {
323 slot->app_uid = app_uid;
332 int* sock_fd, int flags, int app_uid) {
382 slot->app_uid = app_uid;
552 int app_uid = -1; local
847 int app_uid = -1; local
    [all...]
  /system/bt/tools/bdtool/
bdtool.c 199 const int app_uid = 0; local
217 &rfcomm_fd, 0, app_uid);
225 error = sock->listen(BTSOCK_SCO, NULL, NULL, 5, &sock_fd, 0, app_uid);
251 (const uint8_t*)&HFP_AG_UUID, 0, &rfcomm_fd, 0, app_uid);
263 app_uid);
  /hardware/libhardware/include/hardware/
bluetooth.h 106 int32_t app_uid; member in struct:__anon48101
386 * app_uid set to -1.
  /system/bt/include/hardware/
bluetooth.h 103 int32_t app_uid; member in struct:__anon1879
375 * where the array is terminated by an element with app_uid set to -1.
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_btservice_AdapterService.cpp 427 for (bt_uid_traffic_t* data = uid_data; data->app_uid != -1; data++) {
435 for (bt_uid_traffic_t* data = uid_data; data->app_uid != -1; data++) {
440 (jint)data->app_uid, (jlong)data->rx_bytes,
    [all...]

Completed in 94 milliseconds