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

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java45 int appId; field in class:ContextMap.Connection
47 Connection(int connId, String address,int appId) { argument
50 this.appId = appId;
228 return getById(connection.appId);
244 if (connection.address.equals(address) && connection.appId == id)
262 List<Connection> getConnectionByApp(int appId) { argument
267 if (connection.appId == appId)
/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
852 ChannelStateEvent(int appId, byte[] addr, int cfgIndex, int channelId, int state, FileDescriptor fileDescriptor) argument
890 unregisterHealthAppNative(int appId) argument
891 connectChannelNative(byte[] btAddress, int appId) argument
[all...]

Completed in 482 milliseconds