Home
last modified time | relevance | path

Searched refs:connId (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DGattService.java228 boolean permissionCheck(int connId, int handle) { in permissionCheck() argument
229 List<BluetoothGattService> db = gattClientDatabases.get(connId); in permissionCheck()
900 void onConnected(int clientIf, int connId, int status, String address) in onConnected() argument
903 + ", connId=" + connId + ", address=" + address); in onConnected()
905 if (status == 0) mClientMap.addConnection(clientIf, connId, address); in onConnected()
913 void onDisconnected(int clientIf, int connId, int status, String address) in onDisconnected() argument
916 + ", connId=" + connId + ", address=" + address); in onDisconnected()
918 mClientMap.removeConnection(clientIf, connId); in onDisconnected()
925 void onClientPhyUpdate(int connId, int txPhy, int rxPhy, int status) throws RemoteException { in onClientPhyUpdate() argument
926 if (DBG) Log.d(TAG, "onClientPhyUpdate() - connId=" + connId + ", status=" + status); in onClientPhyUpdate()
[all …]
DContextMap.java49 int connId; field in ContextMap.Connection
54 Connection(int connId, String address,int appId) { in Connection() argument
55 this.connId = connId; in Connection()
224 void addConnection(int id, int connId, String address) { in addConnection() argument
228 mConnections.add(new Connection(connId, address, id)); in addConnection()
236 void removeConnection(int id, int connId) { in removeConnection() argument
241 if (connection.connId == connId) { in removeConnection()
358 App getByConnId(int connId) { in getByConnId() argument
362 if (connection.connId == connId){ in getByConnId()
380 return connection.connId; in connIdByAddress()
[all …]
DAppScanStats.java326 sb.append(" " + connection.connId + ": " + in dumpToString()
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceWrapper.java389 for (String connId : parcelableConference.getConnectionIds()) { in addConferenceCall()
390 if (mCallIdMapper.getCall(connId) != null) { in addConferenceCall()
444 for (String connId : parcelableConference.getConnectionIds()) { in addConferenceCall()
445 Call childCall = mCallIdMapper.getCall(connId); in addConferenceCall()
446 Log.d(this, "found child: %s", connId); in addConferenceCall()