/aosp14/frameworks/base/core/java/android/net/ |
H A D | LocalSocket.java | 43 private final LocalSocketImpl impl; field in LocalSocket 78 this.impl = impl; in LocalSocket() 162 impl.connect(endpoint, 0); in connect() 184 impl.bind(localAddress); in bind() 206 return impl.getInputStream(); in getInputStream() 217 return impl.getOutputStream(); in getOutputStream() 228 impl.close(); in close() 238 impl.shutdownInput(); in shutdownInput() 248 impl.shutdownOutput(); in shutdownOutput() 345 return impl.getPeerCredentials(); in getPeerCredentials() [all …]
|
H A D | LocalServerSocket.java | 28 private final LocalSocketImpl impl; field in LocalServerSocket 44 impl = new LocalSocketImpl(); in LocalServerSocket() 46 impl.create(LocalSocket.SOCKET_STREAM); in LocalServerSocket() 49 impl.bind(localAddress); in LocalServerSocket() 51 impl.listen(LISTEN_BACKLOG); in LocalServerSocket() 67 impl = new LocalSocketImpl(fd); in LocalServerSocket() 68 impl.listen(LISTEN_BACKLOG); in LocalServerSocket() 69 localAddress = impl.getSockAddress(); in LocalServerSocket() 93 impl.accept(acceptedImpl); in accept() 104 return impl.getFileDescriptor(); in getFileDescriptor() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
H A D | KeyguardRepositoryModule.kt | 32 @Binds fun keyguardRepository(impl: KeyguardRepositoryImpl): KeyguardRepository 36 impl: KeyguardSurfaceBehindRepositoryImpl 41 impl: KeyguardTransitionRepositoryImpl 45 fun lightRevealScrimRepository(impl: LightRevealScrimRepositoryImpl): LightRevealScrimRepository 47 @Binds fun devicePostureRepository(impl: DevicePostureRepositoryImpl): DevicePostureRepository 51 impl: BiometricSettingsRepositoryImpl 56 impl: DeviceEntryFingerprintAuthRepositoryImpl 60 fun keyguardBouncerRepository(impl: KeyguardBouncerRepositoryImpl): KeyguardBouncerRepository 63 fun bouncerMessageRepository(impl: BouncerMessageRepositoryImpl): BouncerMessageRepository 68 fun bind(impl: BouncerMessageAuditLogger): CoreStartable [all …]
|
/aosp14/frameworks/base/core/java/android/window/ |
H A D | SplashScreen.java | 224 private void addImpl(SplashScreenImpl impl) { in addImpl() argument 226 mImpls.add(impl); in addImpl() 230 private void removeImpl(SplashScreenImpl impl) { in removeImpl() argument 232 mImpls.remove(impl); in removeImpl() 238 for (SplashScreenImpl impl : mImpls) { in findImpl() 239 if (impl.mActivityToken == token) { in findImpl() 240 return impl; in findImpl() 250 if (impl != null) { in tokenDestroyed() 251 removeImpl(impl); in tokenDestroyed() 264 if (impl == null) { in dispatchOnExitAnimation() [all …]
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/om/ |
H A D | OverlayManagerServiceImplRebootTests.java | 52 final OverlayManagerServiceImpl impl = getImpl(); in alwaysInitializeAllPackages() local 67 final OverlayManagerServiceImpl impl = getImpl(); in testImmutableEnabledChange() local 75 final OverlayInfo o1 = impl.getOverlayInfo(IDENTIFIER, USER); in testImmutableEnabledChange() 83 final OverlayInfo o2 = impl.getOverlayInfo(IDENTIFIER, USER); in testImmutableEnabledChange() 91 final OverlayInfo o3 = impl.getOverlayInfo(IDENTIFIER, USER); in testImmutableEnabledChange() 100 final OverlayManagerServiceImpl impl = getImpl(); in testMutableEnabledChangeHasNoEffect() local 108 final OverlayInfo o1 = impl.getOverlayInfo(IDENTIFIER, USER); in testMutableEnabledChangeHasNoEffect() 133 final OverlayManagerServiceImpl impl = getImpl(); in testMutableEnabledToImmutableEnabled() local 182 final OverlayManagerServiceImpl impl = getImpl(); in testMutablePriorityChange() local 206 impl.setEnabled(IDENTIFIER, true, USER); in testMutablePriorityChange() [all …]
|
H A D | OverlayManagerServiceImplTests.java | 70 final OverlayManagerServiceImpl impl = getImpl(); in testGetOverlayInfo() local 87 final OverlayManagerServiceImpl impl = getImpl(); in testGetOverlayInfosForTarget() local 117 final OverlayManagerServiceImpl impl = getImpl(); in testGetOverlayInfosForUser() local 146 final OverlayManagerServiceImpl impl = getImpl(); in testPriority() local 153 assertEquals(impl.setLowestPriority(IDENTIFIER3, USER), in testPriority() 168 final OverlayManagerServiceImpl impl = getImpl(); in testOverlayInfoStateTransitions() local 169 assertNull(impl.getOverlayInfo(IDENTIFIER, USER)); in testOverlayInfoStateTransitions() 179 assertEquals(impl.setEnabled(IDENTIFIER, true, USER), in testOverlayInfoStateTransitions() 217 final OverlayManagerServiceImpl impl = getImpl(); in testSetEnabledAtVariousConditions() local 219 () -> impl.setEnabled(IDENTIFIER, true, USER)); in testSetEnabledAtVariousConditions() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
H A D | StartKeyguardTransitionModule.kt | 31 abstract fun bind(impl: KeyguardTransitionCoreStartable): CoreStartable 36 impl: FromPrimaryBouncerTransitionInteractor 41 abstract fun fromLockscreen(impl: FromLockscreenTransitionInteractor): TransitionInteractor 43 @Binds @IntoSet abstract fun fromAod(impl: FromAodTransitionInteractor): TransitionInteractor 45 @Binds @IntoSet abstract fun fromGone(impl: FromGoneTransitionInteractor): TransitionInteractor 49 abstract fun fromDreaming(impl: FromDreamingTransitionInteractor): TransitionInteractor 54 impl: FromDreamingLockscreenHostedTransitionInteractor 59 abstract fun fromOccluded(impl: FromOccludedTransitionInteractor): TransitionInteractor 63 abstract fun fromDozing(impl: FromDozingTransitionInteractor): TransitionInteractor 68 impl: FromAlternateBouncerTransitionInteractor
|
/aosp14/system/core/libutils/ |
H A D | RefBase.cpp | 560 impl->addWeakRef(id); in incWeak() 569 impl->addWeakRef(id); in incWeakRequireWeak() 578 impl->removeWeakRef(id); in decWeak() 604 delete impl; in decWeak() 609 impl->mBase->onLastWeakRef(id); in decWeak() 610 delete impl->mBase; in decWeak() 687 impl->mBase->onLastStrongRef(id); in attemptIncStrong() 692 impl->addStrongRef(id); in attemptIncStrong() 729 impl->addWeakRef(id); in attemptIncWeak() 847 impl->renameStrongRefId(old_id, new_id); in renameRefId() [all …]
|
/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/ |
H A D | TimestampedScoredNetworkTest.java | 34 private TimestampedScoredNetwork impl; field in TimestampedScoredNetworkTest 43 impl = new TimestampedScoredNetwork(createTestScoredNetwork("test"), in setUp() 51 impl.update(updated, time); in testUpdate() 53 assertThat(impl.getScore()).isEqualTo(updated); in testUpdate() 54 assertThat(impl.getUpdatedTimestampMillis()).isEqualTo(time); in testUpdate() 60 impl.writeToParcel(parcel, 0); in testParcel() 65 assertThat(fromParcel.getScore()).isEqualTo(impl.getScore()); in testParcel() 66 assertThat(fromParcel.getUpdatedTimestampMillis()).isEqualTo(impl.getUpdatedTimestampMillis()); in testParcel()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/transition/ |
H A D | LargeScreenShadeInterpolatorImplTest.kt | 21 private val impl = regex 34 actual = { fraction -> impl.getBehindScrimAlpha(fraction) }, 44 actual = { fraction -> impl.getBehindScrimAlpha(fraction) }, 54 actual = { fraction -> impl.getNotificationScrimAlpha(fraction) }, 63 actual = { fraction -> impl.getNotificationScrimAlpha(fraction) }, 73 actual = { fraction -> impl.getNotificationContentAlpha(fraction) }, 83 actual = { fraction -> impl.getNotificationContentAlpha(fraction) }, 95 actual = { fraction -> impl.getNotificationFooterAlpha(fraction) }, 104 actual = { fraction -> impl.getNotificationFooterAlpha(fraction) }, 116 actual = { fraction -> impl.getQsAlpha(fraction) }, [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/ |
H A D | VersionInfoTest.java | 52 VersionInfo impl = new VersionInfo().addClass(OverlayImpl.class); in testSingleProvides() local 53 overlay.checkVersion(impl); in testSingleProvides() 59 VersionInfo impl = new VersionInfo().addClass(OverlayImplIncorrectVersion.class); in testIncorrectVersion() local 61 overlay.checkVersion(impl); in testIncorrectVersion() 67 VersionInfo impl = new VersionInfo(); in testMissingRequired() local 69 overlay.checkVersion(impl); in testMissingRequired() 75 VersionInfo impl = new VersionInfo().addClass(QSImplNoDeps.class); in testMissingDependencies() local 77 overlay.checkVersion(impl); in testMissingDependencies() 83 VersionInfo impl = new VersionInfo().addClass(QSImpl.class); in testHasDependencies() local 84 overlay.checkVersion(impl); in testHasDependencies()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/dagger/ |
H A D | BiometricsModule.kt | 54 fun faceSettings(impl: FaceSettingsRepositoryImpl): FaceSettingsRepository 58 fun faceSensors(impl: FacePropertyRepositoryImpl): FacePropertyRepository 62 fun biometricPromptRepository(impl: PromptRepositoryImpl): PromptRepository 66 fun fingerprintRepository(impl: FingerprintPropertyRepositoryImpl): 71 fun displayStateRepository(impl: DisplayStateRepositoryImpl): DisplayStateRepository 75 fun providesPromptSelectorInteractor(impl: PromptSelectorInteractorImpl): 80 fun providesCredentialInteractor(impl: CredentialInteractorImpl): CredentialInteractor 84 fun providesDisplayStateInteractor(impl: DisplayStateInteractorImpl): DisplayStateInteractor 88 fun bindsLogContextInteractor(impl: LogContextInteractorImpl): LogContextInteractor 92 fun providesSideFpsOverlayInteractor(impl: SideFpsOverlayInteractorImpl):
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/dagger/ |
H A D | BaseAutoAddableModule.kt | 56 @Binds @IntoSet fun bindCastAutoAddable(impl: CastAutoAddable): AutoAddable 58 @Binds @IntoSet fun bindDataSaverAutoAddable(impl: DataSaverAutoAddable): AutoAddable 60 @Binds @IntoSet fun bindDeviceControlsAutoAddable(impl: DeviceControlsAutoAddable): AutoAddable 62 @Binds @IntoSet fun bindHotspotAutoAddable(impl: HotspotAutoAddable): AutoAddable 64 @Binds @IntoSet fun bindNightDisplayAutoAddable(impl: NightDisplayAutoAddable): AutoAddable 68 fun bindReduceBrightColorsAutoAddable(impl: ReduceBrightColorsAutoAddable): AutoAddable 70 @Binds @IntoSet fun bindWalletAutoAddable(impl: WalletAutoAddable): AutoAddable 72 @Binds @IntoSet fun bindWorkModeAutoAddable(impl: WorkTileAutoAddable): AutoAddable
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/transition/ |
H A D | LargeScreenShadeInterpolatorImpl.kt | 54 private val impl: LargeScreenShadeInterpolator 62 override fun getBehindScrimAlpha(fraction: Float) = impl.getBehindScrimAlpha(fraction) 65 impl.getNotificationScrimAlpha(fraction) 68 impl.getNotificationContentAlpha(fraction) 71 impl.getNotificationFooterAlpha(fraction) 73 override fun getQsAlpha(fraction: Float) = impl.getQsAlpha(fraction)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/dagger/ |
H A D | StatusBarPipelineModule.kt | 76 abstract fun airplaneModeViewModel(impl: AirplaneModeViewModelImpl): AirplaneModeViewModel 81 @Binds abstract fun wifiRepository(impl: WifiRepositorySwitcher): WifiRepository 83 @Binds abstract fun wifiInteractor(impl: WifiInteractorImpl): WifiInteractor 87 impl: MobileRepositorySwitcher 96 impl: SubscriptionManagerProxyImpl 100 abstract fun mobileIconsInteractor(impl: MobileIconsInteractorImpl): MobileIconsInteractor 105 abstract fun bindFeature(impl: MobileUiAdapter): CoreStartable 110 abstract fun bindCarrierConfigStartable(impl: CarrierConfigCoreStartable): CoreStartable 114 impl: CollapsedStatusBarViewModelImpl 119 impl: CollapsedStatusBarViewBinderImpl [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
H A D | RecentsModule.java | 46 RecentsImplementation impl = componentHelper.resolveRecents(clsName); in provideRecentsImpl() local 48 if (impl == null) { in provideRecentsImpl() 56 impl = (RecentsImplementation) cls.newInstance(); in provideRecentsImpl() 62 return impl; in provideRecentsImpl() 70 OverviewProxyRecentsImpl impl); in bindOverviewProxyRecentsImpl() argument
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/ |
H A D | BiometricSensor.java | 70 public final IBiometricAuthenticator impl; field in BiometricSensor 90 @Authenticators.Types int strength, IBiometricAuthenticator impl) { in BiometricSensor() argument 95 this.impl = impl; in BiometricSensor() 113 impl.prepareForAuthentication(requireConfirmation, token, in goToStateWaitingForCookie() 127 impl.startPreparedClient(mCookie); in startSensor() 134 impl.cancelAuthenticationFromService(token, opPackageName, requestId); in goToStateCancelling()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/dagger/ |
H A D | VolumeModule.java | 67 VolumeDialogImpl impl = new VolumeDialogImpl( in provideVolumeDialog() local 83 impl.setStreamImportant(AudioManager.STREAM_SYSTEM, false); in provideVolumeDialog() 84 impl.setAutomute(true); in provideVolumeDialog() 85 impl.setSilentMode(false); in provideVolumeDialog() 86 return impl; in provideVolumeDialog()
|
/aosp14/frameworks/base/core/java/android/content/res/ |
H A D | Resources.java | 288 impl.clearAllCaches(); in onLoadersChanged() 297 impl.clearAllCaches(); in onLoaderUpdated() 360 if (impl == mResourcesImpl) { in setImpl() 365 mResourcesImpl = impl; in setImpl() 474 impl.getValue(id, value, true); in getFont() 763 impl.getValue(id, value, true); in getDimension() 797 impl.getValue(id, value, true); in getDimensionPixelOffset() 833 impl.getValue(id, value, true); in getDimensionPixelSize() 1070 impl.getValue(id, value, true); in getColor() 1140 impl.getValue(id, value, true); in getColorStateList() [all …]
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ResourcesManager.java | 652 return impl; in createResourcesImpl() 664 if (impl != null && impl.getAssets().isUpToDate()) { in findResourcesImplForKeyLocked() 665 return impl; in findResourcesImplForKeyLocked() 688 if (impl == null) { in findOrCreateResourcesImplForKeyLocked() 690 if (impl != null) { in findOrCreateResourcesImplForKeyLocked() 694 return impl; in findOrCreateResourcesImplForKeyLocked() 784 resources.setImpl(impl); in createResourcesForActivityLocked() 806 resources.setImpl(impl); in createResourcesLocked() 1502 if (impl == null) { in applyNewResourceDirsLocked() 1580 r.setImpl(impl); in redirectResourcesToNewImplLocked() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/settings/ |
H A D | SettingsUtilModule.java | 30 SecureSettings bindsSecureSettings(SecureSettingsImpl impl); in bindsSecureSettings() argument 34 SystemSettings bindsSystemSettings(SystemSettingsImpl impl); in bindsSystemSettings() argument 38 GlobalSettings bindsGlobalSettings(GlobalSettingsImpl impl); in bindsGlobalSettings() argument
|
/aosp14/frameworks/base/apex/jobscheduler/service/jni/ |
H A D | com_android_server_alarm_AlarmManagerService.cpp | 259 AlarmImpl *impl = reinterpret_cast<AlarmImpl *>(nativeData); in android_server_alarm_AlarmManagerService_getNextAlarm() local 262 const int result = impl->getTime(type, &spec); in android_server_alarm_AlarmManagerService_getNextAlarm() 276 AlarmImpl *impl = reinterpret_cast<AlarmImpl *>(nativeData); in android_server_alarm_AlarmManagerService_close() local 277 delete impl; in android_server_alarm_AlarmManagerService_close() 282 AlarmImpl *impl = reinterpret_cast<AlarmImpl *>(nativeData); in android_server_alarm_AlarmManagerService_set() local 287 const int result = impl->set(type, &ts); in android_server_alarm_AlarmManagerService_set() 299 AlarmImpl *impl = reinterpret_cast<AlarmImpl *>(nativeData); in android_server_alarm_AlarmManagerService_waitForAlarm() local 304 result = impl->waitForAlarm(); in android_server_alarm_AlarmManagerService_waitForAlarm()
|
/aosp14/frameworks/base/boot/ |
H A D | preloaded-classes | 3680 android.icu.impl.duration.impl.DataRecord$EGender 3688 android.icu.impl.duration.impl.DataRecord$ETimeLimit 3691 android.icu.impl.duration.impl.DataRecord$ScopeData 3692 android.icu.impl.duration.impl.DataRecord 3693 android.icu.impl.duration.impl.PeriodFormatterData 3695 android.icu.impl.duration.impl.RecordReader 3696 android.icu.impl.duration.impl.RecordWriter 3698 android.icu.impl.duration.impl.Utils$ChineseDigits 3699 android.icu.impl.duration.impl.Utils 3700 android.icu.impl.duration.impl.XMLRecordReader [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src-release/com/android/systemui/flags/ |
H A D | FlagsModule.kt | 32 abstract fun bindsFeatureFlagRelease(impl: FeatureFlagsRelease): FeatureFlags 36 abstract fun bindsScreenIdleCondition(impl: ScreenIdleCondition): ConditionalRestarter.Condition 40 abstract fun bindsPluggedInCondition(impl: PluggedInCondition): ConditionalRestarter.Condition
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/mediaprojection/appselector/ |
H A D | MediaProjectionAppSelectorComponent.kt | 77 fun bindsMediaProjectionPermissionActivity(impl: MediaProjectionPermissionActivity): Activity 90 impl: ActivityTaskManagerThumbnailLoader 95 fun bindRecentTaskLabelLoader(impl: ActivityTaskManagerLabelLoader): RecentTaskLabelLoader 99 fun bindRecentTaskListProvider(impl: ShellRecentTaskListProvider): RecentTaskListProvider 103 fun bindAppIconLoader(impl: IconLoaderLibAppIconLoader): AppIconLoader 108 impl: TaskPreviewSizeProvider
|