Lines Matching defs:info
85 bool URLDatabase::GetURLRow(URLID url_id, URLRow* info) {
97 FillURLRow(statement, info);
110 URLRow info;
111 FillURLRow(statement, &info);
112 urls->push_back(info);
117 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) {
128 if (info)
129 FillURLRow(statement, info);
134 const history::URLRow& info) {
142 statement.BindString16(0, info.title());
143 statement.BindInt(1, info.visit_count());
144 statement.BindInt(2, info.typed_count());
145 statement.BindInt64(3, info.last_visit().ToInternalValue());
146 statement.BindInt(4, info.hidden() ? 1 : 0);
151 URLID URLDatabase::AddURLInternal(const history::URLRow& info,
179 statement.BindString(0, GURLToDatabaseURL(info.url()));
180 statement.BindString16(1, info.title());
181 statement.BindInt(2, info.visit_count());
182 statement.BindInt(3, info.typed_count());
183 statement.BindInt64(4, info.last_visit().ToInternalValue());
184 statement.BindInt(5, info.hidden() ? 1 : 0);
187 VLOG(0) << "Failed to add url " << info.url().possibly_invalid_spec()
334 history::URLRow info;
335 FillURLRow(statement, &info);
336 if (info.url().is_valid())
337 results->push_back(info);
346 history::URLRow* info) {
373 DCHECK(info);
374 FillURLRow(statement, info);