/frameworks/base/services/java/com/android/server/ |
DeviceStorageMonitorService.java | 21 import android.app.PendingIntent; 372 PendingIntent intent = PendingIntent.getActivityAsUser(mContext, 0, lowMemIntent, 0,
|
TwilightService.java | 20 import android.app.PendingIntent; 521 PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, updateIntent, 0); 522 mAlarmManager.cancel(pendingIntent); 523 mAlarmManager.setExact(AlarmManager.RTC, nextUpdate, pendingIntent);
|
LocationManagerService.java | 20 import android.app.PendingIntent; 469 * A wrapper class holding either an ILocationListener or a PendingIntent to receive 472 private final class Receiver implements IBinder.DeathRecipient, PendingIntent.OnFinished { 479 final PendingIntent mPendingIntent; 493 Receiver(ILocationListener listener, PendingIntent intent, int pid, int uid, 672 } catch (PendingIntent.CanceledException e) { 706 } catch (PendingIntent.CanceledException e) { [all...] |
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockGeneric.java | 21 import android.app.PendingIntent; 361 PendingIntent pending = PendingIntent.getActivity(getActivity(), 0, fallBackIntent, 0); 362 intent.putExtra("PendingIntent", pending);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadService.java | 24 import android.app.PendingIntent; 368 PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_ONE_SHOT));
|
/frameworks/base/services/java/com/android/server/am/ |
ServiceRecord.java | 26 import android.app.PendingIntent; 458 PendingIntent pi = PendingIntent.getActivity(ams.mContext, 0, 459 runningIntent, PendingIntent.FLAG_UPDATE_CURRENT);
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxService.java | 22 import android.app.PendingIntent; 178 // The PendingIntent to launch our activity if the user selects this notification 179 PendingIntent contentIntent = 180 PendingIntent.getActivity(this, 0,
|
/packages/apps/UnifiedEmail/src/com/android/mail/widget/ |
BaseWidgetProvider.java | 19 import android.app.PendingIntent; 340 PendingIntent clickIntent = PendingIntent.getActivity(context, 0, configureIntent, 341 PendingIntent.FLAG_UPDATE_CURRENT);
|
/frameworks/base/services/java/com/android/server/net/ |
NetworkPolicyManagerService.java | 81 import android.app.PendingIntent; 744 builder.setDeleteIntent(PendingIntent.getBroadcast( 745 mContext, 0, snoozeIntent, PendingIntent.FLAG_UPDATE_CURRENT)); 748 builder.setContentIntent(PendingIntent.getActivity( 749 mContext, 0, viewIntent, PendingIntent.FLAG_UPDATE_CURRENT)); [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SessionManager.java | 19 import android.app.PendingIntent; 106 public PlaylistItem add(Uri uri, String mime, PendingIntent receiver) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
BaseStatusBar.java | 22 import android.app.PendingIntent; 174 public boolean onClickHandler(View view, PendingIntent pendingIntent, Intent fillInIntent) { 176 Log.v(TAG, "Notification click handler invoked for intent: " + pendingIntent); 178 final boolean isActivity = pendingIntent.isActivity(); 193 boolean handled = super.onClickHandler(view, pendingIntent, fillInIntent); 650 PendingIntent contentIntent = sbn.getNotification().contentIntent; 707 public NotificationClicker makeClicker(PendingIntent intent, String pkg, String tag, int id) { 712 private PendingIntent mIntent; 717 public NotificationClicker(PendingIntent intent, String pkg, String tag, int id) [all...] |
/frameworks/opt/net/voip/src/java/android/net/sip/ |
SipManager.java | 19 import android.app.PendingIntent; 65 * {@link PendingIntent}. 66 * @see #open(SipProfile, PendingIntent, SipRegistrationListener) 72 * @see #open(SipProfile, PendingIntent, SipRegistrationListener) 79 * @see #open(SipProfile, PendingIntent, SipRegistrationListener) 171 * {@link #open(SipProfile, PendingIntent, SipRegistrationListener)} 200 * {@link PendingIntent#send(Context, int, Intent)} to send back the 216 PendingIntent incomingCallPendingIntent, 233 * {@link #open(SipProfile, PendingIntent, SipRegistrationListener)}). 465 * {@link #open(SipProfile, PendingIntent, SipRegistrationListener)} i [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/ |
IngestService.java | 20 import android.app.PendingIntent; 83 .setContentIntent(PendingIntent.getActivity(this, 0, new Intent(this, IngestActivity.class), 0));
|
/packages/apps/Exchange/src/com/android/exchange/service/ |
EmailSyncAdapterService.java | 23 import android.app.PendingIntent; [all...] |
/packages/apps/Email/emailsync/src/com/android/emailsync/ |
SyncManager.java | 21 import android.app.PendingIntent; 185 private final HashMap<Long, PendingIntent> mPendingIntents = new HashMap<Long, PendingIntent>(); [all...] |
/frameworks/base/media/java/android/media/ |
RemoteControlClient.java | 19 import android.app.PendingIntent; 58 * // build the PendingIntent for the remote control client 61 * PendingIntent mediaPendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, mediaButtonIntent, 0); 354 public RemoteControlClient(PendingIntent mediaButtonIntent) { 383 public RemoteControlClient(PendingIntent mediaButtonIntent, Looper looper) { [all...] |
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardUpdateMonitor.java | 21 import android.app.PendingIntent; 180 handleSetGenerationId(msg.arg1, msg.arg2 != 0, (PendingIntent) msg.obj); 206 public PendingIntent intent; 248 public void setCurrentClientId(int clientGeneration, PendingIntent mediaIntent, 457 protected void handleSetGenerationId(int clientGeneration, boolean clearing, PendingIntent p) { [all...] |
/frameworks/base/services/java/com/android/server/usb/ |
UsbDeviceManager.java | 21 import android.app.PendingIntent; 720 PendingIntent pi = PendingIntent.getActivityAsUser(mContext, 0, 755 PendingIntent pi = PendingIntent.getActivityAsUser(mContext, 0, [all...] |
UsbSettingsManager.java | 19 import android.app.PendingIntent; [all...] |
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
NotificationTestList.java | 21 import android.app.PendingIntent; 891 private PendingIntent makeIntent() { 894 return PendingIntent.getActivity(this, 0, intent, 0); 897 private PendingIntent makeIntent2() { 899 return PendingIntent.getActivity(this, 0, intent, 0); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
UpdateHandler.java | 24 import android.app.PendingIntent; [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/ |
AutoLockTest.java | 19 import android.app.PendingIntent; 87 private PendingIntent mPermissionIntent; 249 mPermissionIntent = PendingIntent.getBroadcast(mActivity, 0, [all...] |
/frameworks/base/services/java/com/android/server/wifi/ |
WifiController.java | 20 import android.app.PendingIntent; 63 private PendingIntent mIdleIntent; 141 mIdleIntent = PendingIntent.getBroadcast(mContext, IDLE_REQUEST, idleIntent, 0);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapService.java | 37 import android.app.PendingIntent; 749 getString(R.string.auth_notif_message, name), PendingIntent 755 notification.deleteIntent = PendingIntent.getBroadcast(this, 0, deleteIntent, 0);
|
/development/apps/Development/src/com/android/development/ |
SyncAdapterDriver.java | 20 import android.app.PendingIntent; 301 intent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
|