HomeSort by relevance Sort by last modified time
    Searched refs:configureIntent (Results 1 - 5 of 5) sorted by 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);
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 95 public PendingIntent configureIntent;
158 out.writeParcelable(configureIntent, flags);
182 config.configureIntent = in.readParcelable(null);
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
BaseWidgetProvider.java 340 final Intent configureIntent = new Intent(context, MailboxSelectionActivity.class);
341 configureIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
342 configureIntent.setData(Uri.parse(configureIntent.toUri(Intent.URI_INTENT_SCHEME)));
343 configureIntent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
344 PendingIntent clickIntent = PendingIntent.getActivity(context, 0, configureIntent,
  /frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ManageDialog.java 88 if (mConfig.configureIntent != null) {
121 mConfig.configureIntent.send();
  /frameworks/base/core/java/android/net/
VpnService.java 360 mConfig.configureIntent = intent;

Completed in 401 milliseconds