Searched defs:appId (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java47 int appId; field in class:ContextMap.Connection
49 Connection(int connId, String address,int appId) { argument
52 this.appId = appId;
247 return getById(connection.appId);
263 if (connection.address.equals(address) && connection.appId == id)
281 List<Connection> getConnectionByApp(int appId) { argument
286 if (connection.appId == appId)
316 connectedmap.put(conn.appId, con
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java166 int appId = registerHealthAppNative(appConfig.getDataType(), halRole,
168 if (appId == -1) {
182 appInfo.mAppId = appId;
192 int appId = (mApps.get(appConfig)).mAppId;
193 if (!unregisterHealthAppNative(appId)) {
194 Log.e(TAG, "Failed to unregister application: id: " + appId);
204 int appId = (mApps.get(chan.mConfig)).mAppId;
205 chan.mChannelId = connectChannelNative(devAddr, appId);
487 private void onAppRegistrationState(int appId, int state) { argument
489 msg.arg1 = appId;
494 onChannelStateChanged(int appId, byte[] addr, int cfgIndex, int channelId, int state, FileDescriptor pfd) argument
527 findAppConfigByAppId(int appId) argument
869 ChannelStateEvent(int appId, byte[] addr, int cfgIndex, int channelId, int state, FileDescriptor fileDescriptor) argument
907 unregisterHealthAppNative(int appId) argument
908 connectChannelNative(byte[] btAddress, int appId) argument
[all...]

Completed in 79 milliseconds