Searched refs:appId (Results 1 - 4 of 4) 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;
213 return getById(connection.appId);
229 if (connection.address.equals(address) && connection.appId == id)
247 List<Connection> getConnectionByApp(int appId) { argument
252 if (connection.appId == appId)
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java163 int appId = registerHealthAppNative(appConfig.getDataType(), halRole,
165 if (appId == -1) {
179 appInfo.mAppId = appId;
189 int appId = (mApps.get(appConfig)).mAppId;
190 if (!unregisterHealthAppNative(appId)) {
191 Log.e(TAG, "Failed to unregister application: id: " + appId);
201 int appId = (mApps.get(chan.mConfig)).mAppId;
202 chan.mChannelId = connectChannelNative(devAddr, appId);
484 private void onAppRegistrationState(int appId, int state) { argument
486 msg.arg1 = appId;
491 onChannelStateChanged(int appId, byte[] addr, int cfgIndex, int channelId, int state, FileDescriptor pfd) argument
524 findAppConfigByAppId(int appId) argument
849 ChannelStateEvent(int appId, byte[] addr, int cfgIndex, int channelId, int state, FileDescriptor fileDescriptor) argument
887 unregisterHealthAppNative(int appId) argument
888 connectChannelNative(byte[] btAddress, int appId) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DIntentHandler.java119 * 2-phone) Reuse tab with same appId
122 final String appId = intent
131 && (appId != null)
132 && appId.startsWith(mActivity.getPackageName())) {
133 Tab appTab = mTabControl.getTabFromAppId(appId);
141 && !mActivity.getPackageName().equals(appId)) {
144 Tab appTab = mTabControl.getTabFromAppId(appId);
155 appTab.setAppId(appId);
168 tab.setAppId(appId);
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
H A DDictionaryBackupAgent.java168 int appId = cursor.getInt(COLUMN_APPID);
172 String out = name + SEPARATOR + frequency + SEPARATOR + locale + SEPARATOR + appId

Completed in 181 milliseconds