Home
last modified time | relevance | path

Searched refs:currentInfo (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Settings/src/com/android/settings/localepicker/
DNotificationController.java76 NotificationInfo currentInfo = mDataManager.getNotificationInfo(locale); in incrementDismissCount() local
77 NotificationInfo newInfo = new NotificationInfo(currentInfo.getUidCollection(), in incrementDismissCount()
78 currentInfo.getNotificationCount(), in incrementDismissCount()
79 currentInfo.getDismissCount() + 1, in incrementDismissCount()
80 currentInfo.getLastNotificationTimeMs(), in incrementDismissCount()
81 currentInfo.getNotificationId()); in incrementDismissCount()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictIOUtils.java184 final PtNodeInfo currentInfo = dictDecoder.readPtNode(ptNodePos); in getTerminalPosition() local
187 p < currentInfo.mCharacters.length; in getTerminalPosition()
190 || word.codePointAt(j) != currentInfo.mCharacters[p]) { in getTerminalPosition()
198 if (wordPos + currentInfo.mCharacters.length == wordLen) { in getTerminalPosition()
199 return currentInfo.isTerminal() ? ptNodePos : FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
201 wordPos += currentInfo.mCharacters.length; in getTerminalPosition()
202 if (currentInfo.mChildrenAddress == FormatSpec.NO_CHILDREN_ADDRESS) { in getTerminalPosition()
206 dictDecoder.setPosition(currentInfo.mChildrenAddress); in getTerminalPosition()
/packages/apps/Contacts/src/com/android/contacts/util/
DAccountsListAdapter.java66 final AccountInfo currentInfo = mAccounts.isEmpty() in setAccounts() local
73 if (currentInfo != null in setAccounts()
76 && mAccounts.remove(currentInfo)) { in setAccounts()
77 mAccounts.add(0, currentInfo); in setAccounts()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DUpdateHandler.java755 final WordListMetadata currentInfo = MetadataHandler.findWordListById(fromList, id); in compareMetadataForUpgrade() local
762 DebugLogUtils.l("Considering updating ", id, "currentInfo =", currentInfo); in compareMetadataForUpgrade()
764 if (null == currentInfo && null == newInfo) { in compareMetadataForUpgrade()
776 } else if (null == currentInfo) { in compareMetadataForUpgrade()
787 actions.add(new ActionBatch.ForgetAction(clientId, currentInfo, false)); in compareMetadataForUpgrade()
790 if (newInfo.mVersion == currentInfo.mVersion) { in compareMetadataForUpgrade()
791 if (TextUtils.equals(newInfo.mRemoteFilename, currentInfo.mRemoteFilename)) { in compareMetadataForUpgrade()
793 newInfo.mRetryCount = currentInfo.mRetryCount; in compareMetadataForUpgrade()
798 } else if (newInfo.mVersion > currentInfo.mVersion) { in compareMetadataForUpgrade()
802 currentInfo.mId, currentInfo.mVersion); in compareMetadataForUpgrade()
[all …]
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/preview/ui/util/
DLiveWallpaperDeleteUtil.kt45 val currentInfo = wallpaperManager.getWallpaperInfo(FLAG_SYSTEM) in getDeleteAction() constant
57 val currentService = currentInfo?.serviceInfo in getDeleteAction()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DDeletableUtils.kt63 val currentInfo = WallpaperManager.getInstance(context).getWallpaperInfo(FLAG_SYSTEM) in getDeleteAction() constant
76 val currentService = currentInfo?.serviceInfo in getDeleteAction()
/packages/services/Car/service/src/com/android/car/audio/
DCarAudioPolicyVolumeCallback.java120 CarVolumeGroupInfo currentInfo = in evaluateVolumeAdjustmentExternal() local
122 if (info.isMuted() != currentInfo.isMuted()) { in evaluateVolumeAdjustmentExternal()
126 if (info.getVolumeGainIndex() != currentInfo.getVolumeGainIndex()) { in evaluateVolumeAdjustmentExternal()
/packages/modules/SdkExtensions/javatests/com/android/os/ext/
DSdkExtensionsTest.java251 PackageInfo currentInfo = packageManager.getPackageInfo(packageName, flags); in isSideloadedApex() local
252 if (!currentInfo.isApex) { in isSideloadedApex()
257 return !factoryInfo.applicationInfo.sourceDir.equals(currentInfo.applicationInfo.sourceDir); in isSideloadedApex()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSoftApManager.java2183 for (SoftApInfo currentInfo : mCurrentSoftApInfoMap.values()) { in processMessageImpl()
2184 int sapFreq = currentInfo.getFrequency(); in processMessageImpl()
2190 unavailableInstances.add(currentInfo.getApInstanceIdentifier()); in processMessageImpl()
/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiManager.java6825 for (SoftApInfo currentInfo : infos.values()) { in onConnectedClientsOrInfoChanged()
6826 String instance = currentInfo.getApInstanceIdentifier(); in onConnectedClientsOrInfoChanged()
6828 changedInfoClients.put(currentInfo, clients.get(instance)); in onConnectedClientsOrInfoChanged()