Searched refs:RestoreError (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Launcher3/src/com/android/launcher3/backuprestore/ |
D | LauncherRestoreEventLogger.kt | 18 RestoreError.PROFILE_DELETED, 19 RestoreError.MISSING_INFO, 20 RestoreError.MISSING_WIDGET_PROVIDER, 21 RestoreError.INVALID_LOCATION, 22 RestoreError.SHORTCUT_NOT_FOUND, 23 RestoreError.APP_NOT_INSTALLED, 24 RestoreError.WIDGETS_DISABLED, 25 RestoreError.PROFILE_NOT_RESTORED, 26 RestoreError.WIDGET_REMOVED, 27 RestoreError.GRID_MIGRATION_FAILURE, [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | WidgetInflater.kt | 23 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError 42 restoreErrorType = RestoreError.NO_SEARCH_WIDGET in inflateAppWidget() 51 @RestoreError var logReason = RestoreError.APP_NOT_INSTALLED in inflateAppWidget() 60 logReason = RestoreError.WIDGETS_DISABLED in inflateAppWidget() 63 logReason = RestoreError.MISSING_WIDGET_PROVIDER in inflateAppWidget() 77 logReason = RestoreError.MISSING_INFO in inflateAppWidget() 84 logReason = RestoreError.INVALID_WIDGET_ID in inflateAppWidget() 192 @RestoreError val restoreErrorType: String = RestoreError.APP_NOT_INSTALLED,
|
/packages/apps/Launcher3/src/com/android/launcher3/model/ |
D | WorkspaceItemProcessor.kt | 34 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError 100 RestoreError.PROFILE_DELETED in processItem() 143 c.markDeleted("Null intent from db for item id=${c.id}", RestoreError.MISSING_INFO) in processAppOrDeepShortcut() 153 c.markDeleted("No target package for item id=${c.id}", RestoreError.MISSING_INFO) in processAppOrDeepShortcut() 181 RestoreError.MISSING_INFO in processAppOrDeepShortcut() 216 RestoreError.APP_NOT_INSTALLED in processAppOrDeepShortcut() 241 RestoreError.APP_NOT_INSTALLED in processAppOrDeepShortcut() 273 RestoreError.SHORTCUT_NOT_FOUND in processAppOrDeepShortcut() 448 RestoreError.INVALID_LOCATION in processWidget() 459 RestoreError.INVALID_LOCATION in processWidget() [all …]
|
D | LoaderCursor.java | 45 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError; 408 public void markDeleted(String reason, @RestoreError String errorType) { in markDeleted() 501 markDeleted("Item position overlap", RestoreError.INVALID_LOCATION); in checkAndAddItem()
|
D | ModelDbController.java | 72 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError; 346 RestoreError.GRID_MIGRATION_FAILURE in sendMetricsForFailedMigration()
|
/packages/apps/Launcher3/src/com/android/launcher3/provider/ |
D | RestoreDbTask.java | 63 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError; 453 oldWidgetIds.length, RestoreError.WIDGETS_DISABLED); in restoreAppWidgetIds() 519 RestoreError.WIDGET_REMOVED in restoreAppWidgetIds() 675 RestoreError.PROFILE_NOT_RESTORED in reportUnrestoredProfiles()
|
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/ |
D | WorkspaceItemProcessorTest.kt | 42 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError.Companion.MISSIN… 43 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError.Companion.MISSIN… 44 import com.android.launcher3.backuprestore.LauncherRestoreEventLogger.RestoreError.Companion.PROFIL… 664 LauncherRestoreEventLogger.RestoreError.APP_NOT_INSTALLED in When Unrestored Pending App Widget then mark deleted()
|