Home
last modified time | relevance | path

Searched refs:startIntent (Results 1 – 15 of 15) sorted by relevance

/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/
DIntentUtils.java41 Intent startIntent = ActivityStarterActivity.createStartIntent(context, intent, options); in startExternalActivity() local
42 context.startActivity(startIntent); in startExternalActivity()
52 Intent startIntent = ActivityStarterActivity.createStartIntent(activity, intent, options); in startExternalActivityForResult() local
53 activity.startActivityForResult(startIntent, requestCode); in startExternalActivityForResult()
64 Intent startIntent = ActivityStarterActivity.createStartIntent(context, intent, options); in startExternalActivityForResult() local
65 fragment.startActivityForResult(startIntent, requestCode); in startExternalActivityForResult()
/packages/apps/UniversalMediaPlayer/java/com/android/pump/activity/
DActivityStarterActivity.java64 Intent startIntent = getExtraIntent(intent); in onCreate() local
65 if (startIntent != null) { in onCreate()
68 startActivityForResult(startIntent, REQUEST_CODE, options); in onCreate()
71 Clog.w(TAG, "Failed to find activity for intent " + startIntent, e); in onCreate()
76 Clog.w(TAG, "No permission to launch intent " + startIntent, e); in onCreate()
/packages/apps/Settings/src/com/android/settings/
DSetupEncryptionInterstitial.java33 Intent startIntent = EncryptionInterstitial.createStartIntent(ctx, quality, in createStartIntent() local
35 startIntent.setClass(ctx, SetupEncryptionInterstitial.class); in createStartIntent()
36 startIntent.putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false) in createStartIntent()
38 return startIntent; in createStartIntent()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/
DTestUtils.java142 Intent startIntent = in startService() local
144 startIntent.putExtra(AdapterService.EXTRA_ACTION, in startService()
146 startIntent.putExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.STATE_ON); in startService()
147 serviceTestRule.startService(startIntent); in startService()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
DProfileServiceTest.java70 Intent startIntent = new Intent(InstrumentationRegistry.getTargetContext(), profile); in setProfileState() local
71 startIntent.putExtra(AdapterService.EXTRA_ACTION, in setProfileState()
73 startIntent.putExtra(BluetoothAdapter.EXTRA_STATE, state); in setProfileState()
74 mServiceTestRule.startService(startIntent); in setProfileState()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DMobileNetworkActivity.java128 final Intent startIntent = getIntent(); in onCreate() local
129 validate(startIntent); in onCreate()
132 : ((startIntent != null) in onCreate()
133 ? startIntent.getIntExtra(Settings.EXTRA_SUB_ID, SUB_ID_NULL) in onCreate()
/packages/apps/QuickAccessWallet/src/com/android/systemui/plugin/globalactions/wallet/
DWalletPanelViewController.java284 OverflowItem settings = new OverflowItem(settingsLabel, () -> startIntent(settingsIntent)); in getOverflowItems()
286 OverflowItem wallet = new OverflowItem(walletLabel, () -> startIntent(walletIntent)); in getOverflowItems()
308 mWalletView.showEmptyStateView(logo, logoContentDesc, label, v -> startIntent(intent)); in showEmptyStateView()
312 private void startIntent(Intent intent) { in startIntent() method in WalletPanelViewController
/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/
DWfcActivationActivity.java146 Intent startIntent = this.getIntent(); in createDependeny() local
147 int subId = ActivityConstants.getSubId(startIntent); in createDependeny()
/packages/services/Car/service/src/com/android/car/
DPerUserCarServiceHelper.java157 Intent startIntent = new Intent(mContext, PerUserCarService.class); in bindToPerUserCarService() local
160 boolean bindSuccess = mContext.bindServiceAsUser(startIntent, mUserServiceConnection, in bindToPerUserCarService()
/packages/apps/Launcher3/tests/src/com/android/launcher3/ui/
DAbstractLauncherUiTest.java484 startIntent( in startAppFast()
497 startIntent(intent, By.pkg(packageName).text("TestActivity" + activityNumber), in startTestActivity()
501 private static void startIntent(Intent intent, BySelector selector, boolean newTask) { in startIntent() method in AbstractLauncherUiTest
/packages/apps/Music/kotlin/src/com/android/music/
DMediaPlaybackService.kt56 override fun onStartCommand(startIntent: Intent?, flags: Int, startId: Int): Int { in onStartCommand()
/packages/apps/Music/src/com/android/music/
DMediaPlaybackService.java63 public int onStartCommand(Intent startIntent, int flags, int startId) { in onStartCommand() argument
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DSystemUiProxy.java567 public void startIntent(PendingIntent intent, Intent fillInIntent, int stage, int position, in startIntent() method in SystemUiProxy
571 mSplitScreen.startIntent(intent, fillInIntent, stage, position, options); in startIntent()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
DAvrcpControllerService.java149 Intent startIntent = new Intent(this, BluetoothMediaBrowserService.class); in start() local
150 startService(startIntent); in start()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
DHeadsetClientService.java118 Intent startIntent = new Intent(this, HfpClientConnectionService.class); in start() local
119 startService(startIntent); in start()