Home
last modified time | relevance | path

Searched defs:appWidgetId (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/core/java/android/appwidget/
DAppWidgetManager.java396 public void updateAppWidgetOptions(int appWidgetId, Bundle options) { in updateAppWidgetOptions()
416 public Bundle getAppWidgetOptions(int appWidgetId) { in getAppWidgetOptions()
444 public void updateAppWidget(int appWidgetId, RemoteViews views) { in updateAppWidget()
504 public void partiallyUpdateAppWidget(int appWidgetId, RemoteViews views) { in partiallyUpdateAppWidget()
553 public void notifyAppWidgetViewDataChanged(int appWidgetId, int viewId) { in notifyAppWidgetViewDataChanged()
599 public AppWidgetProviderInfo getAppWidgetInfo(int appWidgetId) { in getAppWidgetInfo()
633 public void bindAppWidgetId(int appWidgetId, ComponentName provider) { in bindAppWidgetId()
657 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) { in bindAppWidgetId()
679 public boolean bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider) { in bindAppWidgetIdIfAllowed()
708 public boolean bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider, in bindAppWidgetIdIfAllowed()
[all …]
DAppWidgetHost.java66 public void updateAppWidget(int appWidgetId, RemoteViews views, int userId) { in updateAppWidget()
75 public void providerChanged(int appWidgetId, AppWidgetProviderInfo info, int userId) { in providerChanged()
89 public void viewDataChanged(int appWidgetId, int viewId, int userId) { in viewDataChanged()
261 public void deleteAppWidgetId(int appWidgetId) { in deleteAppWidgetId()
277 public static void deleteAppWidgetIdForSystem(int appWidgetId, int userId) { in deleteAppWidgetIdForSystem()
335 public final AppWidgetHostView createView(Context context, int appWidgetId, in createView()
363 protected AppWidgetHostView onCreateView(Context context, int appWidgetId, in onCreateView()
371 protected void onProviderChanged(int appWidgetId, AppWidgetProviderInfo appWidget) { in onProviderChanged()
402 void updateAppWidgetView(int appWidgetId, RemoteViews views, int userId) { in updateAppWidgetView()
412 void viewDataChanged(int appWidgetId, int viewId, int userId) { in viewDataChanged()
DAppWidgetProvider.java73 final int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID); in onReceive() local
81 int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID); in onReceive() local
132 int appWidgetId, Bundle newOptions) { in onAppWidgetOptionsChanged()
DAppWidgetHostView.java145 public void setAppWidget(int appWidgetId, AppWidgetProviderInfo info) { in setAppWidget()
/frameworks/base/core/java/com/android/internal/appwidget/
DIAppWidgetHost.aidl25 void updateAppWidget(int appWidgetId, in RemoteViews views, int userId); in updateAppWidget()
26 void providerChanged(int appWidgetId, in AppWidgetProviderInfo info, int userId); in providerChanged()
28 void viewDataChanged(int appWidgetId, int viewId, int userId); in viewDataChanged()
DIAppWidgetService.aidl37 void deleteAppWidgetId(int appWidgetId, int userId); in deleteAppWidgetId()
40 RemoteViews getAppWidgetViews(int appWidgetId, int userId); in getAppWidgetViews()
47 void updateAppWidgetOptions(int appWidgetId, in Bundle extras, int userId); in updateAppWidgetOptions()
48 Bundle getAppWidgetOptions(int appWidgetId, int userId); in getAppWidgetOptions()
53 AppWidgetProviderInfo getAppWidgetInfo(int appWidgetId, int userId); in getAppWidgetInfo()
56 void bindAppWidgetId(int appWidgetId, in ComponentName provider, in Bundle options, int userId); in bindAppWidgetId()
57 boolean bindAppWidgetIdIfAllowed(in String packageName, int appWidgetId, in bindAppWidgetIdIfAllowed()
59 … void bindRemoteViewsService(int appWidgetId, in Intent intent, in IBinder connection, int userId); in bindRemoteViewsService()
60 void unbindRemoteViewsService(int appWidgetId, in Intent intent, int userId); in unbindRemoteViewsService()
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
DAppWidgetHostActivity.java89 void configureAppWidget(int requestCode, int appWidgetId, ComponentName configure) { in configureAppWidget()
102 int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID); in handleAppWidgetPickResult() local
120 int appWidgetId = getPreferences(0).getInt(PENDING_APPWIDGET_ID, -1); in handleAppWidgetConfigureResult() local
134 void addAppWidgetView(int appWidgetId, AppWidgetProviderInfo appWidget) { in addAppWidgetView()
187 int appWidgetId; field in AppWidgetHostActivity.MyAppWidgetView
189 MyAppWidgetView(int appWidgetId) { in MyAppWidgetView()
/frameworks/base/services/java/com/android/server/
DAppWidgetService.java134 public void deleteAppWidgetId(int appWidgetId, int userId) throws RemoteException { in deleteAppWidgetId()
149 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options, int userId) in bindAppWidgetId()
156 String packageName, int appWidgetId, ComponentName provider, Bundle options, int userId) in bindAppWidgetIdIfAllowed()
175 public void bindRemoteViewsService(int appWidgetId, Intent intent, IBinder connection, in bindRemoteViewsService()
250 public AppWidgetProviderInfo getAppWidgetInfo(int appWidgetId, int userId) in getAppWidgetInfo()
256 public RemoteViews getAppWidgetViews(int appWidgetId, int userId) throws RemoteException { in getAppWidgetViews()
261 public void updateAppWidgetOptions(int appWidgetId, Bundle options, int userId) { in updateAppWidgetOptions()
266 public Bundle getAppWidgetOptions(int appWidgetId, int userId) { in getAppWidgetOptions()
296 public void unbindRemoteViewsService(int appWidgetId, Intent intent, int userId) in unbindRemoteViewsService()
DAppWidgetServiceImpl.java134 int appWidgetId; field in AppWidgetServiceImpl.AppWidgetId
452 int appWidgetId = mNextAppWidgetId++; in allocateAppWidgetId() local
470 public void deleteAppWidgetId(int appWidgetId) { in deleteAppWidgetId()
580 private void bindAppWidgetIdImpl(int appWidgetId, ComponentName provider, Bundle options) { in bindAppWidgetIdImpl()
642 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) { in bindAppWidgetId()
649 String packageName, int appWidgetId, ComponentName provider, Bundle options) { in bindAppWidgetIdIfAllowed()
713 public void bindRemoteViewsService(int appWidgetId, Intent intent, IBinder connection) { in bindRemoteViewsService()
773 public void unbindRemoteViewsService(int appWidgetId, Intent intent) { in unbindRemoteViewsService()
803 int appWidgetId = id.appWidgetId; in unbindAppWidgetRemoteViewsServicesLocked() local
858 private void incrementAppWidgetServiceRefCount(int appWidgetId, FilterComparison fc) { in incrementAppWidgetServiceRefCount()
[all …]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardHostView.java236 int appWidgetId = appWidgetIdsBoundToHost[i]; in cleanupAppWidgetIds() local
1297 int appWidgetId; in allocateIdForDefaultAppWidget() local
1334 int appWidgetId = allocateIdForDefaultAppWidget(); in checkAppWidgetConsistency() local
1341 int appWidgetId = mLockPatternUtils.getFallbackAppWidgetId(); in checkAppWidgetConsistency() local
1677 public void goToWidget(int appWidgetId) { in goToWidget()
DKeyguardActivityLauncher.java124 public void launchWidgetPicker(int appWidgetId) { in launchWidgetPicker()
DKeyguardWidgetPager.java282 final int appWidgetId = ((KeyguardWidgetFrame) v).getContentAppWidgetId(); in onRemoveView() local
302 final int appWidgetId = ((KeyguardWidgetFrame) v).getContentAppWidgetId(); in onAddView() local
/frameworks/base/core/java/android/widget/
DRemoteViewsAdapter.java158 public synchronized void bind(Context context, int appWidgetId, Intent intent) { in bind()
179 public synchronized void unbind(Context context, int appWidgetId, Intent intent) { in unbind()
DRemoteViews.java2116 public void setRemoteAdapter(int appWidgetId, int viewId, Intent intent) { in setRemoteAdapter()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternUtils.java1118 public void writeFallbackAppWidgetId(int appWidgetId) { in writeFallbackAppWidgetId()