/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/ |
NetworkLoggingHandler.java | 184 /** @returns extras if a message should be sent to the device owner */ 211 /** Build extras notification to the DO. Should only be called when there 214 final Bundle extras = new Bundle(); local 216 extras.putLong(DeviceAdminReceiver.EXTRA_NETWORK_LOGS_TOKEN, mCurrentBatchToken); 217 extras.putInt(DeviceAdminReceiver.EXTRA_NETWORK_LOGS_COUNT, lastBatchSize); 218 return extras; 223 private void notifyDeviceOwner(Bundle extras) { 225 + extras.getLong(DeviceAdminReceiver.EXTRA_NETWORK_LOGS_TOKEN, -1)); 230 mDpm.sendDeviceOwnerCommand(DeviceAdminReceiver.ACTION_NETWORK_LOGS_AVAILABLE, extras);
|
/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/ |
TaskSchedulerJobService.java | 118 Bundle extras = new Bundle(); local 120 extras.putInt(EXTRA_JOB_ID, jobId); 126 extras.putParcelableArray( 132 .setTransientExtras(extras)
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/ |
SortingCursorWrapperTest.java | 373 Bundle extras = new Bundle(); local 374 extras.putBoolean(DocumentsContract.EXTRA_LOADING, true); 375 extras.putString(DocumentsContract.EXTRA_INFO, "cheddar"); 376 extras.putString(DocumentsContract.EXTRA_ERROR, "flop"); 377 c.setExtras(extras);
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/extras/tycho-p2-extras-plugin/0.18.1/ |
tycho-p2-extras-plugin-0.18.1.jar | |
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
NativeNfcTag.java | 535 Bundle extras = new Bundle(); local 536 extras.putParcelable(Ndef.EXTRA_NDEF_MSG, msg); 537 extras.putInt(Ndef.EXTRA_NDEF_MAXLENGTH, maxLength); 538 extras.putInt(Ndef.EXTRA_NDEF_CARDSTATE, cardState); 539 extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType)); 545 builtTechExtras[builtTechExtras.length - 1] = extras; 548 // Tech extras were built before, patch the NDEF one in 552 newTechExtras[oldTechExtras.length] = extras; 653 Bundle extras = new Bundle(); local 658 extras.putShort(NfcA.EXTRA_SAK, (short) (actBytes[0] & (short) 0xFF)) [all...] |
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
CallExtrasTest.java | 32 * Tests the {@link Connection} and {@link Call} extras functionality. 45 * Tests setting extras on the connection side and ensuring they are propagated through to 56 // Communicate extras from the ConnectionService to the InCallService. 57 Bundle extras = new Bundle(); local 58 extras.putString(EXTRA_KEY_STR, EXTRA_VALUE_STR); 59 extras.putInt(EXTRA_KEY_INT, EXTRA_VALUE_INT); 62 connection.putExtras(extras); 71 * Tests setting extras on the connection side and ensuring they are propagated through to 92 * Tests setting extras on the connection side and ensuring they are propagated through to 113 * Tests setting extras on the connection side and ensuring they are propagated through t 179 Bundle extras = new Bundle(); local 215 Bundle extras = new Bundle(); local 247 Bundle extras = new Bundle(); local [all...] |
/cts/hostsidetests/services/activityandwindowmanager/activitymanager/app/src/android/server/cts/ |
BroadcastReceiverActivity.java | 60 final Bundle extras = intent.getExtras(); local 61 Log.i(TAG, "onReceive: extras=" + extras); 63 if (extras == null) { 66 if (extras.getBoolean("finish")) { 69 if (extras.getBoolean("moveToBack")) { 72 if (extras.containsKey("orientation")) { 73 setRequestedOrientation(extras.getInt("orientation")); 75 if (extras.getBoolean("dismissKeyguard")) { 78 if (extras.getBoolean("dismissKeyguardMethod")) [all...] |
/cts/hostsidetests/services/activityandwindowmanager/activitymanager/appSecondUid/src/android/server/cts/second/ |
LaunchBroadcastReceiver.java | 33 final Bundle extras = intent.getExtras(); local 36 final String targetActivity = extras != null ? extras.getString("target_activity") : null; 38 String packageName = extras.getString("package_name"); 46 int displayId = extras.getInt("target_display", -1);
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
CompressedTextureCtsActivity.java | 37 Bundle extras = getIntent().getExtras(); local 38 String formatTest = extras.getString("TextureFormat", null);
|
/developers/build/prebuilts/gradle/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/ |
ComplicationToggleReceiver.java | 36 Bundle extras = intent.getExtras(); local 37 ComponentName provider = extras.getParcelable(EXTRA_PROVIDER_COMPONENT); 38 int complicationId = extras.getInt(EXTRA_COMPLICATION_ID);
|
/developers/samples/android/wearable/wear/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/ |
ComplicationToggleReceiver.java | 36 Bundle extras = intent.getExtras(); local 37 ComponentName provider = extras.getParcelable(EXTRA_PROVIDER_COMPONENT); 38 int complicationId = extras.getInt(EXTRA_COMPLICATION_ID);
|
/development/samples/ApiDemos/src/com/example/android/apis/appwidget/ |
ExampleAppWidgetConfigure.java | 70 Bundle extras = intent.getExtras(); local 71 if (extras != null) { 72 mAppWidgetId = extras.getInt(
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
SmsMessageReceiver.java | 34 Bundle extras = intent.getExtras(); local 35 if (extras == null) 38 Object[] pdus = (Object[]) extras.get("pdus");
|
/frameworks/base/core/java/android/appwidget/ |
AppWidgetProvider.java | 29 * with the received extras. 62 Bundle extras = intent.getExtras(); local 63 if (extras != null) { 64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS); 70 Bundle extras = intent.getExtras(); local 71 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID)) { 72 final int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID); 76 Bundle extras = intent.getExtras(); local 77 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID 89 Bundle extras = intent.getExtras(); local [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
IsoDep.java | 73 Bundle extras = tag.getTechExtras(TagTechnology.ISO_DEP); local 74 if (extras != null) { 75 mHiLayerResponse = extras.getByteArray(EXTRA_HI_LAYER_RESP); 76 mHistBytes = extras.getByteArray(EXTRA_HIST_BYTES);
|
NfcA.java | 69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_A); local 70 mSak = extras.getShort(EXTRA_SAK); 71 mAtqa = extras.getByteArray(EXTRA_ATQA);
|
NfcF.java | 69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_F); local 70 if (extras != null) { 71 mSystemCode = extras.getByteArray(EXTRA_SC); 72 mManufacturer = extras.getByteArray(EXTRA_PMM);
|
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/ |
TestAppWidgetProvider.java | 49 Bundle extras = intent.getExtras(); local 50 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
|
/frameworks/support/samples/SupportVectorDrawableDemos/src/com/example/android/support/vectordrawable/app/ |
SimpleStaticVectorDrawable.java | 105 VectorDrawableCompat[] extras = new VectorDrawableCompat[EXTRA_TESTS]; local 107 extras[0] = (VectorDrawableCompat) state.newDrawable(); 108 extras[1] = (VectorDrawableCompat) state.newDrawable(); 111 extras[0].setAlpha(128); 122 addDrawableButtons(container, extras);
|
/frameworks/support/v13/java/android/support/v13/view/inputmethod/ |
EditorInfoCompat.java | 88 if (editorInfo.extras == null) { 89 editorInfo.extras = new Bundle(); 91 editorInfo.extras.putStringArray(CONTENT_MIME_TYPES_KEY, contentMimeTypes); 97 if (editorInfo.extras == null) { 100 String[] result = editorInfo.extras.getStringArray(CONTENT_MIME_TYPES_KEY);
|
/packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/ |
DialogSmsDisplay.java | 56 Bundle extras = intent.getExtras(); local 57 if (extras == null) { 60 mFromAddress = extras.getString(SMS_FROM_ADDRESS_EXTRA); 61 mMessage = extras.getString(SMS_MESSAGE_EXTRA); 62 int notificationId = extras.getInt(SMS_NOTIFICATION_ID_EXTRA);
|
SmsMessageReceiver.java | 35 Bundle extras = intent.getExtras(); local 37 if (extras == null) 40 Object[] pdus = (Object[]) extras.get("pdus");
|
/packages/apps/Gallery/src/com/android/camera/ |
PhotoAppWidgetBind.java | 48 final Bundle extras = intent.getExtras(); local 51 extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS); 53 extras.getParcelableArrayList(EXTRA_APPWIDGET_BITMAPS);
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
DocumentImagePicker.java | 91 final Bundle extras = data.getExtras(); local 92 if (extras != null) { 93 final Uri uri = (Uri) extras.getParcelable(Intent.EXTRA_STREAM);
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
ControlPanelReceiver.java | 99 final Bundle extras = new Bundle(); local 100 extras.putBoolean("GLOBAL_ENABLED", value); 101 setResultExtras(extras);
|