Home | History | Annotate | Download | only in browser

Lines Matching full:bookmarks

26 import android.provider.BrowserContract.Bookmarks;
41 * stored is the set of bookmarks. It's okay if I/O exceptions are thrown
87 * the backup service, parses that out, and rebuilds the bookmarks table in the
106 ArrayList<Bookmark> bookmarks = new ArrayList<Bookmark>(count);
108 // Read all the bookmarks, then process later -- if we can't read
109 // all the data successfully, we don't touch the bookmarks table
117 bookmarks.add(mark);
120 // Okay, we have all the bookmarks -- now see if we need to add
122 int N = bookmarks.size();
124 if (DEBUG) Log.v(TAG, "Restoring " + N + " bookmarks");
125 String[] urlCol = new String[] { Bookmarks.URL };
127 Bookmark mark = bookmarks.get(i);
131 Bookmarks.CONTENT_URI, urlCol,
132 Bookmarks.URL + " == ?",
144 Log.i(TAG, "Restored " + nUnique + " of " + N + " bookmarks");
167 values.put(Bookmarks.TITLE, mark.title);
168 values.put(Bookmarks.URL, mark.url);
169 values.put(Bookmarks.IS_FOLDER, 0);
170 values.put(Bookmarks.DATE_CREATED, mark.created);
171 values.put(Bookmarks.DATE_MODIFIED, mark.date);
172 getContentResolver().insert(Bookmarks.CONTENT_URI, values);