HomeSort by relevance Sort by last modified time
    Searched defs:connId (Results 1 - 4 of 4) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
SearchQueue.java 30 public int connId;
42 void add(int connId, int srvcType,
45 entry.connId = connId;
54 void add(int connId, int srvcType,
59 entry.connId = connId;
76 void removeConnId(int connId) {
79 if (entry.connId == connId) {
    [all...]
ContextMap.java 43 int connId;
47 Connection(int connId, String address,int appId) {
48 this.connId = connId;
141 void addConnection(int id, int connId, String address) {
145 mConnections.add(new Connection(connId, address, id));
153 void removeConnection(int id, int connId) {
158 if (connection.connId == connId) {
208 App getByConnId(int connId) {
    [all...]
GattService.java 535 void onConnected(int clientIf, int connId, int status, String address)
538 + ", connId=" + connId + ", address=" + address);
540 if (status == 0) mClientMap.addConnection(clientIf, connId, address);
547 void onDisconnected(int clientIf, int connId, int status, String address)
550 + ", connId=" + connId + ", address=" + address);
552 mClientMap.removeConnection(clientIf, connId);
553 mSearchQueue.removeConnId(connId);
560 void onSearchCompleted(int connId, int status) throws RemoteException
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 259 int32_t connId = android_atomic_inc(&mNextConnId);
262 this, pid, connId, client, audioSessionId,
265 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
364 snprintf(buffer, 255, " pid(%d), connId(%d), status(%d), looping(%s)\n",
500 int32_t connId, const sp<IMediaPlayerClient>& client,
503 ALOGV("Client(%d) constructor", connId);
505 mConnId = connId;
    [all...]

Completed in 68 milliseconds