/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 | 638 void onConnected(int clientIf, int connId, int status, String address) 641 + ", connId=" + connId + ", address=" + address); 643 if (status == 0) mClientMap.addConnection(clientIf, connId, address); 650 void onDisconnected(int clientIf, int connId, int status, String address) 653 + ", connId=" + connId + ", address=" + address); 655 mClientMap.removeConnection(clientIf, connId); 656 mSearchQueue.removeConnId(connId); 663 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 | 382 int32_t connId,
|
/external/qemu/distrib/sdl-1.2.15/src/timer/macos/ |
FastTimes.c | 342 CFragConnectionID connID; 346 kLoadCFrag, &connID, &entry, errorStr)) return(NULL); 347 if (/* error = */ FindSymbol(connID, funcName, &func, &symClass))
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DcController.java | 224 if (DBG) log("onDataStateChanged: Found ConnId=" + newState.cid
|
DcTracker.java | [all...] |
DcTrackerBase.java | 694 protected abstract void onDisconnectDone(int connId, AsyncResult ar); 695 protected abstract void onDisconnectDcRetrying(int connId, AsyncResult ar); [all...] |