Home | History | Annotate | Download | only in launcher3

Lines Matching defs:appWidgetId

487                     "appWidgetId INTEGER NOT NULL DEFAULT -1," +
718 // upgrade 1,2 -> 3 added appWidgetId column
723 "ADD COLUMN appWidgetId INTEGER NOT NULL DEFAULT -1;");
1214 // Allocate and update database with new appWidgetId
1216 int appWidgetId = mAppWidgetHost.allocateAppWidgetId();
1219 Log.d(TAG, "allocated appWidgetId=" + appWidgetId
1224 values.put(Favorites.APPWIDGET_ID, appWidgetId);
1240 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1245 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1250 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,
1254 Log.e(TAG, "Problem allocating appWidgetId", ex);
1291 int appWidgetId = mAppWidgetHost.allocateAppWidgetId();
1292 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
1293 if (!appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId,cn)) {
1888 int appWidgetId = mAppWidgetHost.allocateAppWidgetId();
1891 values.put(Favorites.APPWIDGET_ID, appWidgetId);
1899 appWidgetManager.bindAppWidgetIdIfAllowed(appWidgetId, cn);
1906 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
1910 Log.e(TAG, "Problem allocating appWidgetId", ex);