Home | History | Annotate | Download | only in launcher3

Lines Matching full:keys

157      * <P>The journal is a timestamp and a list of keys that were saved as of that time.
159 * <P>Keys may come back in any order, so each key/value is one complete row of the database.
181 ArrayList<Key> keys = new ArrayList<Key>();
183 backupFavorites(in, data, out, keys);
184 backupScreens(in, data, out, keys);
185 backupIcons(in, data, out, keys);
186 backupWidgets(in, data, out, keys);
191 out.key = keys.toArray(BackupProtos.Key.EMPTY_ARRAY);
199 * <P>Keys may arrive in any order.
276 * @param keys keys to mark as clean in the notes for next backup
280 ArrayList<Key> keys)
297 keys.add(key);
317 * <P>Keys arrive in any order, so screens and containers may not exist yet.
322 * @param keys keys to mark as clean in the notes for next backup
324 private void restoreFavorite(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
344 * @param keys keys to mark as clean in the notes for next backup
348 ArrayList<Key> keys)
365 keys.add(key);
385 * <P>Keys arrive in any order, so children of this screen may already exist.
390 * @param keys keys to mark as clean in the notes for next backup
392 private void restoreScreen(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
411 * @param keys keys to mark as clean in the notes for next backup
415 ArrayList<Key> keys) throws IOException {
458 keys.add(key);
464 keys.add(key);
495 * <P>Keys arrive in any order, so shortcuts that use this icon may already exist.
500 * @param keys keys to mark as clean in the notes for next backup
502 private void restoreIcon(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
528 * @param keys keys to mark as clean in the notes for next backup
532 ArrayList<Key> keys) throws IOException {
579 keys.add(key);
587 keys.add(key);
610 * <P>Keys arrive in any order, so widgets that use this data may already exist.
615 * @param keys keys to mark as clean in the notes for next backup
617 private void restoreWidget(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
638 * <P> Keys contain their own checksum instead of using
651 * <P> Keys contain their own checksum instead of using
662 /** keys need to be strings, serialize and encode. */
667 /** keys need to be strings, decode and parse. */