/frameworks/base/core/java/android/text/style/ |
H A D | EasyEditSpan.java | 57 private final PendingIntent mPendingIntent; field in class:EasyEditSpan 66 mPendingIntent = null; 76 mPendingIntent = pendingIntent; 84 mPendingIntent = source.readParcelable(null); 100 dest.writeParcelable(mPendingIntent, 0); 138 return mPendingIntent;
|
/frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/ |
H A D | PerfData.java | 52 private PendingIntent mPendingIntent; field in class:PerfData 79 if (mPendingIntent != null) { 80 mAlarmMgr.cancel(mPendingIntent); 81 mPendingIntent = null; 89 mPendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0); 91 POLLING_PERIOD_MILLIS, mPendingIntent); 107 if (mPendingIntent != null) { 108 mAlarmMgr.cancel(mPendingIntent); 109 mPendingIntent = null;
|
/frameworks/base/core/java/android/service/settings/suggestions/ |
H A D | Suggestion.java | 64 private final PendingIntent mPendingIntent; field in class:Suggestion 107 return mPendingIntent; 116 mPendingIntent = builder.mPendingIntent; 125 mPendingIntent = in.readParcelable(PendingIntent.class.getClassLoader()); 152 dest.writeParcelable(mPendingIntent, flags); 165 private PendingIntent mPendingIntent; field in class:Suggestion.Builder 211 mPendingIntent = pendingIntent;
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
H A D | SipWakeupTimer.java | 48 private PendingIntent mPendingIntent; field in class:SipWakeupTimer 67 if (mPendingIntent != null) { 68 mAlarmManager.cancel(mPendingIntent); 69 mPendingIntent = null; 85 mAlarmManager.cancel(mPendingIntent); 86 mPendingIntent = null; 210 if (mPendingIntent != null) { 217 PendingIntent pendingIntent = mPendingIntent = 230 mPendingIntent = null;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | RemoteInputView.java | 81 private PendingIntent mPendingIntent; field in class:RemoteInputView 171 mPendingIntent.send(mContext, 0, fillInIntent); 267 mPendingIntent = pendingIntent; 384 setPendingIntent(other.mPendingIntent); 397 if (mPendingIntent == null || actions == null) { 400 Intent current = mPendingIntent.getIntent(); 432 return mPendingIntent;
|
/frameworks/base/media/java/android/media/session/ |
H A D | MediaSessionLegacyHelper.java | 344 private final PendingIntent mPendingIntent; field in class:MediaSessionLegacyHelper.MediaButtonListener 348 mPendingIntent = pi; 354 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, mediaButtonIntent); 399 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, intent); 403 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, intent); 406 Log.d(TAG, "Sent " + keyCode + " to pending intent " + mPendingIntent);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
H A D | UsbPermissionActivity.java | 64 private PendingIntent mPendingIntent; field in class:UsbPermissionActivity 77 mPendingIntent = (PendingIntent)intent.getParcelableExtra(Intent.EXTRA_INTENT); 254 mPendingIntent.send(this, 0, intent);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
H A D | ConnectivityServiceMock.java | 346 final PendingIntent mPendingIntent; field in class:ConnectivityServiceMock.NetworkRequestInfo 356 mPendingIntent = pi; 372 mPendingIntent = null; 397 (mPendingIntent == null ? "" : " to trigger " + mPendingIntent);
|
/frameworks/base/core/java/android/app/ |
H A D | PendingIntent.java | 211 private final PendingIntent mPendingIntent; field in class:PendingIntent.FinishedDispatcher 220 mPendingIntent = pi; 246 mWho.onSendFinished(mPendingIntent, mIntent, mResultCode,
|
/frameworks/base/services/core/java/com/android/server/ |
H A D | ConnectivityService.java | 2552 PendingIntent existingPendingIntent = entry.getValue().mPendingIntent; 2564 NetworkRequestInfo existingRequest = findExistingNetworkRequestInfo(nri.mPendingIntent); 4216 final PendingIntent mPendingIntent; field in class:ConnectivityService.NetworkRequestInfo 4226 mPendingIntent = pi; 4242 mPendingIntent = null; 4277 (mPendingIntent == null ? "" : " to trigger " + mPendingIntent); 5056 sendIntent(nri.mPendingIntent, intent); 5676 if (nri.mPendingIntent != null) { 5742 if (nri.mPendingIntent [all...] |
H A D | AlarmManagerService.java | 1117 final PendingIntent mPendingIntent; field in class:AlarmManagerService.InFlight 1130 mPendingIntent = pendingIntent; 1152 + "pendingIntent=" + mPendingIntent 1170 if (mPendingIntent != null) { 1171 mPendingIntent.writeToProto(proto, InFlightProto.PENDING_INTENT); 4029 if (mInFlight.get(i).mPendingIntent == pi) { 4062 ActivityManager.noteAlarmFinish(inflight.mPendingIntent, inflight.mWorkSource, 4090 setWakelockWorkSource(inFlight.mPendingIntent, inFlight.mWorkSource,
|
H A D | LocationManagerService.java | 780 final PendingIntent mPendingIntent; field in class:LocationManagerService.Receiver 797 mPendingIntent = intent; 931 return mPendingIntent != null; 963 mPendingIntent.send(mContext, 0, statusChanged, this, mLocationHandler, 999 mPendingIntent.send(mContext, 0, locationChanged, this, mLocationHandler, 1042 mPendingIntent.send(mContext, 0, providerIntent, this, mLocationHandler,
|