Home
last modified time | relevance | path

Searched refs:extras (Results 1 – 25 of 374) sorted by relevance

12345678910>>...15

/packages/apps/TV/common/tests/robotests/src/com/android/tv/common/actions/
DInputSetupActionUtilsTest.java101 Bundle extras = new Bundle(); in removeSetupIntent_empty() local
103 InputSetupActionUtils.removeSetupIntent(extras); in removeSetupIntent_empty()
104 assertThat(extras.toString()).isEqualTo(expected.toString()); in removeSetupIntent_empty()
109 Bundle extras = createTestBundle(); in removeSetupIntent_other() local
111 InputSetupActionUtils.removeSetupIntent(extras); in removeSetupIntent_other()
112 assertThat(extras.toString()).isEqualTo(expected.toString()); in removeSetupIntent_other()
117 Bundle extras = createTestBundle(); in removeSetupIntent_setup() local
119 extras.putParcelable("com.android.tv.extra.SETUP_INTENT", setup); in removeSetupIntent_setup()
120 InputSetupActionUtils.removeSetupIntent(extras); in removeSetupIntent_setup()
121 assertThat(extras).doesNotContainKey("com.android.tv.extra.SETUP_INTENT"); in removeSetupIntent_setup()
[all …]
/packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/browse/
DMediaBrowserViewModelImpl.java73 Bundle extras = mediaBrowserCompat.getExtras(); in getSupportsSearch() local
74 if (extras == null) { in getSupportsSearch()
77 if (extras.containsKey(MediaConstants.MEDIA_SEARCH_SUPPORTED)) { in getSupportsSearch()
78 return extras.getBoolean(MediaConstants.MEDIA_SEARCH_SUPPORTED); in getSupportsSearch()
80 if (extras.containsKey(MediaConstants.MEDIA_SEARCH_SUPPORTED_PRERELEASE)) { in getSupportsSearch()
81 return extras.getBoolean(MediaConstants.MEDIA_SEARCH_SUPPORTED_PRERELEASE); in getSupportsSearch()
91 Bundle extras = mediaBrowserCompat.getExtras(); in getRootBrowsableHint() local
92 if (extras == null) { in getRootBrowsableHint()
95 if (extras.containsKey(MediaConstants.CONTENT_STYLE_BROWSABLE_HINT)) { in getRootBrowsableHint()
96 return extras.getInt(MediaConstants.CONTENT_STYLE_BROWSABLE_HINT, 0); in getRootBrowsableHint()
[all …]
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorSimCallManager.java100 @NonNull Bundle extras) { in addNewOutgoingCall() argument
103 Assert.isNotNull(extras); in addNewOutgoingCall()
105 Assert.isNotNull(extras); in addNewOutgoingCall()
109 extras = new Bundle(extras); in addNewOutgoingCall()
110 extras.putAll(createSimulatorConnectionExtras(callType)); in addNewOutgoingCall()
113 outgoingCallExtras.putBundle(TelecomManager.EXTRA_OUTGOING_CALL_EXTRAS, extras); in addNewOutgoingCall()
130 return extras.getString(EXTRA_CONNECTION_TAG); in addNewOutgoingCall()
144 @NonNull Bundle extras) { in addNewIncomingCall() argument
148 Assert.isNotNull(extras); in addNewIncomingCall()
152 extras = new Bundle(extras); in addNewIncomingCall()
[all …]
DSimulatorVoiceCall.java58 Bundle extras = new Bundle(); in incomingEnrichedCall() local
59 extras.putBoolean(Simulator.IS_ENRICHED_CALL, true); in incomingEnrichedCall()
65 extras); in incomingEnrichedCall()
76 Bundle extras = new Bundle(); in outgoingEnrichedCall() local
77 extras.putBoolean(Simulator.IS_ENRICHED_CALL, true); in outgoingEnrichedCall()
83 extras); in outgoingEnrichedCall()
96 Bundle extras = new Bundle(); in addCustomizedIncomingCall() local
97 extras.putInt(Simulator.PRESENTATION_CHOICE, callerIdPresentation); in addCustomizedIncomingCall()
100 context, callerId, SimulatorSimCallManager.CALL_TYPE_VOICE, extras); in addCustomizedIncomingCall()
106 Bundle extras = new Bundle(); in addCustomizedIncomingCallWithDialog() local
[all …]
/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
DA2dpReceiver.java214 Bundle extras = intent.getExtras(); in processParameters() local
216 if (extras == null) { in processParameters()
221 if (extras.containsKey("BT_OFF_Mute")) { in processParameters()
235 if (extras.containsKey("BT_ON_NotPlay")) { in processParameters()
243 if (!extras.containsKey("PlayTime")) { in processParameters()
247 tmpStr = extras.getString("PlayTime"); in processParameters()
251 if (!extras.containsKey("MusicURL")) { in processParameters()
255 musicUrl = extras.getString("MusicURL"); in processParameters()
265 if (!extras.containsKey("CodecType")) { in processParameters()
269 tmpStr = extras.getString("CodecType"); in processParameters()
[all …]
DGattPMCReceiver.java65 Bundle extras = intent.getExtras(); in onReceive() local
69 if (extras == null) { in onReceive()
74 if (extras.containsKey("GattServer")) { in onReceive()
81 if (!extras.containsKey("StartTime")) { in onReceive()
85 str = extras.getString("StartTime"); in onReceive()
90 if (!extras.containsKey("WriteTime")) { in onReceive()
94 str = extras.getString("WriteTime"); in onReceive()
98 if (!extras.containsKey("IdleTime")) { in onReceive()
102 str = extras.getString("IdleTime"); in onReceive()
106 if (!extras.containsKey("Repetitions")) { in onReceive()
[all …]
DBleScanReceiver.java254 Bundle extras = intent.getExtras(); in onReceive() local
262 if (extras == null) { in onReceive()
267 if (!extras.containsKey("ScanMode")) { in onReceive()
271 str = extras.getString("ScanMode"); in onReceive()
275 if (!extras.containsKey("StartTime")) { in onReceive()
279 str = extras.getString("StartTime"); in onReceive()
283 if (!extras.containsKey("ScanTime")) { in onReceive()
287 str = extras.getString("ScanTime"); in onReceive()
291 if (extras.containsKey("Repetitions")) { in onReceive()
293 str = extras.getString("Repetitions"); in onReceive()
[all …]
DPMCMainActivity.java401 Bundle extras = intent.getExtras(); in onReceive() local
403 if (extras != null) { in onReceive()
404 if (extras.containsKey(key)) { in onReceive()
405 String actionstring = extras.getString(key); in onReceive()
453 Bundle extras = intent.getExtras(); in onReceive() local
454 if (extras != null) { in onReceive()
455 if (extras.containsKey(SETTING_INTERVAL_KEY)) { in onReceive()
456 setIntervalFromUser(extras.getString(SETTING_INTERVAL_KEY)); in onReceive()
458 if (extras.containsKey(SETTING_SERVER_IP_KEY)) { in onReceive()
459 mServerIP = extras.getString(SETTING_SERVER_IP_KEY); in onReceive()
[all …]
/packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
DMediaItemMetadata.java248 Bundle extras = mMediaDescription.getExtras(); in isExplicit() local
249 return extras != null && extras.getLong(MediaConstants.EXTRA_IS_EXPLICIT) in isExplicit()
257 Bundle extras = mMediaDescription.getExtras(); in isDownloaded() local
258 return extras != null && extras.getLong(MediaConstants.EXTRA_DOWNLOAD_STATUS) in isDownloaded()
298 Bundle extras = mMediaDescription.getExtras(); in getBrowsableContentStyleHint() local
299 if (extras != null) { in getBrowsableContentStyleHint()
300 if (extras.containsKey(MediaConstants.CONTENT_STYLE_BROWSABLE_HINT)) { in getBrowsableContentStyleHint()
301 return extras.getInt(MediaConstants.CONTENT_STYLE_BROWSABLE_HINT, 0); in getBrowsableContentStyleHint()
302 } else if (extras.containsKey(MediaConstants.CONTENT_STYLE_BROWSABLE_HINT_PRERELEASE)) { in getBrowsableContentStyleHint()
303 return extras.getInt(MediaConstants.CONTENT_STYLE_BROWSABLE_HINT_PRERELEASE, 0); in getBrowsableContentStyleHint()
[all …]
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DCallNotificationReceiver.java91 Bundle extras = new Bundle(); in sendIncomingCallIntent() local
92 extras.putInt(TestConnectionService.EXTRA_START_VIDEO_STATE, videoState); in sendIncomingCallIntent()
94 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle); in sendIncomingCallIntent()
97 TelecomManager.from(context).addNewIncomingCall(phoneAccount, extras); in sendIncomingCallIntent()
107 Bundle extras = new Bundle(); in sendIncomingRttCallIntent() local
108 extras.putInt(TestConnectionService.EXTRA_START_VIDEO_STATE, videoState); in sendIncomingRttCallIntent()
110 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle); in sendIncomingRttCallIntent()
112 extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_RTT, true); in sendIncomingRttCallIntent()
114 TelecomManager.from(context).addNewIncomingCall(phoneAccount, extras); in sendIncomingRttCallIntent()
117 public static void addNewUnknownCall(Context context, Uri handle, Bundle extras) { in addNewUnknownCall() argument
[all …]
DSelfManagedCallingActivity.java201 Bundle extras = new Bundle(); in placeOutgoingCall() local
202 extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, in placeOutgoingCall()
205 extras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, in placeOutgoingCall()
211 extras.putBundle(TelecomManager.EXTRA_OUTGOING_CALL_EXTRAS, clientExtras); in placeOutgoingCall()
212 tm.placeCall(Uri.parse(mNumber.getText().toString()), extras); in placeOutgoingCall() local
225 Bundle extras = new Bundle(); in placeSelfManagedOutgoingCall() local
226 extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle); in placeSelfManagedOutgoingCall()
228 extras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, in placeSelfManagedOutgoingCall()
231 tm.placeCall(Uri.parse(mNumber.getText().toString()), extras); in placeSelfManagedOutgoingCall() local
252 Bundle extras = new Bundle(); in placeIncomingCall() local
[all …]
/packages/apps/TV/common/src/com/android/tv/common/actions/
DInputSetupActionUtils.java95 public static void removeSetupIntent(Bundle extras) { in removeSetupIntent() argument
96 extras.remove(EXTRA_SETUP_INTENT); in removeSetupIntent()
97 extras.remove(EXTRA_GOOGLE_SETUP_INTENT); in removeSetupIntent()
102 Bundle extras = intent.getExtras(); in getExtraSetupIntent() local
103 if (extras == null) { in getExtraSetupIntent()
106 Intent setupIntent = extras.getParcelable(EXTRA_SETUP_INTENT); in getExtraSetupIntent()
107 return setupIntent != null ? setupIntent : extras.getParcelable(EXTRA_GOOGLE_SETUP_INTENT); in getExtraSetupIntent()
112 Bundle extras = intent.getExtras(); in getExtraActivityAfter() local
113 if (extras == null) { in getExtraActivityAfter()
116 Intent setupIntent = extras.getParcelable(EXTRA_ACTIVITY_AFTER_COMPLETION); in getExtraActivityAfter()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/logging/
DEventLogArray.java54 public void addLog(String event, int extras) { in addLog() argument
55 addLog(TYPE_INTEGER, event, extras); in addLog()
58 public void addLog(String event, boolean extras) { in addLog() argument
59 addLog(extras ? TYPE_BOOL_TRUE : TYPE_BOOL_FALSE, event, 0); in addLog()
62 private void addLog(int type, String event, float extras) { in addLog() argument
67 logs[last].update(type, event, extras, mLogId); in addLog()
75 logs[nextIndex].update(type, event, extras, mLogId); in addLog()
105 msg.append(": ").append(log.extras); in dump()
108 msg.append(": ").append((int) log.extras); in dump()
136 private float extras; field in EventLogArray.EventEntry
[all …]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallExtrasTest.java84 Bundle extras = new Bundle(); in testCsPutExtras() local
85 extras.putString(EXTRA_KEY_STR, EXTRA_VALUE_STR); in testCsPutExtras()
86 extras.putInt(EXTRA_KEY_INT, EXTRA_VALUE_INT); in testCsPutExtras()
89 connection.putExtras(extras); in testCsPutExtras()
220 Bundle extras = new Bundle(); in testCsUpdateExisting() local
221 extras.putString(EXTRA_KEY_STR, EXTRA_VALUE_STR); in testCsUpdateExisting()
222 extras.putInt(EXTRA_KEY_INT, EXTRA_VALUE_INT); in testCsUpdateExisting()
223 connection.putExtras(extras); in testCsUpdateExisting()
259 Bundle extras = new Bundle(); in testCsSetExtras() local
260 extras.putString(EXTRA_KEY_STR, EXTRA_VALUE_STR); in testCsSetExtras()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
DBaseTask.java47 private Bundle extras; field in BaseTask
155 extras.putLong(EXTRA_EXECUTION_TIME, executionTime); in toBundle()
156 return extras; in toBundle()
161 public void onCreate(Context context, Bundle extras) { in onCreate() argument
163 this.extras = extras; in onCreate()
164 phoneAccountHandle = extras.getParcelable(EXTRA_PHONE_ACCOUNT_HANDLE); in onCreate()
166 policy.onCreate(this, extras); in onCreate()
172 public void onRestore(Bundle extras) { in onRestore() argument
173 if (this.extras.containsKey(EXTRA_EXECUTION_TIME)) { in onRestore()
174 executionTime = extras.getLong(EXTRA_EXECUTION_TIME); in onRestore()
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
DNativeNfcTag.java546 Bundle extras = new Bundle(); in addNdefTechnology() local
547 extras.putParcelable(Ndef.EXTRA_NDEF_MSG, msg); in addNdefTechnology()
548 extras.putInt(Ndef.EXTRA_NDEF_MAXLENGTH, maxLength); in addNdefTechnology()
549 extras.putInt(Ndef.EXTRA_NDEF_CARDSTATE, cardState); in addNdefTechnology()
550 extras.putInt(Ndef.EXTRA_NDEF_TYPE, getNdefType(libnfcType, javaType)); in addNdefTechnology()
556 builtTechExtras[builtTechExtras.length - 1] = extras; in addNdefTechnology()
563 newTechExtras[oldTechExtras.length] = extras; in addNdefTechnology()
664 Bundle extras = new Bundle(); in getTechExtras() local
669 extras.putShort(NfcA.EXTRA_SAK, (short) (actBytes[0] & (short) 0xFF)); in getTechExtras()
674 extras.putByteArray(NfcA.EXTRA_ATQA, mTechPollBytes[i]); in getTechExtras()
[all …]
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DConnectivityDiagnosticsManagerTest.java343 final PersistableBundle extras = new PersistableBundle(); in testOnDataStallSuspected_DnsEvents() local
344 extras.putInt(KEY_DNS_CONSECUTIVE_TIMEOUTS, DNS_CONSECUTIVE_TIMEOUTS); in testOnDataStallSuspected_DnsEvents()
346 verifyOnDataStallSuspected(DETECTION_METHOD_DNS_EVENTS, TIMESTAMP, extras); in testOnDataStallSuspected_DnsEvents()
351 final PersistableBundle extras = new PersistableBundle(); in testOnDataStallSuspected_TcpMetrics() local
352 extras.putInt(KEY_TCP_METRICS_COLLECTION_PERIOD_MILLIS, COLLECTION_PERIOD_MILLIS); in testOnDataStallSuspected_TcpMetrics()
353 extras.putInt(KEY_TCP_PACKET_FAIL_RATE, FAIL_RATE_PERCENTAGE); in testOnDataStallSuspected_TcpMetrics()
355 verifyOnDataStallSuspected(DETECTION_METHOD_TCP_METRICS, TIMESTAMP, extras); in testOnDataStallSuspected_TcpMetrics()
368 int detectionMethod, long timestampMillis, @NonNull PersistableBundle extras) in verifyOnDataStallSuspected() argument
371 verifyOnDataStallSuspected(detectionMethod, detectionMethod, timestampMillis, extras); in verifyOnDataStallSuspected()
378 @NonNull PersistableBundle extras) in verifyOnDataStallSuspected() argument
[all …]
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationGroup.java179 Bundle extras = notification.getNotification().extras; in generateChildTitles() local
180 if (extras.containsKey(Notification.EXTRA_TITLE)) { in generateChildTitles()
181 titles.add(extras.getString(Notification.EXTRA_TITLE)); in generateChildTitles()
183 } else if (extras.containsKey(Notification.EXTRA_TITLE_BIG)) { in generateChildTitles()
184 titles.add(extras.getString(Notification.EXTRA_TITLE_BIG)); in generateChildTitles()
186 } else if (extras.containsKey(Notification.EXTRA_MESSAGES)) { in generateChildTitles()
189 extras.getParcelableArray(Notification.EXTRA_MESSAGES)); in generateChildTitles()
193 } else if (extras.containsKey(Notification.EXTRA_SUB_TEXT)) { in generateChildTitles()
194 titles.add(extras.getString(Notification.EXTRA_SUB_TEXT)); in generateChildTitles()
/packages/apps/Settings/src/com/android/settings/accessibility/
DMagnificationGesturesPreferenceController.java54 Bundle extras = preference.getExtras(); in handlePreferenceTreeClick() local
55 populateMagnificationGesturesPreferenceExtras(extras, mContext); in handlePreferenceTreeClick()
56 extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, isChecked()); in handlePreferenceTreeClick()
57 extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, mIsFromSUW); in handlePreferenceTreeClick()
92 static void populateMagnificationGesturesPreferenceExtras(Bundle extras, Context context) { in populateMagnificationGesturesPreferenceExtras() argument
93 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY, in populateMagnificationGesturesPreferenceExtras()
95 extras.putInt(AccessibilitySettings.EXTRA_TITLE_RES, in populateMagnificationGesturesPreferenceExtras()
101 extras.putCharSequence(AccessibilitySettings.EXTRA_HTML_DESCRIPTION, summary); in populateMagnificationGesturesPreferenceExtras()
103 extras.putInt(AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID, in populateMagnificationGesturesPreferenceExtras()
DAccessibilityDetailsSettingsFragment.java194 final Bundle extras = new Bundle(); in buildArguments() local
195 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY, in buildArguments()
197 extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, serviceEnabled); in buildArguments()
198 extras.putString(AccessibilitySettings.EXTRA_TITLE, title); in buildArguments()
199 extras.putParcelable(AccessibilitySettings.EXTRA_RESOLVE_INFO, resolveInfo); in buildArguments()
200 extras.putString(AccessibilitySettings.EXTRA_SUMMARY, description); in buildArguments()
204 extras.putString(AccessibilitySettings.EXTRA_SETTINGS_TITLE, in buildArguments()
206 extras.putString(AccessibilitySettings.EXTRA_SETTINGS_COMPONENT_NAME, in buildArguments()
209 extras.putParcelable(AccessibilitySettings.EXTRA_COMPONENT_NAME, componentName); in buildArguments()
210 extras.putInt(AccessibilitySettings.EXTRA_ANIMATED_IMAGE_RES, info.getAnimatedImageRes()); in buildArguments()
[all …]
DAccessibilitySettingsForSetupWizard.java139 Bundle extras = mDisplayMagnificationPreference.getExtras(); in onPreferenceTreeClick() local
140 extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, true); in onPreferenceTreeClick()
184 final Bundle extras = preference.getExtras(); in updateAccessibilityServicePreference() local
185 extras.putParcelable(AccessibilitySettings.EXTRA_COMPONENT_NAME, componentName); in updateAccessibilityServicePreference()
187 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY, in updateAccessibilityServicePreference()
189 extras.putString(AccessibilitySettings.EXTRA_TITLE, title); in updateAccessibilityServicePreference()
192 extras.putString(AccessibilitySettings.EXTRA_SUMMARY, description); in updateAccessibilityServicePreference()
194 extras.putInt(AccessibilitySettings.EXTRA_ANIMATED_IMAGE_RES, info.getAnimatedImageRes()); in updateAccessibilityServicePreference()
197 extras.putString(AccessibilitySettings.EXTRA_HTML_DESCRIPTION, htmlDescription); in updateAccessibilityServicePreference()
204 final Bundle extras = preference.getExtras(); in configureMagnificationPreferenceIfNeeded() local
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/audio_util/mockable/
DMediaController.java273 public void prepareFromMediaId(String mediaId, Bundle extras) { in prepareFromMediaId() argument
274 mTransportDelegate.prepareFromMediaId(mediaId, extras); in prepareFromMediaId()
280 public void prepareFromSearch(String query, Bundle extras) { in prepareFromSearch() argument
281 mTransportDelegate.prepareFromSearch(query, extras); in prepareFromSearch()
287 public void prepareFromUri(Uri uri, Bundle extras) { in prepareFromUri() argument
288 mTransportDelegate.prepareFromUri(uri, extras); in prepareFromUri()
301 public void playFromMediaId(String mediaId, Bundle extras) { in playFromMediaId() argument
302 mTransportDelegate.playFromMediaId(mediaId, extras); in playFromMediaId()
308 public void playFromSearch(String query, Bundle extras) { in playFromSearch() argument
309 mTransportDelegate.playFromSearch(query, extras); in playFromSearch()
[all …]
/packages/services/Telephony/src/com/android/services/telephony/
DPstnIncomingCallNotifier.java240 Bundle extras = new Bundle(); in addNewUnknownCall() local
244 extras.putParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE, uri); in addNewUnknownCall()
252 extras.putInt(ImsExternalCallTracker.EXTRA_IMS_EXTERNAL_CALL_ID, in addNewUnknownCall()
257 extras.putLong(EXTRA_CALL_CREATED_TIME_MILLIS, SystemClock.elapsedRealtime()); in addNewUnknownCall()
268 tm.addNewUnknownCall(handle, extras); in addNewUnknownCall()
279 Bundle extras = new Bundle(); in sendIncomingCallIntent() local
283 extras.putParcelable(TelecomManager.EXTRA_INCOMING_CALL_ADDRESS, uri); in sendIncomingCallIntent()
287 extras.putLong(EXTRA_CALL_CREATED_TIME_MILLIS, SystemClock.elapsedRealtime()); in sendIncomingCallIntent()
291 extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_RTT, true); in sendIncomingCallIntent()
294 extras.putString(TelecomManager.EXTRA_CALL_DISCONNECT_MESSAGE, in sendIncomingCallIntent()
[all …]
/packages/apps/Gallery/src/com/android/camera/
DCropImage.java103 Bundle extras = intent.getExtras(); in onCreate() local
105 if (extras != null) { in onCreate()
106 if (extras.getString("circleCrop") != null) { in onCreate()
111 mSaveUri = (Uri) extras.getParcelable(MediaStore.EXTRA_OUTPUT); in onCreate()
113 String outputFormatString = extras.getString("outputFormat"); in onCreate()
119 mSetWallpaper = extras.getBoolean("setWallpaper"); in onCreate()
121 mBitmap = (Bitmap) extras.getParcelable("data"); in onCreate()
122 mAspectX = extras.getInt("aspectX"); in onCreate()
123 mAspectY = extras.getInt("aspectY"); in onCreate()
124 mOutputX = extras.getInt("outputX"); in onCreate()
[all …]
/packages/apps/Dialer/java/com/android/dialer/callintent/
DCallIntentParser.java30 public static CallSpecificAppData getCallSpecificAppData(@Nullable Bundle extras) { in getCallSpecificAppData() argument
31 if (extras == null) { in getCallSpecificAppData()
35 if (!extras.containsKey(Constants.EXTRA_CALL_SPECIFIC_APP_DATA)) { in getCallSpecificAppData()
39 if (extras.getByteArray(Constants.EXTRA_CALL_SPECIFIC_APP_DATA) == null) { in getCallSpecificAppData()
47 extras, Constants.EXTRA_CALL_SPECIFIC_APP_DATA, CallSpecificAppData.getDefaultInstance()); in getCallSpecificAppData()
51 @NonNull Bundle extras, @NonNull CallSpecificAppData callSpecificAppData) { in putCallSpecificAppData()
52 ProtoParsers.put(extras, Constants.EXTRA_CALL_SPECIFIC_APP_DATA, callSpecificAppData); in putCallSpecificAppData()

12345678910>>...15