Home
last modified time | relevance | path

Searched refs:restore (Results 1 – 25 of 120) sorted by relevance

12345

/frameworks/base/docs/html/tools/help/
Dbmgr.jd11 <p><code>bmgr</code> lets you control the backup/restore system on an Android device.
16 <li><a href="#restore">Forcing a Restore Operation</a></li>
32 and restore operations so that you don't need to repeatedly wipe data or take similar
70 <h2 id="restore">Forcing a Restore Operation</h2>
72 <p>Unlike backup operations, which are batched together and run on an occasional basis, restore
73 operations execute immediately. The Backup Manager currently provides two kinds of restore
77 perform. The second kind of restore operation restores
80 invoke this second restore operation with the {@link
86 <p>While testing your application, you can immediately invoke the restore operation (bypassing the
88 for your application by using the <code>bmgr restore</code> command:
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DColoredRectsActivity.java89 canvas.restore(); in onDraw()
98 canvas.restore(); in onDraw()
103 canvas.restore(); in onDraw()
109 canvas.restore(); in onDraw()
115 canvas.restore(); in onDraw()
116 canvas.restore(); in onDraw()
DShapesActivity.java83 canvas.restore(); in onDraw()
94 canvas.restore(); in onDraw()
105 canvas.restore(); in onDraw()
116 canvas.restore(); in onDraw()
127 canvas.restore(); in onDraw()
138 canvas.restore(); in onDraw()
DLines2Activity.java109 canvas.restore(); in onDraw()
118 canvas.restore(); in onDraw()
127 canvas.restore(); in onDraw()
137 canvas.restore(); in onDraw()
146 canvas.restore(); in onDraw()
155 canvas.restore(); in onDraw()
178 canvas.restore(); in onDraw()
201 canvas.restore(); in onDraw()
224 canvas.restore(); in onDraw()
247 canvas.restore(); in onDraw()
DXfermodeActivity.java77 canvas.restore(); in onDraw()
98 canvas.restore(); in onDraw()
124 canvas.restore(); in onDraw()
134 canvas.restore(); in drawRects()
DAlphaLayersActivity.java93 canvas.restore(); in dispatchDraw()
103 canvas.restore(); in dispatchDraw()
113 canvas.restore(); in dispatchDraw()
125 canvas.restore(); in dispatchDraw()
DQuickRejectActivity.java61 canvas.restore(); in onDraw()
77 canvas.restore(); in onDraw()
86 canvas.restore(); in onDraw()
DClearActivity.java79 canvas.restore(); in onDraw()
85 canvas.restore(); in onDraw()
DPathsCacheActivity.java93 canvas.restore(); in onDraw()
105 canvas.restore(); in onDraw()
DColorFiltersActivity.java83 canvas.restore(); in onDraw()
94 canvas.restore(); in onDraw()
DTransform3dActivity.java83 canvas.restore(); in drawBitmap()
91 camera.restore(); in rotate()
DThinPatchesActivity.java87 canvas.restore(); in onDraw()
98 canvas.restore(); in onDraw()
DFramebufferBlendActivity.java75 canvas.restore(); in onDraw()
84 canvas.restore(); in onDraw()
DLinesActivity.java148 canvas.restore(); in onDraw()
155 canvas.restore(); in onDraw()
DShadersActivity.java122 canvas.restore(); in onDraw()
139 canvas.restore(); in onDraw()
DTextOnPathActivity.java131 canvas.restore(); in onDraw()
150 canvas.restore(); in onDraw()
DAdvancedBlendActivity.java119 canvas.restore(); in onDraw()
135 canvas.restore(); in onDraw()
DMoreShadersActivity.java119 canvas.restore(); in onDraw()
139 canvas.restore(); in onDraw()
DPathsActivity.java124 canvas.restore(); in onDraw()
142 canvas.restore(); in onDraw()
DMatrixActivity.java53 canvas.restore(); in onDraw()
/frameworks/base/core/jni/
Dandroid_backup_FileBackupHelperBase.cpp83 RestoreHelperBase* restore = (RestoreHelperBase*)ptr; in writeFile_native() local
89 err = restore->WriteFile(String8(filename), reader); in writeFile_native()
101 RestoreHelperBase* restore = (RestoreHelperBase*)ptr; in writeSnapshot_native() local
104 err = restore->WriteSnapshot(fd); in writeSnapshot_native()
/frameworks/base/docs/html/guide/topics/data/
Dbackup.jd11 <li>If the user upgrades to a new Android-powered device, your app can restore the user's
26 <li><a href="#PerformingRestore">Performing restore</a></li>
57 application data to remote "cloud" storage, in order to provide a restore point for the
67 restore operation, the Backup Manager retrieves the backup data from the backup transport and
68 returns it to your application so your application can restore the data to the device. It's
69 possible for your application to request a restore, but that shouldn't be necessary&mdash;Android
70 automatically performs a restore operation when your application is installed and there exists
110 to restore your backup data when the application is re-installed. The Backup Manager handles all
134 onRestore()} to handle the backup and restore operations for your data.</p>
140 "helper" objects, which automatically backup and restore certain types of data, so that you do not
[all …]
/frameworks/base/core/java/android/widget/
DAnalogClock.java203 canvas.restore(); in onDraw()
215 canvas.restore(); in onDraw()
218 canvas.restore(); in onDraw()
/frameworks/base/docs/html/training/basics/activity-lifecycle/
Drecreating.jd46 system uses to restore the previous state is called the "instance state" and is a collection of
58 activity might have more state information that you'd like to restore, such as member variables that
132 <p>For example, here's how you can restore some state data in {@link android.app.Activity#onCreate
157 state to restore, so you do not need to check whether the {@link android.os.Bundle} is null:</p>
161 // Always call the superclass so it can restore the view hierarchy
172 can restore the state of the view hierarchy.</p>
/frameworks/base/graphics/java/android/graphics/
DCamera.java45 public native void restore(); in restore() method in Camera

12345