HomeSort by relevance Sort by last modified time
    Searched defs:connId (Results 1 - 5 of 5) 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;
156 void addConnection(int id, int connId, String address) {
160 mConnections.add(new Connection(connId, address, id));
168 void removeConnection(int id, int connId) {
173 if (connection.connId == connId) {
223 App getByConnId(int connId) {
    [all...]
GattService.java 640 void onConnected(int clientIf, int connId, int status, String address)
643 + ", connId=" + connId + ", address=" + address);
645 if (status == 0) mClientMap.addConnection(clientIf, connId, address);
653 void onDisconnected(int clientIf, int connId, int status, String address)
656 + ", connId=" + connId + ", address=" + address);
658 mClientMap.removeConnection(clientIf, connId);
659 mSearchQueue.removeConnId(connId);
666 void onSearchCompleted(int connId, int status) throws RemoteException
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
naptypes.h 99 GUID connId;
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp 336 int32_t connId = android_atomic_inc(&mNextConnId);
339 this, pid, connId, client, audioSessionId,
342 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
440 snprintf(buffer, 255, " pid(%d), connId(%d), status(%d), looping(%s)\n",
576 int32_t connId, const sp<IMediaPlayerClient>& client,
579 ALOGV("Client(%d) constructor", connId);
581 mConnId = connId;
    [all...]

Completed in 1325 milliseconds