Home | History | Annotate | Download | only in gatt

Lines Matching refs:connId

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) {
212 if (connection.connId == connId){
230 return connection.connId;
238 String addressByConnId(int connId) {
242 if (connection.connId == connId) return connection.address;
296 b.append("\n " + connection.connId + ": " + connection.address);