/frameworks/base/packages/SettingsLib/SchedulesProvider/src/com/android/settingslib/schedulesprovider/ |
D | ScheduleInfo.java | 37 private final PendingIntent mPendingIntent; field in ScheduleInfo 42 mPendingIntent = builder.mPendingIntent; in ScheduleInfo() 48 mPendingIntent = in.readParcelable(PendingIntent.class.getClassLoader()); in ScheduleInfo() 70 return mPendingIntent; in getPendingIntent() 80 && (mPendingIntent != null); in isValid() 87 dest.writeParcelable(mPendingIntent, flags); in writeToParcel() 110 return "title: " + mTitle + ", summary: " + mSummary + ", pendingIntent: " + mPendingIntent; in toString() 119 private PendingIntent mPendingIntent; field in ScheduleInfo.Builder 152 mPendingIntent = pendingIntent; in setPendingIntent()
|
/frameworks/base/core/java/android/text/style/ |
D | EasyEditSpan.java | 57 private final PendingIntent mPendingIntent; field in EasyEditSpan 66 mPendingIntent = null; in EasyEditSpan() 76 mPendingIntent = pendingIntent; in EasyEditSpan() 84 mPendingIntent = source.readParcelable(null); in EasyEditSpan() 100 dest.writeParcelable(mPendingIntent, 0); in writeToParcelInternal() 141 return mPendingIntent; in getPendingIntent()
|
/frameworks/base/core/java/android/service/settings/suggestions/ |
D | Suggestion.java | 64 private final PendingIntent mPendingIntent; field in Suggestion 107 return mPendingIntent; in getPendingIntent() 116 mPendingIntent = builder.mPendingIntent; in Suggestion() 125 mPendingIntent = in.readParcelable(PendingIntent.class.getClassLoader()); in Suggestion() 152 dest.writeParcelable(mPendingIntent, flags); in writeToParcel() 165 private PendingIntent mPendingIntent; field in Suggestion.Builder 211 mPendingIntent = pendingIntent; in setPendingIntent()
|
/frameworks/base/core/java/android/service/quickaccesswallet/ |
D | WalletCard.java | 38 private final PendingIntent mPendingIntent; field in WalletCard 46 this.mPendingIntent = builder.mPendingIntent; in WalletCard() 61 PendingIntent.writePendingIntentOrNullToParcel(mPendingIntent, dest); in writeToParcel() 130 return mPendingIntent; in getPendingIntent() 169 private PendingIntent mPendingIntent; field in WalletCard.Builder 204 mPendingIntent = pendingIntent; in Builder()
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
D | SipWakeupTimer.java | 48 private PendingIntent mPendingIntent; field in SipWakeupTimer 67 if (mPendingIntent != null) { in stop() 68 mAlarmManager.cancel(mPendingIntent); in stop() 69 mPendingIntent = null; in stop() 85 mAlarmManager.cancel(mPendingIntent); in cancelAlarm() 86 mPendingIntent = null; in cancelAlarm() 210 if (mPendingIntent != null) { in scheduleNext() 217 PendingIntent pendingIntent = mPendingIntent = in scheduleNext() 230 mPendingIntent = null; in onReceive()
|
/frameworks/base/services/core/java/com/android/server/media/ |
D | MediaButtonReceiverHolder.java | 64 private final PendingIntent mPendingIntent; field in MediaButtonReceiverHolder 148 mPendingIntent = pendingIntent; in MediaButtonReceiverHolder() 156 mPendingIntent = pendingIntent; in MediaButtonReceiverHolder() 202 if (mPendingIntent != null) { in send() 205 + mPendingIntent); in send() 208 mPendingIntent.send( in send() 212 Log.w(TAG, "Error sending key event to media button receiver " + mPendingIntent, e); in send() 252 if (mPendingIntent != null) { in toString() 253 return "MBR {pi=" + mPendingIntent + ", type=" + mComponentType + "}"; in toString()
|
/frameworks/base/apex/statsd/service/java/com/android/server/stats/ |
D | StatsCompanion.java | 116 private final PendingIntent mPendingIntent; field in StatsCompanion.PendingIntentRef 120 mPendingIntent = pendingIntent; in PendingIntentRef() 130 mPendingIntent.send(mContext, CODE_DATA_BROADCAST, intent, null, null); in sendDataBroadcast() 142 mPendingIntent.send(mContext, CODE_ACTIVE_CONFIGS_BROADCAST, intent, null, null); in sendActiveConfigsChangedBroadcast() 180 mPendingIntent.send(mContext, CODE_SUBSCRIBER_BROADCAST, intent, null, null); in sendSubscriberBroadcast()
|
/frameworks/base/core/tests/coretests/src/android/service/controls/ |
D | ControlProviderServiceTest.java | 85 private PendingIntent mPendingIntent; field in ControlProviderServiceTest 108 mPendingIntent = new PendingIntent(mIIntentSender); in setUp() 117 Control control1 = new Control.StatelessBuilder("TEST_ID", mPendingIntent).build(); in testOnLoad_allStateless() 118 Control control2 = new Control.StatelessBuilder("TEST_ID_2", mPendingIntent) in testOnLoad_allStateless() 147 Control control = new Control.StatefulBuilder("TEST_ID", mPendingIntent) in testOnLoad_statefulConvertedToStateless() 179 Control control1 = new Control.StatelessBuilder("TEST_ID", mPendingIntent).build(); in testOnLoadSuggested_allStateless() 180 Control control2 = new Control.StatelessBuilder("TEST_ID_2", mPendingIntent) in testOnLoadSuggested_allStateless() 208 Control control = new Control.StatefulBuilder("TEST_ID", mPendingIntent) in testSubscribe() 247 Control control = new Control.StatelessBuilder("TEST_ID", mPendingIntent).build(); in testRequestAdd()
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | ContextHubClientBroker.java | 126 private PendingIntent mPendingIntent; field in ContextHubClientBroker.PendingIntentRequest 138 mPendingIntent = pendingIntent; in PendingIntentRequest() 148 return mPendingIntent; in getPendingIntent() 152 return mPendingIntent != null; in hasPendingIntent() 156 mPendingIntent = null; in clear()
|
D | LocationManagerService.java | 1071 final PendingIntent mPendingIntent; field in LocationManagerService.Receiver 1089 mPendingIntent = intent; in Receiver() 1233 return mPendingIntent != null; in isPendingIntent() 1258 mPendingIntent.send(mContext, 0, locationChanged, this, mHandler, in callLocationChangedLocked() 1293 mPendingIntent.send(mContext, 0, providerIntent, this, mHandler, in callProviderEnabledLocked()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | BubbleExtractorTest.java | 84 PendingIntent mPendingIntent; field in BubbleExtractorTest 137 when(mPendingIntent.getIntent()).thenReturn(mIntent); in setUpIntentBubble() 138 when(mBubbleMetadata.getIntent()).thenReturn(mPendingIntent); in setUpIntentBubble() 141 when(mPendingIntent.getIntent()).thenReturn(mIntent); in setUpIntentBubble() 494 when(mPendingIntent.getIntent()).thenReturn(null); in testFlagBubble_false_noIntent() 511 when(mPendingIntent.getIntent()).thenReturn(mIntent); in testFlagBubble_false_noActivityInfo()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | RemoteInputView.java | 94 private PendingIntent mPendingIntent; field in RemoteInputView 214 mPendingIntent.send(mContext, 0, intent); in sendRemoteInput() 313 mPendingIntent = pendingIntent; in setPendingIntent() 449 setPendingIntent(other.mPendingIntent); in stealFocusFrom() 462 if (mPendingIntent == null || actions == null) { in updatePendingIntentFromActions() 465 Intent current = mPendingIntent.getIntent(); in updatePendingIntentFromActions() 497 return mPendingIntent; in getPendingIntent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | BubbleExpandedView.java | 111 private PendingIntent mPendingIntent; field in BubbleExpandedView 189 mActivityView.startActivity(mPendingIntent, fillInIntent, options); 595 mPendingIntent = PendingIntent.getActivity(mContext, /* requestCode */ 0, in setOverflow() 627 mPendingIntent = mBubble.getBubbleIntent(); in update() 628 if (mPendingIntent != null || mBubble.hasMetadataShortcutId()) { in update() 641 boolean prevWasIntentBased = mBubble != null && mPendingIntent != null; in didBackingContentChange() 800 return (mPendingIntent != null || mBubble.hasMetadataShortcutId()) in usingActivityView()
|
/frameworks/base/media/java/android/media/session/ |
D | MediaSessionLegacyHelper.java | 345 private final PendingIntent mPendingIntent; field in MediaSessionLegacyHelper.MediaButtonListener 349 mPendingIntent = pi; in MediaButtonListener() 355 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, mediaButtonIntent); in onMediaButtonEvent() 400 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, intent); in sendKeyEvent() 404 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, intent); in sendKeyEvent() 407 Log.d(TAG, "Sent " + keyCode + " to pending intent " + mPendingIntent); in sendKeyEvent()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
D | UsbPermissionActivity.java | 56 private PendingIntent mPendingIntent; field in UsbPermissionActivity 69 mPendingIntent = (PendingIntent)intent.getParcelableExtra(Intent.EXTRA_INTENT); in onCreate() 169 mPendingIntent.send(this, 0, intent); in onDestroy()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardSliceProvider.java | 131 private PendingIntent mPendingIntent; field in KeyguardSliceProvider 255 SliceAction action = SliceAction.createDeeplink(mPendingIntent, icon, in addPrimaryActionLocked() 308 mPendingIntent = PendingIntent.getActivity(getContext(), 0, in onCreateSliceProvider()
|
/frameworks/base/core/java/android/app/ |
D | PendingIntent.java | 218 private final PendingIntent mPendingIntent; field in PendingIntent.FinishedDispatcher 227 mPendingIntent = pi; in FinishedDispatcher() 253 mWho.onSendFinished(mPendingIntent, mIntent, mResultCode, in run()
|
D | Notification.java | 8821 private PendingIntent mPendingIntent; field in Notification.Builder.BubbleMetadata 8870 mPendingIntent = expandIntent; in BubbleMetadata() 8880 mPendingIntent = PendingIntent.CREATOR.createFromParcel(in); in BubbleMetadata() 8913 return mPendingIntent; in getIntent() 8923 return mPendingIntent; in getBubbleIntent() 9031 out.writeInt(mPendingIntent != null ? 1 : 0); in writeToParcel() 9032 if (mPendingIntent != null) { in writeToParcel() 9033 mPendingIntent.writeToParcel(out, 0); in writeToParcel() 9071 private PendingIntent mPendingIntent; field in Notification.Builder.BubbleMetadata.Builder 9144 mPendingIntent = intent; in Builder() [all …]
|
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 876 if (mResponse.mPendingIntent != null) { in apply() 892 target.setTagInternal(R.id.pending_intent_tag, mResponse.mPendingIntent); in apply() 3947 private PendingIntent mPendingIntent; 3965 response.mPendingIntent = pendingIntent; 4024 PendingIntent.writePendingIntentOrNullToParcel(mPendingIntent, dest); 4025 if (mPendingIntent == null) { 4034 mPendingIntent = PendingIntent.readPendingIntentOrNullFromParcel(parcel); 4035 if (mPendingIntent == null) { 4045 if (mPendingIntent != null) { 4046 pi = mPendingIntent; [all …]
|
/frameworks/base/services/core/java/com/android/server/ |
D | AlarmManagerService.java | 1296 final PendingIntent mPendingIntent; field in AlarmManagerService.InFlight 1308 mPendingIntent = alarm.operation; in InFlight() 1329 return mPendingIntent != null && mPendingIntent.isBroadcast(); in isBroadcast() 1335 + "pendingIntent=" + mPendingIntent in toString() 1354 if (mPendingIntent != null) { in dumpDebug() 1355 mPendingIntent.dumpDebug(proto, InFlightProto.PENDING_INTENT); in dumpDebug() 4577 if (inflight.mPendingIntent == pi) { in removeLocked() 4613 ActivityManager.noteAlarmFinish(inflight.mPendingIntent, inflight.mWorkSource, in updateStatsLocked()
|
D | ConnectivityService.java | 3435 PendingIntent existingPendingIntent = entry.getValue().mPendingIntent; in findExistingNetworkRequestInfo() 3447 NetworkRequestInfo existingRequest = findExistingNetworkRequestInfo(nri.mPendingIntent); in handleRegisterNetworkRequestWithIntent() 5379 final PendingIntent mPendingIntent; field in ConnectivityService.NetworkRequestInfo 5389 mPendingIntent = pi; in NetworkRequestInfo() 5405 mPendingIntent = null; in NetworkRequestInfo() 5444 + (mPendingIntent == null ? "" : " to trigger " + mPendingIntent); in toString() 6590 sendIntent(nri.mPendingIntent, intent); in sendPendingIntentForRequest() 7295 if (nri.mPendingIntent != null) { in notifyNetworkAvailable() 7435 if (nri.mPendingIntent == null) { in notifyNetworkCallbacks()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 8154 Landroid/app/PendingIntent$FinishedDispatcher;->mPendingIntent:Landroid/app/PendingIntent; 40307 Landroid/media/session/MediaSessionLegacyHelper$MediaButtonListener;->mPendingIntent:Landroid/app/P… 64184 Landroid/service/settings/suggestions/Suggestion$Builder;->mPendingIntent:Landroid/app/PendingInten… 64193 Landroid/service/settings/suggestions/Suggestion;->mPendingIntent:Landroid/app/PendingIntent; 70796 Landroid/text/style/EasyEditSpan;->mPendingIntent:Landroid/app/PendingIntent;
|