Home
last modified time | relevance | path

Searched refs:impl (Results 1 – 25 of 236) sorted by relevance

12345678910

/aosp14/frameworks/base/core/java/android/net/
H A DLocalSocket.java43 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 DLocalServerSocket.java28 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 DKeyguardRepositoryModule.kt32 @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 DSplashScreen.java224 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 DOverlayManagerServiceImplRebootTests.java52 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 DOverlayManagerServiceImplTests.java70 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 DStartKeyguardTransitionModule.kt31 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 DRefBase.cpp560 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 DTimestampedScoredNetworkTest.java34 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 DLargeScreenShadeInterpolatorImplTest.kt21 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 DVersionInfoTest.java52 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 DBiometricsModule.kt54 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 DBaseAutoAddableModule.kt56 @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 DLargeScreenShadeInterpolatorImpl.kt54 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 DStatusBarPipelineModule.kt76 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 DRecentsModule.java46 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 DBiometricSensor.java70 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 DVolumeModule.java67 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 DResources.java288 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 DResourcesManager.java652 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 DSettingsUtilModule.java30 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 Dcom_android_server_alarm_AlarmManagerService.cpp259 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 Dpreloaded-classes3680 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 DFlagsModule.kt32 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 DMediaProjectionAppSelectorComponent.kt77 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

12345678910