HomeSort by relevance Sort by last modified time
    Searched refs:mPendingIntent (Results 1 - 25 of 27) sorted by null

1 2

  /cts/tests/tests/app/src/android/app/cts/
PendingIntentTest.java 33 private PendingIntent mPendingIntent;
99 mPendingIntent = null;
104 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent,
106 assertEquals(mContext.getPackageName(), mPendingIntent.getTargetPackage());
108 mPendingIntent.send();
111 assertNotNull(mPendingIntent);
115 mPendingIntent.cancel();
116 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent,
118 assertNull(mPendingIntent);
120 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent
    [all...]
  /frameworks/base/core/java/android/text/style/
EasyEditSpan.java 56 private final PendingIntent mPendingIntent;
65 mPendingIntent = null;
75 mPendingIntent = pendingIntent;
83 mPendingIntent = source.readParcelable(null);
94 dest.writeParcelable(mPendingIntent, 0);
127 return mPendingIntent;
  /frameworks/support/v4/jellybean-mr2/android/support/v4/media/
TransportMediatorJellybeanMR2.java 79 PendingIntent mPendingIntent;
112 mPendingIntent = PendingIntent.getBroadcast(mContext, 0, mIntent,
114 mRemoteControl = new RemoteControlClient(mPendingIntent);
122 mAudioManager.registerMediaButtonEventReceiver(mPendingIntent);
194 mAudioManager.unregisterMediaButtonEventReceiver(mPendingIntent);
200 if (mPendingIntent != null) {
202 mPendingIntent.cancel();
203 mPendingIntent = null;
  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 84 private PendingIntent mPendingIntent;
97 addAccountOptions.putParcelable(KEY_CALLER_IDENTITY, mPendingIntent);
105 if (mPendingIntent != null) {
106 mPendingIntent.cancel();
107 mPendingIntent = null;
182 if (mPendingIntent != null) {
183 mPendingIntent.cancel();
184 mPendingIntent = null;
214 mPendingIntent = PendingIntent.getBroadcast(this, 0, identityIntent, 0);
215 addAccountOptions.putParcelable(KEY_CALLER_IDENTITY, mPendingIntent);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
ForegroundDispatch.java 38 private PendingIntent mPendingIntent;
57 mPendingIntent = PendingIntent.getActivity(this, 0,
78 if (mAdapter != null) mAdapter.enableForegroundDispatch(this, mPendingIntent, mFilters,
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipWakeupTimer.java 48 private PendingIntent mPendingIntent;
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/support/tests/java/android/support/v4/app/
NotificationCompatWearableExtenderTest.java 36 private PendingIntent mPendingIntent;
43 mPendingIntent = PendingIntent.getActivity(getContext(), 0, new Intent(), 0);
84 R.drawable.action_icon, "Test title", mPendingIntent)
100 mPendingIntent))
106 .setDisplayIntent(mPendingIntent)
129 R.drawable.action_icon, "Test title", mPendingIntent)
145 mPendingIntent))
151 .setDisplayIntent(mPendingIntent)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushReceiverActivity.java 47 private PendingIntent mPendingIntent;
62 mPendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass())
77 mNfcAdapter.enableForegroundDispatch(this, mPendingIntent, null, null);
TagVerifierActivity.java 75 private PendingIntent mPendingIntent;
104 mPendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, getClass())
131 mNfcAdapter.enableForegroundDispatch(this, mPendingIntent, null, null);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
LocationStatsAggregator.java 71 private PendingIntent mPendingIntent;
101 mPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
106 mPendingIntent);
111 mAlarmManager.cancel(mPendingIntent);
  /cts/tests/tests/location2/src/android/location2/cts/
LocationManagerTest.java 62 private PendingIntent mPendingIntent;
148 mManager.requestLocationUpdates(providerName, 0, 0, mPendingIntent);
160 mManager.removeUpdates(mPendingIntent);
267 mPendingIntent = PendingIntent.getBroadcast(mContext, 0, proximityIntent,
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalAppWidgetProvider.java 55 private PendingIntent mPendingIntent;
263 if (mPendingIntent == null) {
264 mPendingIntent = PendingIntent.getBroadcast(context, 0,
267 return mPendingIntent;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbPermissionActivity.java 55 private PendingIntent mPendingIntent;
68 mPendingIntent = (PendingIntent)intent.getParcelableExtra(Intent.EXTRA_INTENT);
146 mPendingIntent.send(this, 0, intent);
  /frameworks/base/media/java/android/media/session/
MediaSessionLegacyHelper.java 385 private final PendingIntent mPendingIntent;
389 mPendingIntent = pi;
395 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, mediaButtonIntent);
440 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, intent);
444 MediaSessionLegacyHelper.sendKeyEvent(mPendingIntent, mContext, intent);
447 Log.d(TAG, "Sent " + keyCode + " to pending intent " + mPendingIntent);
  /cts/tests/tests/location/src/android/location/cts/
LocationManagerTest.java 64 private PendingIntent mPendingIntent;
113 if (mPendingIntent != null) {
114 mManager.removeProximityAlert(mPendingIntent);
499 mManager.requestLocationUpdates(TEST_MOCK_PROVIDER_NAME, 0, 0, mPendingIntent);
511 mManager.removeUpdates(mPendingIntent);
526 mManager.requestLocationUpdates(null, 0, 0, mPendingIntent);
589 mManager.requestLocationUpdates(TEST_MOCK_PROVIDER_NAME, 0, 0, mPendingIntent);
786 mPendingIntent = PendingIntent.getBroadcast(mContext, 0, proximityIntent,
798 mManager.addProximityAlert(latitude, longitude, radius, expiration, mPendingIntent);
    [all...]
  /frameworks/base/core/java/android/app/
PendingIntent.java 194 private final PendingIntent mPendingIntent;
202 mPendingIntent = pi;
219 mWho.onSendFinished(mPendingIntent, mIntent, mResultCode,
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LocationManagerService.java 589 final PendingIntent mPendingIntent;
606 mPendingIntent = intent;
    [all...]
AlarmManagerService.java 528 final PendingIntent mPendingIntent;
537 mPendingIntent = pendingIntent;
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/18.0.0/
support-v4-18.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.0.1/
support-v4-19.0.1.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.1.0/
support-v4-19.1.0.jar 

Completed in 1271 milliseconds

1 2