HomeSort by relevance Sort by last modified time
    Searched refs:connId (Results 1 - 8 of 8) 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 553 void onConnected(int clientIf, int connId, int status, String address)
556 + ", connId=" + connId + ", address=" + address);
558 if (status == 0) mClientMap.addConnection(clientIf, connId, address);
565 void onDisconnected(int clientIf, int connId, int status, String address)
568 + ", connId=" + connId + ", address=" + address);
570 mClientMap.removeConnection(clientIf, connId);
571 mSearchQueue.removeConnId(connId);
578 void onSearchCompleted(int connId, int status) throws RemoteException
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.h 39 MetadataRetrieverClient(const sp<IMediaPlayerService>& service, pid_t pid, int32_t connId);
MediaPlayerService.cpp 261 int32_t connId = android_atomic_inc(&mNextConnId);
264 this, pid, connId, client, audioSessionId,
267 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
366 snprintf(buffer, 255, " pid(%d), connId(%d), status(%d), looping(%s)\n",
502 int32_t connId, const sp<IMediaPlayerClient>& client,
505 ALOGV("Client(%d) constructor", connId);
507 mConnId = connId;
    [all...]
MediaPlayerService.h 380 int32_t connId,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTrackerBase.java 694 protected abstract void onDisconnectDone(int connId, AsyncResult ar);
695 protected abstract void onDisconnectDcRetrying(int connId, AsyncResult ar);
    [all...]
DcTracker.java     [all...]

Completed in 87 milliseconds