Home
last modified time | relevance | path

Searched refs:mPendingIntents (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/
DExchangeService.java200 private final HashMap<Long, PendingIntent> mPendingIntents = new HashMap<Long, PendingIntent>(); field in ExchangeService
1468 synchronized (mPendingIntents) { in clearAlarm()
1469 PendingIntent pi = mPendingIntents.get(id); in clearAlarm()
1474 mPendingIntents.remove(id); in clearAlarm()
1480 synchronized (mPendingIntents) { in setAlarm()
1481 PendingIntent pi = mPendingIntents.get(id); in setAlarm()
1487 mPendingIntents.put(id, pi); in setAlarm()
1498 synchronized (mPendingIntents) { in clearAlarms()
1499 for (PendingIntent pi : mPendingIntents.values()) { in clearAlarms()
1502 mPendingIntents.clear(); in clearAlarms()
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
DApiService.java199 private static final Map<String, Intent> mPendingIntents = new HashMap<String, Intent>(); field in ApiService
215 if (mPendingIntents.size() == 0) {
372 for (Intent intent : mPendingIntents.values()) { in isVideoEditorExportPending()
448 for (Intent intent : mPendingIntents.values()) { in isProjectBeingEdited()
788 for (Intent intent : mPendingIntents.values()) { in isMediaItemAudioWaveformPending()
969 for (Intent intent : mPendingIntents.values()) { in isTransitionThumbnailsPending()
1329 for (Intent intent : mPendingIntents.values()) { in isAudioTrackAudioWaveformPending()
1356 mPendingIntents.put(requestId, intent); in startCommand()
1465 mPendingIntents.remove(qIntent.getStringExtra(PARAM_REQUEST_ID)); in onStartCommand()
4011 mPendingIntents.remove(intent.getStringExtra(PARAM_REQUEST_ID)); in finalizeRequest()
[all …]