Home | History | Annotate | Download | only in provider

Lines Matching defs:TABLE_NAMES

67     static final String[] TABLE_NAMES = new String[] {
114 // make sure that these match the index of TABLE_NAMES
128 URI_MATCHER.addURI("browser", TABLE_NAMES[URI_MATCH_BOOKMARKS],
130 URI_MATCHER.addURI("browser", TABLE_NAMES[URI_MATCH_BOOKMARKS] + "/#",
132 URI_MATCHER.addURI("browser", TABLE_NAMES[URI_MATCH_SEARCHES],
134 URI_MATCHER.addURI("browser", TABLE_NAMES[URI_MATCH_SEARCHES] + "/#",
139 TABLE_NAMES[URI_MATCH_BOOKMARKS] + "/" + SearchManager.SUGGEST_URI_PATH_QUERY,
778 Cursor c = mOpenHelper.getReadableDatabase().query(TABLE_NAMES[match % 10], projection,
809 Cursor c = mOpenHelper.getReadableDatabase().query(TABLE_NAMES[URI_MATCH_BOOKMARKS],
863 long rowID = db.insert(TABLE_NAMES[URI_MATCH_BOOKMARKS], "url",
875 long rowID = db.insert(TABLE_NAMES[URI_MATCH_SEARCHES], "url",
946 int count = db.delete(TABLE_NAMES[match % 10], where, whereArgs);
1008 int ret = db.update(TABLE_NAMES[match % 10], values, where, whereArgs);