Lines Matching full:bookmarks
42 * stored is the set of bookmarks. It's okay if I/O exceptions are thrown
65 * After we flatten the bookmarks file here in onBackup, we compare its
67 * the bookmarks didn't really change and we don't need to send the data.
89 // Build a flattened representation of the bookmarks table
114 * the backup service, parses that out, and rebuilds the bookmarks table in the
133 ArrayList<Bookmark> bookmarks = new ArrayList<Bookmark>(count);
135 // Read all the bookmarks, then process later -- if we can't read
136 // all the data successfully, we don't touch the bookmarks table
144 bookmarks.add(mark);
147 // Okay, we have all the bookmarks -- now see if we need to add
149 int N = bookmarks.size();
151 if (DEBUG) Log.v(TAG, "Restoring " + N + " bookmarks");
154 Bookmark mark = bookmarks.get(i);
165 Bookmarks.addBookmark(null, getContentResolver(),
173 Log.i(TAG, "Restored " + nUnique + " of " + N + " bookmarks");
201 // Flatten the bookmarks table into the given file, calculating its CRC in the process
215 if (DEBUG) Log.v(TAG, "Backing up " + count + " bookmarks");