/aosp14/frameworks/base/tests/UiBench/src/com/android/test/uibench/leanback/ |
H A D | TestHelper.java | 195 return activity.getIntent().getBooleanExtra(EXTRA_ENTRANCE_TRANSITION, in runEntranceTransition() 201 boolean shadow = activity.getIntent().getBooleanExtra(EXTRA_CARD_SHADOW, in initRowsAdapterBuilder() 203 boolean roundRect = activity.getIntent().getBooleanExtra(EXTRA_CARD_ROUND_RECT, in initRowsAdapterBuilder() 212 boolean bitmapUpload = activity.getIntent().getBooleanExtra(EXTRA_BITMAP_UPLOAD, in initRowsAdapterBuilder() 227 if (activity.getIntent().getBooleanExtra(EXTRA_BACKGROUND, DEFAULT_BACKGROUND)) { in initBackground() 243 .getBooleanExtra(EXTRA_SHOW_FAST_LANE, DEFAULT_SHOW_FAST_LANE)) { in initHeaderState()
|
/aosp14/frameworks/base/services/core/java/com/android/server/ |
H A D | MasterClearReceiver.java | 80 final boolean shutdown = intent.getBooleanExtra("shutdown", false); in onReceive() 82 mWipeExternalStorage = intent.getBooleanExtra(Intent.EXTRA_WIPE_EXTERNAL_STORAGE, false); in onReceive() 83 mWipeEsims = intent.getBooleanExtra(Intent.EXTRA_WIPE_ESIMS, false); in onReceive() 84 final boolean forceWipe = intent.getBooleanExtra(Intent.EXTRA_FORCE_MASTER_CLEAR, false) in onReceive() 85 || intent.getBooleanExtra(Intent.EXTRA_FORCE_FACTORY_RESET, false); in onReceive()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
H A D | ActionProxyReceiver.java | 73 intent.getBooleanExtra(EXTRA_DISALLOW_ENTER_PIP, false)); in onReceive() 78 if (intent.getBooleanExtra(ScreenshotController.EXTRA_OVERRIDE_TRANSITION, false)) { in onReceive() 99 if (intent.getBooleanExtra(EXTRA_SMART_ACTIONS_ENABLED, false)) { in onReceive()
|
H A D | DeleteScreenshotReceiver.java | 63 if (intent.getBooleanExtra(EXTRA_SMART_ACTIONS_ENABLED, false)) { in onReceive()
|
/aosp14/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/ |
H A D | PerfTestActivity.java | 39 if (getIntent().getBooleanExtra(INTENT_EXTRA_KEEP_SCREEN_ON, false)) { in onCreate() 42 if (getIntent().getBooleanExtra(INTENT_EXTRA_ADD_EDIT_TEXT, false)) { in onCreate()
|
/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | ShutdownActivity.java | 42 mConfirm = intent.getBooleanExtra(Intent.EXTRA_KEY_CONFIRM, false); in onCreate() 43 mUserRequested = intent.getBooleanExtra(Intent.EXTRA_USER_REQUESTED_SHUTDOWN, false); in onCreate()
|
/aosp14/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/ |
H A D | ImeStressTestUtil.java | 373 boolean isUnfocusableView = getIntent().getBooleanExtra(UNFOCUSABLE_VIEW, false); in onCreate() 374 boolean requestFocus = getIntent().getBooleanExtra(REQUEST_FOCUS_ON_CREATE, false); in onCreate() 378 getIntent().getBooleanExtra(INPUT_METHOD_MANAGER_SHOW_ON_CREATE, false); in onCreate() 380 getIntent().getBooleanExtra(INPUT_METHOD_MANAGER_HIDE_ON_CREATE, false); in onCreate() 382 getIntent().getBooleanExtra(WINDOW_INSETS_CONTROLLER_SHOW_ON_CREATE, false); in onCreate() 384 getIntent().getBooleanExtra(WINDOW_INSETS_CONTROLLER_HIDE_ON_CREATE, false); in onCreate()
|
/aosp14/frameworks/base/tests/UsbTests/src/com/android/server/usb/ |
H A D | UsbHandlerTest.java | 241 assertTrue(mUsbHandler.mBroadcastedIntent.getBooleanExtra(UsbManager.USB_CONNECTED, false)); in enableAdb() 243 .getBooleanExtra(UsbManager.USB_CONFIGURED, false)); in enableAdb() 245 .getBooleanExtra(UsbManager.USB_FUNCTION_ADB, false)); in enableAdb() 336 assertTrue(mUsbHandler.mBroadcastedIntent.getBooleanExtra(UsbManager.USB_CONNECTED, false)); in configuredSendsBroadcast() 338 .getBooleanExtra(UsbManager.USB_CONFIGURED, false)); in configuredSendsBroadcast() 340 .getBooleanExtra(UsbManager.USB_FUNCTION_MTP, false)); in configuredSendsBroadcast()
|
/aosp14/frameworks/base/core/java/com/android/internal/content/ |
H A D | PackageMonitor.java | 366 if (intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) { in onReceive() 388 if (intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) { in onReceive() 402 if (intent.getBooleanExtra(Intent.EXTRA_REMOVED_FOR_ALL_USERS, false)) { in onReceive() 449 mChangeType = intent.getBooleanExtra(Intent.EXTRA_REPLACING, false) in onReceive() 461 mChangeType = intent.getBooleanExtra(Intent.EXTRA_REPLACING, false) in onReceive()
|
/aosp14/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
H A D | UninstallUninstalling.java | 70 mReturnResult = getIntent().getBooleanExtra(Intent.EXTRA_RETURN_RESULT, false); in onCreate() 75 boolean allUsers = getIntent().getBooleanExtra(Intent.EXTRA_UNINSTALL_ALL_USERS, in onCreate() 77 boolean keepData = getIntent().getBooleanExtra(EXTRA_KEEP_DATA, false); in onCreate()
|
H A D | PackageInstalledReceiver.java | 57 if (intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) { in onReceive()
|
H A D | UninstallFinish.java | 69 boolean allUsers = intent.getBooleanExtra(Intent.EXTRA_UNINSTALL_ALL_USERS, false); in onReceive() 88 boolean isCloneApp = intent.getBooleanExtra(EXTRA_IS_CLONE_APP, false); in onReceive()
|
H A D | InstallSuccess.java | 55 if (getIntent().getBooleanExtra(Intent.EXTRA_RETURN_RESULT, false)) { in onCreate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/model/ |
H A D | NetworkNameModel.kt | 98 val showSpn = getBooleanExtra(EXTRA_SHOW_SPN, false) 100 val showPlmn = getBooleanExtra(EXTRA_SHOW_PLMN, false)
|
/aosp14/frameworks/base/telephony/common/com/android/internal/telephony/ |
H A D | PackageChangeReceiver.java | 136 if (intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) { in onReceive() 147 if (!intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) { in onReceive()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/app/activity/ |
H A D | TestedScreen.java | 57 if (!getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) { in onCreate() 72 if (getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) { in onResume()
|
H A D | RemoteSubActivityScreen.java | 42 boolean kill = intent.getBooleanExtra("kill", false); in onCreate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/ |
H A D | MobileInputLogger.kt | 170 val showSpn = intent.getBooleanExtra(TelephonyManager.EXTRA_SHOW_SPN, false) 172 val showPlmn = intent.getBooleanExtra(TelephonyManager.EXTRA_SHOW_PLMN, false)
|
/aosp14/frameworks/base/core/java/android/service/wallpaper/ |
H A D | WallpaperSettingsActivity.java | 41 if (getIntent().getBooleanExtra(EXTRA_PREVIEW_MODE, false)) { in onCreate()
|
/aosp14/frameworks/base/services/core/java/com/android/server/policy/ |
H A D | GlobalKeyIntent.java | 81 intent.getBooleanExtra(EXTRA_BEGAN_FROM_NON_INTERACTIVE, false); in from()
|
/aosp14/frameworks/base/tests/ActivityManagerPerfTests/stub-app/src/com/android/stubs/am/ |
H A D | TestActivity.java | 50 if (intent.getBooleanExtra(Constants.EXTRA_REQ_FINISH_ACTIVITY, false)) { in onNewIntent()
|
/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/ |
H A D | WifiUtilsTest.java | 168 assertThat(intent.getBooleanExtra(WifiUtils.EXTRA_CONNECT_FOR_CALLER, true)) in getWifiDialogIntent_returnsCorrectValues() 176 assertThat(intent.getBooleanExtra(WifiUtils.EXTRA_CONNECT_FOR_CALLER, true)) in getWifiDialogIntent_returnsCorrectValues()
|
/aosp14/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/ |
H A D | VerificationActivity.java | 68 getIntent().getBooleanExtra(KEY_KEYGUARD_USE_DEFAULT_STRINGS, false); in createConfirmDeviceCredentialIntent()
|
/aosp14/frameworks/base/apct-tests/perftests/contentcapture/src/android/view/contentcapture/ |
H A D | CustomTestActivity.java | 76 if (getIntent().getBooleanExtra(INTENT_EXTRA_FINISH_ON_IDLE, false)) { in onCreate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
H A D | UsbDebuggingSecondaryUserActivity.java | 82 boolean connected = intent.getBooleanExtra(UsbManager.USB_CONNECTED, false); in onReceive()
|