HomeSort by relevance Sort by last modified time
    Searched refs:mTimeoutIntent (Results 1 - 2 of 2) sorted by null

  /packages/apps/Stk/src/com/android/stk/
StkDialogActivity.java 57 private PendingIntent mTimeoutIntent;
195 if (mTimeoutIntent != null) {
288 outState.putParcelable(TIMEOUT_INTENT_KEY, mTimeoutIntent);
297 mTimeoutIntent = savedInstanceState.getParcelable(TIMEOUT_INTENT_KEY);
364 if (mTimeoutIntent != null) {
365 mAlarmManager.cancel(mTimeoutIntent);
366 mTimeoutIntent = null;
391 mTimeoutIntent = PendingIntent.getBroadcast(mContext, 0, mAlarmIntent, PendingIntent.FLAG_CANCEL_CURRENT);
396 SystemClock.elapsedRealtime() + dialogDuration, mTimeoutIntent);
400 SystemClock.elapsedRealtime() + dialogDuration, mTimeoutIntent);
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
GnssLocationProvider.java 455 private final PendingIntent mTimeoutIntent;
782 mTimeoutIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ALARM_TIMEOUT), 0);
    [all...]

Completed in 78 milliseconds