Home
last modified time | relevance | path

Searched refs:appId (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DContextMap.java51 int appId; field in ContextMap.Connection
54 Connection(int connId, String address,int appId) { in Connection() argument
57 this.appId = appId; in Connection()
252 void removeConnectionsByAppId(int appId) { in removeConnectionsByAppId() argument
256 if (connection.appId == appId) { in removeConnectionsByAppId()
363 return getById(connection.appId); in getByConnId()
379 if (connection.address.equalsIgnoreCase(address) && connection.appId == id) in connIdByAddress()
397 List<Connection> getConnectionByApp(int appId) { in getConnectionByApp() argument
402 if (connection.appId == appId) in getConnectionByApp()
433 connectedmap.put(conn.appId, conn.address); in getConnectedMap()
DGattService.java1696 for (Integer appId : mClientMap.getAllAppsIds()) { in unregAll()
1697 if (DBG) Log.d(TAG, "unreg:" + appId); in unregAll()
1698 unregisterClient(appId); in unregAll()
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
DHealthService.java163 int appId = registerHealthAppNative(appConfig.getDataType(), halRole, in handleMessage() local
165 if (appId == -1) { in handleMessage()
179 appInfo.mAppId = appId; in handleMessage()
189 int appId = (mApps.get(appConfig)).mAppId; in handleMessage() local
190 if (!unregisterHealthAppNative(appId)) { in handleMessage()
191 Log.e(TAG, "Failed to unregister application: id: " + appId); in handleMessage()
201 int appId = (mApps.get(chan.mConfig)).mAppId; in handleMessage() local
202 chan.mChannelId = connectChannelNative(devAddr, appId); in handleMessage()
490 private void onAppRegistrationState(int appId, int state) { in onAppRegistrationState() argument
492 msg.arg1 = appId; in onAppRegistrationState()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
DInstalledAppListerTest.java181 public static boolean checkAppFound(List<UserAppInfo> mInstalledAppList, String appId, in checkAppFound() argument
184 if (appId.equals(info.appInfo.packageName) && (info.userInfo.id == userId)) { in checkAppFound()
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DDictionaryBackupAgent.java169 int appId = cursor.getInt(COLUMN_APPID); in getDictionary() local
173 String out = name + SEPARATOR + frequency + SEPARATOR + locale + SEPARATOR + appId in getDictionary()
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
DBackend.java258 native void nativeSetSourceInfo(String appName, String version, String appId); in nativeSetSourceInfo() argument