OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:configureIntent
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/com/android/internal/net/
VpnConfig.java
70
public PendingIntent
configureIntent
;
117
out.writeParcelable(
configureIntent
, flags);
135
config.
configureIntent
= in.readParcelable(null);
/development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java
150
Intent
configureIntent
= new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE);
151
configureIntent
.setComponent(providerInfo.configure);
152
configureIntent
.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
154
if (
configureIntent
!= null) {
156
startActivityForResult(
configureIntent
, REQUEST_CONFIGURE);
/packages/apps/UnifiedEmail/src/com/android/mail/widget/
BaseWidgetProvider.java
336
final Intent
configureIntent
= new Intent(context, MailboxSelectionActivity.class);
337
configureIntent
.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
338
configureIntent
.setData(Uri.parse(
configureIntent
.toUri(Intent.URI_INTENT_SCHEME)));
339
configureIntent
.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
340
PendingIntent clickIntent = PendingIntent.getActivity(context, 0,
configureIntent
,
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ManageDialog.java
98
if (mConfig.
configureIntent
!= null) {
131
mConfig.
configureIntent
.send();
/frameworks/base/core/java/android/net/
VpnService.java
280
mConfig.
configureIntent
= intent;
Completed in 453 milliseconds