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

1 2

  /cts/tests/app/src/android/app/cts/
PendingIntentTest.java 38 private PendingIntent mPendingIntent;
135 mPendingIntent = null;
140 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent,
142 assertEquals(mContext.getPackageName(), mPendingIntent.getTargetPackage());
144 mPendingIntent.send();
147 assertNotNull(mPendingIntent);
151 mPendingIntent.cancel();
152 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent,
154 assertNull(mPendingIntent);
156 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);
99 dest.writeParcelable(mPendingIntent, 0);
137 return mPendingIntent;
  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 86 private PendingIntent mPendingIntent;
99 addAccountOptions.putParcelable(KEY_CALLER_IDENTITY, mPendingIntent);
108 if (mPendingIntent != null) {
109 mPendingIntent.cancel();
110 mPendingIntent = null;
199 if (mPendingIntent != null) {
200 mPendingIntent.cancel();
201 mPendingIntent = null;
247 mPendingIntent = PendingIntent.getBroadcast(this, 0, identityIntent, 0);
248 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;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DeviceSuspendTestActivity.java 56 private PendingIntent mPendingIntent;
71 mPendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
213 mPendingIntent);
227 mAlarmManager.cancel(mPendingIntent);
240 mAlarmManager.cancel(mPendingIntent);
296 mPendingIntent);
301 mAlarmManager.cancel(mPendingIntent);
342 mPendingIntent);
348 mAlarmManager.cancel(mPendingIntent);
437 mPendingIntent);
    [all...]
OffBodySensorTestActivity.java 87 private PendingIntent mPendingIntent;
300 mPendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
312 mPendingIntent);
316 mAlarmManager.cancel(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);
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsRequest.java 96 protected final PendingIntent mPendingIntent;
107 mPendingIntent = pendingIntent;
259 if (mPendingIntent == null) {
276 mPendingIntent.send(context, result, fillIn);
381 parcel.writeParcelable(mPendingIntent, 0);
389 mPendingIntent = in.readParcelable(classLoader);
  /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/location/src/android/location/cts/
LocationManagerTest.java 66 private PendingIntent mPendingIntent;
108 if (mPendingIntent != null) {
109 mManager.removeProximityAlert(mPendingIntent);
494 mManager.requestLocationUpdates(TEST_MOCK_PROVIDER_NAME, 0, 0, mPendingIntent);
506 mManager.removeUpdates(mPendingIntent);
521 mManager.requestLocationUpdates(null, 0, 0, mPendingIntent);
569 mManager.requestSingleUpdate(LocationManager.GPS_PROVIDER, mPendingIntent);
609 mManager.requestLocationUpdates(0, 0 , criteria, mPendingIntent);
623 mManager.removeUpdates(mPendingIntent);
638 mManager.requestLocationUpdates(0, 0, null, mPendingIntent);
    [all...]
  /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/packages/SystemUI/src/com/android/systemui/statusbar/policy/
RemoteInputView.java 78 private PendingIntent mPendingIntent;
164 mPendingIntent.send(mContext, 0, fillInIntent);
253 mPendingIntent = pendingIntent;
391 setPendingIntent(other.mPendingIntent);
404 if (mPendingIntent == null || actions == null) {
407 Intent current = mPendingIntent.getIntent();
439 return mPendingIntent;
  /frameworks/base/media/java/android/media/session/
MediaSessionLegacyHelper.java 344 private final PendingIntent mPendingIntent;
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);
  /cts/tests/tests/location2/src/android/location2/cts/
LocationManagerTest.java 63 private PendingIntent mPendingIntent;
150 mManager.requestLocationUpdates(providerName, 0, 0, mPendingIntent);
162 mManager.removeUpdates(mPendingIntent);
283 mPendingIntent = PendingIntent.getBroadcast(mContext, 0, proximityIntent,
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
ConnectivityServiceMock.java 346 final PendingIntent mPendingIntent;
356 mPendingIntent = pi;
372 mPendingIntent = null;
397 (mPendingIntent == null ? "" : " to trigger " + mPendingIntent);
    [all...]
  /frameworks/base/core/java/android/app/
PendingIntent.java 205 private final PendingIntent mPendingIntent;
214 mPendingIntent = pi;
240 mWho.onSendFinished(mPendingIntent, mIntent, mResultCode,
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LocationManagerService.java     [all...]
ConnectivityService.java     [all...]
AlarmManagerService.java 834 final PendingIntent mPendingIntent;
846 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 

Completed in 1587 milliseconds

1 2