Home
last modified time | relevance | path

Searched refs:pendingIntent (Results 1 – 25 of 81) sorted by relevance

1234

/dports/games/retroarch/RetroArch-1.9.7/pkg/android/phoenix-common/src/com/retroarch/browser/retroactivity/
H A DRetroActivityIntent.java9 private Intent pendingIntent = null; field in RetroActivityIntent
27 pendingIntent = intent; in onNewIntent()
37 return pendingIntent.getStringExtra("ROM"); in getPendingIntentFullPath()
47 return pendingIntent.getStringExtra("LIBRETRO"); in getPendingIntentLibretroPath()
57 return pendingIntent.getStringExtra("CONFIGFILE"); in getPendingIntentConfigPath()
62 return pendingIntent.getStringExtra("SDCARD"); in getPendingIntentStorageLocation()
67 return pendingIntent.getStringExtra("DOWNLOADS"); in getPendingIntentDownloadLocation()
72 return pendingIntent.getStringExtra("SCREENSHOTS"); in getPendingIntentScreenshotsLocation()
82 return pendingIntent.getStringExtra("IME"); in getPendingIntentIME()
92 if (pendingIntent == null) in hasPendingIntent()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/notifications/
H A DChromeNotificationWrapperStandardBuilder.java33 PendingIntent pendingIntent = NotificationIntentInterceptor.createInterceptPendingIntent( in setContentIntent() local
36 return super.setContentIntent(pendingIntent); in setContentIntent()
43 PendingIntent pendingIntent = NotificationIntentInterceptor.createInterceptPendingIntent( in addAction() local
46 return addAction(icon, title, pendingIntent); in addAction()
52 PendingIntent pendingIntent = NotificationIntentInterceptor.createInterceptPendingIntent( in addAction() local
55 action.actionIntent = pendingIntent; in addAction()
H A DNotificationIntentInterceptor.java114 PendingIntent pendingIntent = null; in createInterceptPendingIntent() local
117 pendingIntent = pendingIntentProvider.getPendingIntent(); in createInterceptPendingIntent()
123 intent.putExtra(EXTRA_PENDING_INTENT, pendingIntent); in createInterceptPendingIntent()
159 PendingIntent pendingIntent = in forwardPendingIntent() local
161 if (pendingIntent == null) { in forwardPendingIntent()
167 pendingIntent.send(); in forwardPendingIntent()
H A DChromeNotificationWrapperCompatBuilder.java32 PendingIntent pendingIntent = NotificationIntentInterceptor.createInterceptPendingIntent( in setContentIntent() local
35 return setContentIntent(pendingIntent); in setContentIntent()
42 PendingIntent pendingIntent = NotificationIntentInterceptor.createInterceptPendingIntent( in addAction() local
45 return addAction(icon, title, pendingIntent); in addAction()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/background_task_scheduler/internal/android/java/src/org/chromium/components/background_task_scheduler/internal/
H A DBackgroundTaskSchedulerAlarmManager.java76 PendingIntent pendingIntent = createPendingIntentFromTaskId(context, taskInfo.getTaskId()); in schedule() local
79 new AlarmManagerVisitor(alarmManager, pendingIntent); in schedule()
89 AlarmManagerVisitor(AlarmManager alarmManager, PendingIntent pendingIntent) { in AlarmManagerVisitor() argument
91 mPendingIntent = pendingIntent; in AlarmManagerVisitor()
124 PendingIntent pendingIntent = createPendingIntentFromTaskId(context, taskId); in cancel() local
126 alarmManager.cancel(pendingIntent); in cancel()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/background_task_scheduler/internal/android/java/src/org/chromium/components/background_task_scheduler/internal/
H A DBackgroundTaskSchedulerAlarmManager.java76 PendingIntent pendingIntent = createPendingIntentFromTaskId(context, taskInfo.getTaskId()); in schedule() local
79 new AlarmManagerVisitor(alarmManager, pendingIntent); in schedule()
89 AlarmManagerVisitor(AlarmManager alarmManager, PendingIntent pendingIntent) { in AlarmManagerVisitor() argument
91 mPendingIntent = pendingIntent; in AlarmManagerVisitor()
124 PendingIntent pendingIntent = createPendingIntentFromTaskId(context, taskId); in cancel() local
126 alarmManager.cancel(pendingIntent); in cancel()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/features/vr/java/src/org/chromium/chrome/browser/vr/
H A DVrDaydreamApi.java30 public boolean registerDaydreamIntent(final PendingIntent pendingIntent) { in registerDaydreamIntent() argument
33 daydreamApi.registerDaydreamIntent(pendingIntent); in registerDaydreamIntent()
44 public boolean launchInVr(final PendingIntent pendingIntent) { in launchInVr() argument
47 daydreamApi.launchInVr(pendingIntent); in launchInVr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/firstrun/
H A DFirstRunActivityBase.java93 PendingIntent pendingIntent = in sendFirstRunCompletePendingIntent() local
97 if (pendingIntent == null) return false; in sendFirstRunCompletePendingIntent()
106 public void onSendFinished(PendingIntent pendingIntent, Intent intent, in sendFirstRunCompletePendingIntent()
118 pendingIntent.send(Activity.RESULT_OK, onFinished, null); in sendFirstRunCompletePendingIntent()
H A DFreIntentCreator.java143 final PendingIntent pendingIntent; in addPendingIntent() local
146 pendingIntent = PendingIntent.getBroadcast( in addPendingIntent()
149 pendingIntent = PendingIntent.getActivity( in addPendingIntent()
152 firstRunIntent.putExtra(FirstRunActivity.EXTRA_FRE_COMPLETE_LAUNCH_INTENT, pendingIntent); in addPendingIntent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/android/memconsumer/java/src/org/chromium/memconsumer/
H A DResidentService.java40 PendingIntent pendingIntent = in useMemory() local
46 .setDeleteIntent(pendingIntent) in useMemory()
47 .setContentIntent(pendingIntent) in useMemory()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/customtabs/
H A DCustomButtonParams.java58 @Nullable PendingIntent pendingIntent, boolean tinted, boolean onToolbar) { in CustomButtonParams() argument
62 mPendingIntent = pendingIntent; in CustomButtonParams()
229 PendingIntent pendingIntent = in fromBundle() local
232 if (onToolbar && pendingIntent == null) { in fromBundle()
239 return new CustomButtonParams(id, bitmap, description, pendingIntent, tinted, onToolbar); in fromBundle()
249 PendingIntent pendingIntent = PendingIntent.getBroadcast( in createShareButton() local
259 id, bitmap, description, pendingIntent, /*tinted=*/true, /*onToolbar=*/true); in createShareButton()
H A DCustomTabBottomBarDelegate.java139 final PendingIntent pendingIntent = params.getPendingIntent(); in showBottomBarIfNecessary() local
141 if (pendingIntent != null) { in showBottomBarIfNecessary()
142 clickListener = v -> sendPendingIntentWithUrl(pendingIntent, null, mActivity); in showBottomBarIfNecessary()
169 PendingIntent pendingIntent) { in updateRemoteViews() argument
180 mClickPendingIntent = pendingIntent; in updateRemoteViews()
305 private static void sendPendingIntentWithUrl(PendingIntent pendingIntent, Intent extraIntent, in sendPendingIntentWithUrl() argument
311 pendingIntent.send(activity, 0, addedIntent, null, null); in sendPendingIntentWithUrl()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/omaha/android/java/src/org/chromium/chrome/browser/omaha/
H A DExponentialBackoffScheduler.java97 PendingIntent pendingIntent = PendingIntent.getService( in cancelAlarm() local
99 if (pendingIntent != null) { in cancelAlarm()
101 am.cancel(pendingIntent); in cancelAlarm()
102 pendingIntent.cancel(); in cancelAlarm()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/feeds/action/
H A DCheckForUpdatesAction.java168 …final PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, createOpenIntent(feed), … in showNotificationForSingleUpdate() local
176 .setContentIntent(pendingIntent) in showNotificationForSingleUpdate()
192 …final PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, createOpenIntent(feeds),… in showNotificationForMultipleUpdates() local
200 .setContentIntent(pendingIntent) in showNotificationForMultipleUpdates()
241 …PendingIntent pendingIntent = PendingIntent.getActivity(context, 1, intent, PendingIntent.FLAG_UPD… in createOpenAction() local
246 pendingIntent); in createOpenAction()
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/public/android/java/src/org/chromium/content/browser/selection/
H A DAdditionalMenuItemProviderImpl.java97 CharSequence title, PendingIntent pendingIntent) { in getSupportedOnClickListener() argument
98 if (TextUtils.isEmpty(title) || pendingIntent == null) return null; in getSupportedOnClickListener()
102 pendingIntent.send(); in getSupportedOnClickListener()
/dports/misc/perkeep/perkeep-0.11/clients/android/app/src/main/java/org/camlistore/
H A DOnBootReceiver.java34 PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, new Intent(context, in onReceive() local
39 pendingIntent); in onReceive()
/dports/devel/godot-tools/godot-3.2.3-stable/platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/
H A DDownloaderService.java631 final PendingIntent pendingIntent = (PendingIntent) intent in startDownloadServiceIfRequired() local
633 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
638 PendingIntent pendingIntent, Class<?> serviceClass) in startDownloadServiceIfRequired() argument
644 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
668 PendingIntent pendingIntent, String classPackage, String className) in startDownloadServiceIfRequired() argument
706 fileIntent.putExtra(EXTRA_PENDING_INTENT, pendingIntent); in startDownloadServiceIfRequired()
1019 final PendingIntent pendingIntent = (PendingIntent) intent in onHandleIntent() local
1022 if (null != pendingIntent) in onHandleIntent()
1024 mNotification.setClientIntent(pendingIntent); in onHandleIntent()
1025 mPendingIntent = pendingIntent; in onHandleIntent()
/dports/devel/godot2-tools/godot-2.1.6-stable/platform/android/java/src/com/google/android/vending/expansion/downloader/impl/
H A DDownloaderService.java626 final PendingIntent pendingIntent = (PendingIntent) intent in startDownloadServiceIfRequired() local
628 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
633 PendingIntent pendingIntent, Class<?> serviceClass) in startDownloadServiceIfRequired() argument
639 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
663 PendingIntent pendingIntent, String classPackage, String className) in startDownloadServiceIfRequired() argument
701 fileIntent.putExtra(EXTRA_PENDING_INTENT, pendingIntent); in startDownloadServiceIfRequired()
1014 final PendingIntent pendingIntent = (PendingIntent) intent in onHandleIntent() local
1017 if (null != pendingIntent) in onHandleIntent()
1019 mNotification.setClientIntent(pendingIntent); in onHandleIntent()
1020 mPendingIntent = pendingIntent; in onHandleIntent()
/dports/devel/godot2/godot-2.1.6-stable/platform/android/java/src/com/google/android/vending/expansion/downloader/impl/
H A DDownloaderService.java626 final PendingIntent pendingIntent = (PendingIntent) intent in startDownloadServiceIfRequired() local
628 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
633 PendingIntent pendingIntent, Class<?> serviceClass) in startDownloadServiceIfRequired() argument
639 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
663 PendingIntent pendingIntent, String classPackage, String className) in startDownloadServiceIfRequired() argument
701 fileIntent.putExtra(EXTRA_PENDING_INTENT, pendingIntent); in startDownloadServiceIfRequired()
1014 final PendingIntent pendingIntent = (PendingIntent) intent in onHandleIntent() local
1017 if (null != pendingIntent) in onHandleIntent()
1019 mNotification.setClientIntent(pendingIntent); in onHandleIntent()
1020 mPendingIntent = pendingIntent; in onHandleIntent()
/dports/devel/godot/godot-3.2.3-stable/platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/
H A DDownloaderService.java631 final PendingIntent pendingIntent = (PendingIntent) intent in startDownloadServiceIfRequired() local
633 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
638 PendingIntent pendingIntent, Class<?> serviceClass) in startDownloadServiceIfRequired() argument
644 return startDownloadServiceIfRequired(context, pendingIntent, in startDownloadServiceIfRequired()
668 PendingIntent pendingIntent, String classPackage, String className) in startDownloadServiceIfRequired() argument
706 fileIntent.putExtra(EXTRA_PENDING_INTENT, pendingIntent); in startDownloadServiceIfRequired()
1019 final PendingIntent pendingIntent = (PendingIntent) intent in onHandleIntent() local
1022 if (null != pendingIntent) in onHandleIntent()
1024 mNotification.setClientIntent(pendingIntent); in onHandleIntent()
1025 mPendingIntent = pendingIntent; in onHandleIntent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/browser_ui/notifications/android/java/src/org/chromium/components/browser_ui/notifications/
H A DPendingIntentProvider.java48 public PendingIntentProvider(PendingIntent pendingIntent, int flags) { in PendingIntentProvider() argument
49 mPendingIntent = pendingIntent; in PendingIntentProvider()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/javatests/src/org/chromium/chrome/browser/vr/mock/
H A DMockVrDaydreamApi.java27 public boolean launchInVr(final PendingIntent pendingIntent) { in launchInVr() argument
30 return super.launchInVr(pendingIntent); in launchInVr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/background_task_scheduler/internal/android/junit/src/org/chromium/components/background_task_scheduler/internal/
H A DBackgroundTaskSchedulerAlarmManagerTest.java41 PendingIntent pendingIntent = in testExactTaskParameters() local
52 pendingIntent); in testExactTaskParameters() local
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/background_task_scheduler/internal/android/junit/src/org/chromium/components/background_task_scheduler/internal/
H A DBackgroundTaskSchedulerAlarmManagerTest.java41 PendingIntent pendingIntent = in testExactTaskParameters() local
52 pendingIntent); in testExactTaskParameters() local
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/android/java/org/openorienteering/mapper/
H A DMapperService.java76 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); in onStartCommand() local
81 .setContentIntent(pendingIntent) in onStartCommand()

1234