Lines Matching full:history
31 import android.provider.BrowserContract.History;
247 c = cr.query(History.CONTENT_URI, new String[] { History._ID, History.VISITS },
248 History.URL + "=?", new String[] { url }, null);
251 values.put(History.VISITS, c.getInt(1) + 1);
252 values.put(History.DATE_LAST_VISITED, System.currentTimeMillis());
253 cr.update(ContentUris.withAppendedId(History.CONTENT_URI, c.getLong(0)),
258 values.put(History.URL, url);
259 values.put(History.VISITS, 1);
260 values.put(History.DATE_LAST_VISITED, System.currentTimeMillis());
261 values.put(History.TITLE, url);
262 values.put(History.DATE_CREATED, 0);
263 values.put(History.USER_ENTERED, 0);
264 cr.insert(History.CONTENT_URI, values);
297 values.put(History.TITLE, title);
298 cr.update(History.CONTENT_URI, values, History.URL + "=?",