HomeSort by relevance Sort by last modified time
    Searched refs:db_handle (Results 1 - 21 of 21) sorted by null

  /external/chromium/chrome/browser/history/
download_database.h 31 bool UpdateDownload(int64 received_bytes, int32 state, DownloadID db_handle);
34 bool UpdateDownloadPath(const FilePath& path, DownloadID db_handle);
46 void RemoveDownload(DownloadID db_handle);
download_types.cc 25 db_handle(0),
40 db_handle(0),
download_database.cc 97 info.db_handle = statement.ColumnInt64(0);
111 DownloadID db_handle) {
112 DCHECK(db_handle > 0);
121 statement.BindInt64(2, db_handle);
126 DownloadID db_handle) {
127 DCHECK(db_handle > 0);
134 statement.BindInt64(1, db_handle);
168 void DownloadDatabase::RemoveDownload(DownloadID db_handle) {
174 statement.BindInt64(0, db_handle);
download_create_info.cc 32 db_handle(0),
49 db_handle(0),
download_create_info.h 63 int64 db_handle; member in struct:DownloadCreateInfo
history.cc 544 int64 db_handle) {
546 received_bytes, state, db_handle);
550 int64 db_handle) {
552 path, db_handle);
555 void HistoryService::RemoveDownload(int64 db_handle) {
557 &HistoryBackend::RemoveDownload, db_handle);
history_backend.h 240 void UpdateDownload(int64 received_bytes, int32 state, int64 db_handle);
241 void UpdateDownloadPath(const FilePath& path, int64 db_handle);
244 void RemoveDownload(int64 db_handle);
history.h 448 void UpdateDownload(int64 received_bytes, int32 state, int64 db_handle);
452 void UpdateDownloadPath(const FilePath& path, int64 db_handle);
456 void RemoveDownload(int64 db_handle);
    [all...]
history_backend.cc 1136 int64 db_handle = 0; local
    [all...]
  /external/chromium/chrome/browser/download/
download_history.cc 71 if (download_item->db_handle() <= kUninitializedHandle)
81 download_item->db_handle());
87 if (download_item->db_handle() <= kUninitializedHandle)
93 hs->UpdateDownloadPath(new_path, download_item->db_handle());
98 if (download_item->db_handle() <= kUninitializedHandle)
104 hs->RemoveDownload(download_item->db_handle());
download_manager.cc 620 return (download->db_handle() != DownloadHistory::kUninitializedHandle);
640 DCHECK(download->db_handle() != DownloadHistory::kUninitializedHandle);
641 DCHECK_EQ(1u, history_downloads_.count(download->db_handle()));
703 // don't have a valid db_handle yet.
704 if (download->db_handle() != DownloadHistory::kUninitializedHandle) {
754 // don't have a valid db_handle yet.
755 if (download->db_handle() != DownloadHistory::kUninitializedHandle) {
    [all...]
download_item.h 259 int64 db_handle() const { return db_handle_; } function in class:DownloadItem
download_browsertest.cc 720 if (it->db_handle == download_db_handle_) {
1281 int64 db_handle = downloads[0]->db_handle(); local
    [all...]
download_item.cc 130 db_handle_(info.db_handle),
655 " db_handle = %" PRId64
664 db_handle(),
download_manager.h 198 DownloadCreateInfo info, int64 db_handle);
  /external/chromium/chrome/common/
sqlite_utils.cc 298 return error_handler->HandleError(status, db_handle());
308 return sqlite3_last_insert_rowid(db_handle());
313 return sqlite3_changes(db_handle());
316 sqlite3* SQLStatement::db_handle() { function in class:SQLStatement
sqlite_utils.h 243 sqlite3* db_handle();
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h 86 sqlite3 * (*db_handle)(sqlite3_stmt*); member in struct:sqlite3_api_routines
262 #define sqlite3_db_handle sqlite3_api->db_handle
  /external/sqlite/dist/orig/
sqlite3ext.h 94 sqlite3 * (*db_handle)(sqlite3_stmt*); member in struct:sqlite3_api_routines
305 #define sqlite3_db_handle sqlite3_api->db_handle
  /external/sqlite/dist/
sqlite3ext.h 94 sqlite3 * (*db_handle)(sqlite3_stmt*); member in struct:sqlite3_api_routines
305 #define sqlite3_db_handle sqlite3_api->db_handle
  /external/chromium/net/socket/
ssl_client_socket_nss.cc 1973 CERTCertDBHandle* db_handle = CERT_GetDefaultCertDB(); local
    [all...]

Completed in 270 milliseconds