Home
last modified time | relevance | path

Searched refs:mServiceIntent (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DAdminSecondaryLockScreenControllerTest.java71 private Intent mServiceIntent; field in AdminSecondaryLockScreenControllerTest
96 mServiceIntent = new Intent().setComponent(mComponentName); in setUp()
126 mTestController.show(mServiceIntent); in testShow()
141 mTestController.show(mServiceIntent); in testShow_dismissedByCallback()
155 mTestController.show(mServiceIntent); in testHide()
175 mTestController.show(mServiceIntent); in testDismissed_onCreateKeyguardSurface_RemoteException()
187 mTestController.show(mServiceIntent); in testDismissed_onCreateKeyguardSurface_timeout()
/aosp14/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DPlayerController.java48 private final Intent mServiceIntent; field in PlayerController
61 mServiceIntent = new Intent(mContext, PlayerService.class); in PlayerController()
63 mServiceIntent = serviceIntent; in PlayerController()
84 Log.d(TAG, "onResume. Binding to service with intent " + mServiceIntent.toString()); in onResume()
155 mContext.bindService(mServiceIntent, mServiceConnection, Context.BIND_AUTO_CREATE); in bindToService()
/aosp14/frameworks/base/test-runner/src/android/test/
H A DServiceTestCase.java123 private Intent mServiceIntent = null; field in ServiceTestCase
242 mServiceIntent = intent.cloneFilter(); in bindService()
259 mService.onUnbind(mServiceIntent); in shutdownService()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
H A DSuggestionController.java58 private final Intent mServiceIntent; field in SuggestionController
75 mServiceIntent = new Intent().setComponent(service); in SuggestionController()
83 mContext.bindServiceAsUser(mServiceIntent, mServiceConnection, Context.BIND_AUTO_CREATE, in start()
/aosp14/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DServiceTest.java73 private final Intent mServiceIntent = new Intent(mContext, RemoteService.class); field in ServiceTest
78 mContext.stopService(mServiceIntent); in tearDown()
124 if (mServiceIntent.getComponent().equals(rs.service)) { in testRestart_boundNotStickyStartedService_restarted()
163 () -> mContext.startService(mServiceIntent.putExtra(EXTRA_START_CODE, code))); in startService()
188 assertThat(mContext.bindService(mServiceIntent, mCurrentConnection, flags), is(true)); in bindService()
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DObservableServiceConnection.java118 private final Intent mServiceIntent; field in ObservableServiceConnection
163 mServiceIntent = serviceIntent; in ObservableServiceConnection()
187 mContext.bindService(mServiceIntent, mFlags, mExecutor, this); in bind()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/service/
H A DObservableServiceConnection.java111 private final Intent mServiceIntent; field in ObservableServiceConnection
136 mServiceIntent = serviceIntent; in ObservableServiceConnection()
152 bindResult = mContext.bindServiceAsUser(mServiceIntent, this, mFlags, in bind()
/aosp14/frameworks/base/services/tests/mockingservicestests/src/android/service/dreams/
H A DDreamOverlayConnectionHandlerTest.java61 private Intent mServiceIntent; field in DreamOverlayConnectionHandlerTest
77 mServiceIntent, in setUp()
/aosp14/frameworks/base/core/java/android/widget/
H A DRemoteViews.java800 && itemsAction.mServiceIntent != null) { in replaceRemoteCollections()
802 itemsAction.mServiceIntent)); in replaceRemoteCollections()
839 && itemsAction.mServiceIntent != null) in hasLegacyLists()
1139 final Intent mServiceIntent; field in RemoteViews.SetRemoteCollectionItemListAdapterAction
1146 mServiceIntent = null; in SetRemoteCollectionItemListAdapterAction()
1153 mServiceIntent = intent; in SetRemoteCollectionItemListAdapterAction()
1202 mServiceIntent = parcel.readTypedObject(Intent.CREATOR); in SetRemoteCollectionItemListAdapterAction()
1232 dest.writeTypedObject(mServiceIntent, flags); in writeToParcel()