HomeSort by relevance Sort by last modified time
    Searched refs:app_uid (Results 1 - 10 of 10) 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 18 int flags, int app_uid);
20 int* sock_fd, int flags, int app_uid);
btif_sock_rfc.h 36 int app_uid);
39 int app_uid);
  /system/bt/btif/src/
btif_uid.cc 59 int32_t app_uid) {
61 while (node && node->data.app_uid != app_uid) {
67 node->data.app_uid = app_uid;
74 void uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes) {
75 if (app_uid == -1 || bytes == 0) return;
78 uid_set_node_t* node = uid_set_find_or_create_node(set, app_uid);
82 void uid_set_add_rx(uid_set_t* set, int32_t app_uid, uint64_t bytes) {
83 if (app_uid == -1 || bytes == 0) return
    [all...]
btif_sock.cc 41 int flags, int app_uid);
45 int app_uid);
125 int* sock_fd, int flags, int app_uid) {
137 flags, app_uid);
141 btsock_l2cap_listen(service_name, channel, sock_fd, flags, app_uid);
160 int app_uid) {
171 btsock_rfc_connect(bd_addr, uuid, channel, sock_fd, flags, app_uid);
175 status = btsock_l2cap_connect(bd_addr, channel, sock_fd, flags, app_uid);
btif_sock_l2cap.cc 68 int app_uid; // The UID of the app who requested this socket member in struct:l2cap_socket
311 sock->app_uid = -1;
452 accept_rs->app_uid = sock->app_uid;
506 accept_rs->app_uid = sock->app_uid;
643 int app_uid = -1; local
649 app_uid = sock->app_uid;
657 uid_set_add_tx(uid_set, app_uid, len)
667 int app_uid = -1; local
684 int app_uid = -1; local
    [all...]
btif_sock_rfc.cc 90 int app_uid; // UID of the app for which this socket was created. member in struct:__anon105997
216 slot->app_uid = -1;
256 accept_rs->app_uid = srv_rs->app_uid;
273 int* sock_fd, int flags, int app_uid) {
324 slot->app_uid = app_uid;
333 int* sock_fd, int flags, int app_uid) {
387 slot->app_uid = app_uid;
558 int app_uid = -1; local
858 int app_uid = -1; local
    [all...]
  /system/bt/tools/bdtool/
bdtool.c 200 const int app_uid = 0; local
218 &rfcomm_fd, 0, app_uid);
226 error = sock->listen(BTSOCK_SCO, NULL, NULL, 5, &sock_fd, 0, app_uid);
252 (const uint8_t*)&HFP_AG_UUID, 0, &rfcomm_fd, 0, app_uid);
264 app_uid);
  /hardware/libhardware/include/hardware/
bluetooth.h 117 int32_t app_uid; member in struct:__anon41017
401 * app_uid set to -1.
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_btservice_AdapterService.cpp 409 for (bt_uid_traffic_t* data = uid_data; data->app_uid != -1; data++) {
417 for (bt_uid_traffic_t* data = uid_data; data->app_uid != -1; data++) {
422 (jint)data->app_uid, (jlong)data->rx_bytes,
    [all...]

Completed in 198 milliseconds