/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
StorageNotification.java | 27 import android.content.Intent; 110 public void onReceive(Context context, Intent intent) { 112 final String fsUuid = intent.getStringExtra(VolumeRecord.EXTRA_FS_UUID); 119 public void onReceive(Context context, Intent intent) { 134 move.packageName = extras.getString(Intent.EXTRA_PACKAGE_NAME); 135 move.label = extras.getString(Intent.EXTRA_TITLE); 481 final PendingIntent intent; local 483 intent = buildWizardMovePendingIntent(move) 530 final PendingIntent intent; local 590 final Intent intent = new Intent(); local 606 final Intent intent = new Intent(); local 622 final Intent intent = new Intent(); local 643 final Intent intent = vol.buildBrowseIntent(); local 651 final Intent intent = new Intent(); local 677 final Intent intent = new Intent(ACTION_SNOOZE_VOLUME); local 687 final Intent intent = new Intent(); local 698 final Intent intent = new Intent(); local 717 final Intent intent = new Intent(); local 732 final Intent intent = new Intent(); local [all...] |
/cts/tests/tests/app.usage/src/android/app/usage/cts/ |
ActivityTransitionTest.java | 20 import android.content.Intent; 91 Intent intent = new Intent(mActivity, ActivityTransitionActivity.class); 92 intent.putExtra(ActivityTransitionActivity.TEST, 94 intent.putExtra(ActivityTransitionActivity.LAYOUT_ID, R.layout.end); 95 intent.putExtra(ActivityTransitionActivity.RESULT_RECEIVER, mReceiver); 96 mActivity.startActivityForResult(intent, 0, options); 139 Intent intent = new Intent(mActivity, ActivityTransitionActivity.class) [all...] |
/packages/services/Telecomm/src/com/android/server/telecom/ |
NewOutgoingCallIntentBroadcaster.java | 24 import android.content.Intent; 45 * ACTION_NEW_OUTGOING_CALL intent. ACTION_NEW_OUTGOING_CALL is an ordered broadcast intent which 46 * contains the phone number being dialed. Applications can use this intent to (1) see which numbers 50 * After the other applications have had a chance to see the ACTION_NEW_OUTGOING_CALL intent, it 63 * need to be copied from the source call intent to the destination intent in order to 73 private final Intent mIntent; 79 * Whether or not the outgoing call intent originated from the default phone application. If 80 * so, it will be allowed to make emergency calls, even with the ACTION_CALL intent 196 Intent intent = mIntent; local [all...] |
/frameworks/base/telephony/java/android/telephony/mbms/ |
MbmsDownloadReceiver.java | 23 import android.content.Intent; 74 * Indicates that the intent sent had an invalid action. This will be the result if 75 * {@link Intent#getAction()} returns anything other than 86 * Indicates that the intent was missing some required extras. 140 public void onReceive(Context context, Intent intent) { 141 if (!verifyIntentContents(context, intent)) { 145 if (!Objects.equals(intent.getStringExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT), 151 if (VendorUtils.ACTION_DOWNLOAD_RESULT_INTERNAL.equals(intent.getAction())) { 152 moveDownloadedFile(context, intent); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
CtsTestHelper.java | 20 import android.content.Intent; 30 Intent it = new Intent(); 36 public static float getMeasuredFOV(Intent intent) { 37 return intent.getFloatExtra(MEASURED_FOV_EXTRA, -1f); 40 public static float getReportedFOV(Intent intent) { 41 return intent.getFloatExtra(REPORTED_FOV_EXTRA, -1f);
|
/cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/ |
AwareService.java | 22 import android.content.Intent; 31 protected void onHandleIntent(Intent intent) {
|
UnawareService.java | 22 import android.content.Intent; 31 protected void onHandleIntent(Intent intent) {
|
/cts/hostsidetests/appsecurity/test-apps/IsolatedSplitApp/feature_a/src/com/android/cts/isolatedsplitapp/feature_a/ |
FeatureAReceiver.java | 19 import android.content.Intent; 25 public void onReceive(Context context, Intent intent) {
|
/cts/hostsidetests/appsecurity/test-apps/IsolatedSplitApp/feature_c/src/com/android/cts/isolatedsplitapp/feature_c/ |
FeatureCReceiver.java | 19 import android.content.Intent; 25 public void onReceive(Context context, Intent intent) {
|
/cts/hostsidetests/appsecurity/test-apps/IsolatedSplitApp/src/com/android/cts/isolatedsplitapp/ |
BaseReceiver.java | 20 import android.content.Intent; 24 public void onReceive(Context context, Intent intent) {
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/ |
FeatureReceiver.java | 21 import android.content.Intent; 25 public void onReceive(Context context, Intent intent) {
|
/cts/hostsidetests/content/test-apps/CtsSyncAccountAccessSameCertTests/src/com/android/cts/content/ |
SyncService.java | 20 import android.content.Intent; 33 public IBinder onBind(Intent intent) {
|
/cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/ |
MockAccountService.java | 20 import android.content.Intent; 29 public IBinder onBind(Intent intent) {
|
/cts/hostsidetests/devicepolicy/app/Assistant/src/com/android/cts/devicepolicy/assistapp/ |
MyInteractionService.java | 21 import android.content.Intent; 65 public void onReceive(Context context, Intent intent) { 66 Log.d(TAG, "AssistReceiver: " + intent + " mReady: " + mReady); 67 if (ACTION_CHECK_IS_READY.equals(intent.getAction())) { 69 } else if (ACTION_SHOW_SESSION.equals(intent.getAction())) {
|
/cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/ |
UnprotectedCrossUserService.java | 20 import android.content.Intent; 28 public IBinder onBind(Intent intent) {
|
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
AccountService.java | 20 import android.content.Intent; 26 public IBinder onBind(Intent intent) {
|
SanityTest.java | 20 import android.content.Intent; 61 Intent intent = new Intent(); local 62 intent.setComponent(SIMPLE_APP_ACTIVITY); 64 intent.putExtra("finish", true); 65 mContext.startActivity(intent); 66 Intent receivedBroadcast = receiver.awaitForBroadcast();
|
/cts/hostsidetests/devicepolicy/app/SimpleApp/src/com/android/cts/launcherapps/simpleapp/ |
SimpleReceiver.java | 21 import android.content.Intent; 26 public void onReceive(Context context, Intent intent) { 27 //Log.i("xxx", "SimpleReceiver: " + intent);
|
SimpleRemoteReceiver.java | 21 import android.content.Intent; 26 public void onReceive(Context context, Intent intent) { 27 //Log.i("xxx", "SimpleRemoteReceiver: " + intent);
|
/cts/hostsidetests/devicepolicy/app/SingleAdminApp/src/com/android/cts/devicepolicy/singleadmin/ |
ProvisioningSingleAdminTest.java | 27 import android.content.Intent; 49 public void onProfileProvisioningComplete(Context context, Intent intent) { 50 super.onProfileProvisioningComplete(context, intent); 66 private Intent createProvisioningIntent() { 67 return new Intent(ACTION_PROVISION_MANAGED_PROFILE) 72 private void assertProvisioningSucceeds(Intent intent) throws InterruptedException { 74 assertTrue(provisioningMgr.startProvisioningAndWait(intent));
|
/cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/ |
BatteryStatsForegroundActivity.java | 26 import android.content.Intent; 38 Intent intent = this.getIntent(); local 39 if (intent == null) { 40 Log.e(TAG, "Intent was null."); 44 String action = intent.getStringExtra(KEY_ACTION); 45 String requestCode = intent.getStringExtra(KEY_REQUEST_CODE);
|
BatteryStatsSyncService.java | 19 import android.content.Intent; 30 public synchronized IBinder onBind(Intent intent) {
|
/cts/hostsidetests/inputmethodservice/deviceside/provider/src/android/inputmethodservice/cts/receiver/ |
EventReceiver.java | 24 import android.content.Intent; 39 public void onReceive(final Context context, final Intent intent) { 40 // Since {@code intent} which comes from host has no 43 if (!intent.hasExtra(EXTRA_EVENT_TIME)) { 44 intent.putExtra(EXTRA_EVENT_TIME, SystemClock.uptimeMillis()); 46 final DeviceEvent event = DeviceEvent.newEvent(intent);
|
/cts/hostsidetests/services/activityandwindowmanager/activitymanager/app/src/android/server/cts/ |
AssistantActivity.java | 19 import static android.content.Intent.FLAG_ACTIVITY_CLEAR_TASK; 20 import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK; 25 import android.content.Intent; 46 Intent i = new Intent(); 49 i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); 73 final Intent intent = new Intent(caller, AssistantActivity.class) local [all...] |
/cts/tests/app/app/src/android/app/stubs/ |
NewDocumentTestActivity.java | 20 import android.content.Intent; 29 sendBroadcast(new Intent(NOTIFY_RESUME)); 33 public void onNewIntent(Intent intent) { 34 sendBroadcast(new Intent(NOTIFY_NEW_INTENT));
|