Lines Matching defs:keys
164 * <P>The journal is a timestamp and a list of keys that were saved as of that time.
166 * <P>Keys may come back in any order, so each key/value is one complete row of the database.
188 ArrayList<Key> keys = new ArrayList<Key>();
191 backupFavorites(in, data, out, keys);
192 backupScreens(in, data, out, keys);
193 backupIcons(in, data, out, keys);
194 backupWidgets(in, data, out, keys);
198 out.key = keys.toArray(new BackupProtos.Key[keys.size()]);
210 * <P>Keys may arrive in any order.
288 * @param keys keys to mark as clean in the notes for next backup
292 ArrayList<Key> keys)
309 keys.add(key);
332 * <P>Keys arrive in any order, so screens and containers may not exist yet.
337 * @param keys keys to mark as clean in the notes for next backup
339 private void restoreFavorite(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
365 * @param keys keys to mark as clean in the notes for next backup
369 ArrayList<Key> keys)
387 keys.add(key);
410 * <P>Keys arrive in any order, so children of this screen may already exist.
415 * @param keys keys to mark as clean in the notes for next backup
417 private void restoreScreen(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
444 * @param keys keys to mark as clean in the notes for next backup
448 ArrayList<Key> keys) throws IOException {
489 keys.add(key);
495 keys.add(key);
526 * <P>Keys arrive in any order, so shortcuts that use this icon may already exist.
531 * @param keys keys to mark as clean in the notes for next backup
533 private void restoreIcon(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
574 * @param keys keys to mark as clean in the notes for next backup
578 ArrayList<Key> keys) throws IOException {
623 keys.add(key);
631 keys.add(key);
654 * <P>Keys arrive in any order, so widgets that use this data may already exist.
659 * @param keys keys to mark as clean in the notes for next backup
661 private void restoreWidget(Key key, byte[] buffer, int dataSize, ArrayList<Key> keys) {
689 * <P> Keys contain their own checksum instead of using
702 * <P> Keys contain their own checksum instead of using
713 /** keys need to be strings, serialize and encode. */
718 /** keys need to be strings, decode and parse. */