/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/provider/ |
H A D | KnowledgeGraph.java | 58 boolean updated = false; in populateArtist() 70 return updated; in populateArtist() 80 boolean updated = false; in populateAlbum() 92 return updated; in populateAlbum() 97 boolean updated = false; in populateMovie() 102 updated |= movie.setPosterUri(Uri.parse(imageUrl)); in populateMovie() 108 return updated; in populateMovie() 113 boolean updated = false; in populateSeries() 124 return updated; in populateSeries() 129 boolean updated = false; in populateEpisode() [all …]
|
H A D | OmdbApi.java | 68 boolean updated = false; in populateMovie() 71 updated |= movie.setPosterUri(getPosterUri(root.getString("imdbID"))); in populateMovie() 72 updated |= movie.setSynopsis(root.getString("Plot")); in populateMovie() 77 return updated; in populateMovie() 82 boolean updated = false; in populateSeries() 85 updated |= series.setPosterUri(getPosterUri(root.getString("imdbID"))); in populateSeries() 90 return updated; in populateSeries() 95 boolean updated = false; in populateEpisode() 98 updated |= episode.setPosterUri(getPosterUri(root.getString("imdbID"))); in populateEpisode() 103 return updated; in populateEpisode()
|
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/db/ |
H A D | AudioStore.java | 241 boolean updated = false; in loadData() 282 return updated; in loadData() 286 boolean updated = false; in loadData() 311 return updated; in loadData() 315 boolean updated = false; in loadData() 356 return updated; in loadData() 385 return updated; in loadData() 414 return updated; in loadData() 448 return updated; in loadAlbums() 474 return updated; in loadAudios() [all …]
|
H A D | MediaDb.java | 255 if (updated) { in loadData() 272 if (updated) { in loadData() 289 updated |= mAudioStore.loadData(album); in loadData() 292 if (updated) { in loadData() 309 if (updated) { in loadData() 323 if (updated) { in loadData() 338 updated |= mVideoStore.loadData(movie); in loadData() 341 if (updated) { in loadData() 361 if (updated) { in loadData() 382 if (updated) { in loadData() [all …]
|
H A D | VideoStore.java | 225 boolean updated = false; in loadData() 250 updated |= other.setTitle(title); in loadData() 254 updated |= other.setDuration(duration); in loadData() 258 updated |= other.setDateTaken(dateTaken); in loadData() 263 updated |= other.setLatLong(latitude, longitude); in loadData() 273 updated |= other.setThumbnailUri(thumbnailUri); in loadData() 276 return updated; in loadData()
|
/aosp12/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
H A D | Offsettable.java | 54 private boolean updated; field in Offsettable 96 if (!updated) { in getNewPosition() 106 if (!updated) { in setNewPosition() 108 updated = true; in setNewPosition() 115 return (originalPositionKnown && updated); in readyForFinalOffsetToBeWritten()
|
/aosp12/build/make/tools/product_config/src/com/android/build/config/ |
H A D | OutputChecker.java | 57 public final Value updated; field in OutputChecker.Variable 63 public Variable(String name, VarType type, Str original, Value updated) { in Variable() argument 67 this.updated = updated; in Variable() 73 public Variable addUpdated(Value updated) { in addUpdated() argument 74 return new Variable(name, type, original, updated); in addUpdated() 82 final Str normalizedUpdated = Value.normalize(updated); in isSame() 114 + Value.oneLinePerWord(var.updated, "<null>")); in reportErrors()
|
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/src/ |
H A D | SubscriptionManager.cpp | 40 bool updated = (updatedRate > oldOpts.sampleRate) || (updatedFlags != oldOpts.flags); in mergeSubscribeOptions() local 41 if (updated) { in mergeSubscribeOptions() 47 return updated; in mergeSubscribeOptions() 110 SubscribeOptions updated; in addOrUpdateSubscription() local 111 if (updateHalEventSubscriptionLocked(opts, &updated)) { in addOrUpdateSubscription() 112 outUpdatedSubscriptions->push_back(updated); in addOrUpdateSubscription() 172 bool updated = false; in updateHalEventSubscriptionLocked() local 177 updated = true; in updateHalEventSubscriptionLocked() 184 updated = true; in updateHalEventSubscriptionLocked() 188 return updated; in updateHalEventSubscriptionLocked()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | RatRatcheterTest.java | 57 boolean updated = RatRatcheter.updateBandwidths(bandwidths, mServiceState); in testUpdateBandwidthsSuccess() 59 assertTrue(updated); in testUpdateBandwidthsSuccess() 69 boolean updated = RatRatcheter.updateBandwidths(newBandwidths, mServiceState); in testUpdateBandwidthsFailure() 71 assertFalse(updated); in testUpdateBandwidthsFailure() 80 boolean updated = RatRatcheter.updateBandwidths(null, mServiceState); in testUpdateBandwidthsNull() 82 assertFalse(updated); in testUpdateBandwidthsNull()
|
/aosp12/art/runtime/ |
H A D | thread_list.cc | 384 DCHECK(updated); in RunCheckpoint() 564 DCHECK(updated); in FlipThreadRoots() 598 DCHECK(updated); in FlipThreadRoots() 703 DCHECK(updated); in SuspendAllInternal() 797 DCHECK(updated); in ResumeAll() 908 DCHECK(updated); in SuspendThreadByPeer() 936 DCHECK(updated); in SuspendThreadByPeer() 1048 DCHECK(updated); in SuspendThreadByThreadId() 1172 DCHECK(updated); in SuspendAllDaemonThreadsForShutdown() 1276 DCHECK(updated); in Register() [all …]
|
H A D | imt_conflict_table.h | 121 std::pair<ArtMethod*, ArtMethod*> updated = visitor(input); in Visit() local 122 if (input.first != updated.first) { in Visit() 123 SetInterfaceMethod(table_index, pointer_size, updated.first); in Visit() 125 if (input.second != updated.second) { in Visit() 126 SetImplementationMethod(table_index, pointer_size, updated.second); in Visit()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationInfoTest.java | 987 ArgumentCaptor<NotificationChannel> updated = in testSilenceCallsUpdateNotificationChannel() local 990 anyString(), eq(TEST_UID), updated.capture()); in testSilenceCallsUpdateNotificationChannel() 991 assertTrue((updated.getValue().getUserLockedFields() in testSilenceCallsUpdateNotificationChannel() 1027 ArgumentCaptor<NotificationChannel> updated = in testUnSilenceCallsUpdateNotificationChannel() local 1031 assertTrue((updated.getValue().getUserLockedFields() in testUnSilenceCallsUpdateNotificationChannel() 1094 ArgumentCaptor<NotificationChannel> updated = in testSilenceCallsUpdateNotificationChannel_channelImportanceUnspecified() local 1098 assertTrue((updated.getValue().getUserLockedFields() in testSilenceCallsUpdateNotificationChannel_channelImportanceUnspecified() 1133 ArgumentCaptor<NotificationChannel> updated = in testSilenceCallsUpdateNotificationChannel_channelImportanceMin() local 1171 ArgumentCaptor<NotificationChannel> updated = in testAlertCallsUpdateNotificationChannel_channelImportanceMin() local 1263 ArgumentCaptor<NotificationChannel> updated = in testUnSilenceCallsUpdateNotificationChannel_channelImportanceUnspecified() local [all …]
|
/aosp12/packages/services/Car/service/src/com/android/car/power/ |
H A D | SilentModeHandler.java | 183 boolean updated = false; in switchToForcedMode() 191 updated = true; in switchToForcedMode() 194 if (updated) { in switchToForcedMode() 203 boolean updated = false; in switchToNonForcedMode() 209 updated = true; in switchToNonForcedMode() 212 if (updated) { in switchToNonForcedMode()
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/searchfragment/list/ |
H A D | SearchCursorManager.java | 150 boolean updated = false; in setQuery() 152 updated = contactsCursor.updateQuery(query); in setQuery() 156 updated |= nearbyPlacesCursor.updateQuery(query); in setQuery() 160 updated |= corpDirectoryCursor.updateQuery(query); in setQuery() 162 return updated; in setQuery()
|
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/ |
H A D | TimestampedScoredNetworkTest.java | 50 ScoredNetwork updated = createTestScoredNetwork("updated"); in testUpdate() local 51 impl.update(updated, time); in testUpdate() 53 assertThat(impl.getScore()).isEqualTo(updated); in testUpdate()
|
/aosp12/system/core/fs_mgr/liblp/ |
H A D | io_test.cpp | 692 auto updated = builder->Export(); in TEST_F() local 693 ASSERT_NE(updated, nullptr); in TEST_F() 694 ASSERT_EQ(updated->block_devices.size(), static_cast<size_t>(1)); in TEST_F() 696 ASSERT_TRUE(updated->groups.empty()); in TEST_F() 697 ASSERT_TRUE(updated->partitions.empty()); in TEST_F() 698 ASSERT_TRUE(updated->extents.empty()); in TEST_F() 711 auto updated = builder->Export(); in TEST_F() local 712 ASSERT_NE(updated, nullptr); in TEST_F() 713 ASSERT_EQ(updated->block_devices.size(), static_cast<size_t>(1)); in TEST_F() 727 auto updated = builder->Export(); in TEST_F() local [all …]
|
/aosp12/packages/apps/DeskClock/src/com/android/deskclock/data/ |
H A D | TimerModel.kt | 602 var updated = timer.updateAfterReboot() regex 603 if (updated.remainingTime < MISSED_THRESHOLD && updated.isRunning) { 604 updated = updated.miss() 606 doUpdateTimer(updated) 610 val updated = timer.updateAfterTimeSet() regex 611 doUpdateTimer(updated)
|
/aosp12/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
H A D | LocalSource.java | 110 long updated = cursor.getLong(updatedIndex); in findAlbums() local 111 data.updated = (data.updated == 0 ? in findAlbums() 112 updated : in findAlbums() 113 Math.min(data.updated, updated)); in findAlbums()
|
H A D | AlbumDataAdapter.java | 153 if (a.updated == b.updated) { in compare() 156 return (int) Math.signum(b.updated - a.updated); in compare()
|
H A D | PicasaSource.java | 383 long updated = 0; in findAlbums() local 404 updated = cursor.getLong(updatedIndex); in findAlbums() 411 data.updated = (long) Math.max(data.updated, updated); in findAlbums() 413 if (data.thumbnailUrl == null || data.updated == updated) { in findAlbums()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
H A D | ParticipantRefresh.java | 418 boolean updated = false; in refreshParticipant() 428 updated = (selfChange == SELF_PHONE_NUMBER_OR_SUBSCRIPTION_CHANGED); in refreshParticipant() 433 updated |= refreshFromContacts(db, participantData); in refreshParticipant() 434 return updated; in refreshParticipant() 506 boolean updated = false; in refreshFromContacts() 526 updated = true; in refreshFromContacts() 528 return updated; in refreshFromContacts() 588 updated = true; in refreshFromContacts() 591 return updated; in refreshFromContacts()
|
/aosp12/frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/ |
H A D | TestEnrollmentActivity.java | 115 KeyphraseSoundModel updated = new KeyphraseSoundModel(soundModel.getUuid(), in onReEnrollButtonClicked() local 117 boolean status = mEnrollmentUtil.addOrUpdateSoundModel(updated); in onReEnrollButtonClicked() 119 Toast.makeText(this, "Successfully re-enrolled, model UUID=" + updated.getUuid(), in onReEnrollButtonClicked()
|
/aosp12/hardware/interfaces/radio/1.6/ |
H A D | IRadioIndication.hal | 38 * This indication is updated from IRadioIndication@1.5 to report the @1.6 version of 80 * This is identical to currentSignalStrength_1_4 but uses an updated version of 91 * This indication is updated from IRadioIndication@1.5 to report the @1.6 version of 102 * This indication is updated from IRadioIndication@1.5 to report the @1.6 version of 122 * inserted or removed and updated by IRadio.updateSimPhonebookRecords.
|
/aosp12/frameworks/native/services/surfaceflinger/ |
H A D | FrameTracker.cpp | 156 bool updated = false; in processFencesLocked() local 164 updated = true; in processFencesLocked() 175 updated = true; in processFencesLocked() 179 if (updated) { in processFencesLocked()
|
/aosp12/art/test/712-varhandle-invocations/src/ |
H A D | VarHandleAccessorExceptionTests.java | 146 boolean updated = false; in doTest() 148 updated = (boolean) vh.compareAndSet(this, 44); in doTest() 152 assertFalse(updated); // Should have failed too few arguments in doTest()
|