HomeSort by relevance Sort by last modified time
    Searched refs:db (Results 126 - 150 of 1110) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/webdata/
web_database_table.h 17 explicit WebDatabaseTable(sql::Connection* db, sql::MetaTable* meta_table)
18 : db_(db), meta_table_(meta_table) {}
autofill_table_unittest.cc 102 ".db";
131 WebDatabase db; local
133 ASSERT_EQ(sql::INIT_OK, db.Init(file_));
140 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue(
150 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue(
160 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue(
170 EXPECT_TRUE(db.GetAutofillTable()->AddFormFieldValue(
185 EXPECT_TRUE(db.GetAutofillTable()->GetIDAndCountOfFormElement(
198 EXPECT_TRUE(db.GetAutofillTable()->GetIDAndCountOfFormElement(
208 EXPECT_TRUE(db.GetAutofillTable()->GetIDAndCountOfFormElement
343 WebDatabase db; local
390 WebDatabase db; local
431 WebDatabase db; local
459 WebDatabase db; local
487 WebDatabase db; local
505 WebDatabase db; local
541 WebDatabase db; local
567 WebDatabase db; local
601 WebDatabase db; local
652 WebDatabase db; local
779 WebDatabase db; local
820 WebDatabase db; local
858 WebDatabase db; local
899 WebDatabase db; local
940 WebDatabase db; local
981 WebDatabase db; local
1004 WebDatabase db; local
1079 WebDatabase db; local
1165 WebDatabase db; local
1250 WebDatabase db; local
1326 WebDatabase db; local
1443 WebDatabase db; local
1454 WebDatabase db; local
1499 WebDatabase db; local
1563 WebDatabase db; local
    [all...]
  /external/chromium_org/sql/test/
error_callback_support.cc 16 sql::Connection* db,
18 : db_(db) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
ea-warn.asm 2 add [byte ebp*8+06h],ecx ;db 01,0c,0ed,06 probably wrong
4 add [dword ebp*8+06h],ecx ;db 01,0c,0ed,06,0,0,0 OK
6 add ecx,[byte ebp*8+06h] ;db 03,0c,0ed,06 probably wrong
12 add ecx,[byte ebx*8+06h] ;db 03,0c,0dd,06 probably wrong
jmp64-3.asm 5 db 0x0 label
jmp64-4.asm 5 db 0x0 label
jmp64-5.asm 5 times 0x10001 db 0x0
jmp64-6.asm 6 db 0x0 label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
abs.asm 5 baz db (foo>>24)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
equlocal.asm 4 db blah.local label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/
segment.asm 2 a db 0
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/includes/
db.php 4 mysql_select_db($db ? $db : "modeling", $connect) or die(mysql_error());
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarDatabaseHelperTest.java 49 protected void bootstrapDbVersion50(SQLiteDatabase db) {
53 syncStateHelper.createDatabase(db);
55 db.execSQL("CREATE TABLE Calendars (" +
77 db.execSQL("CREATE TRIGGER calendar_cleanup DELETE ON Calendars " +
84 db.execSQL("CREATE TABLE Events (" +
121 db.execSQL("CREATE INDEX eventsCalendarIdIndex ON Events (calendar_id);");
123 db.execSQL("CREATE TABLE EventsRawTimes (" +
136 db.execSQL("CREATE TABLE DeletedEvents (" +
143 db.execSQL("CREATE TABLE Instances (" +
155 db.execSQL("CREATE INDEX instancesStartDayIndex ON Instances (startDay);")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_misc.py 7 from test_all import db, dbshelve, hashopen, test_support, get_new_environment_path, get_new_database_path namespace
23 self.assertRaises(db.DBError, dbs.get, "foo")
26 env = db.DBEnv()
29 env.open(self.homeDir, db.DB_CREATE)
36 db = hashopen(self.filename)
37 db.close()
38 rp = repr(db)
42 db = hashopen(self.filename)
45 db[repr(i)] = repr(100*i)
47 db.close(
    [all...]
test_join.py 1 """TestCases for using the DB.join and DBCursor.join_item methods.
8 from test_all import db, dbshelve, test_support, verbose, \
36 self.filename = self.__class__.__name__ + '.db'
38 self.env = db.DBEnv()
39 self.env.open(self.homeDir, db.DB_CREATE | db.DB_INIT_MPOOL | db.DB_INIT_LOCK )
52 priDB = db.DB(self.env)
53 priDB.open(self.filename, "primary", db.DB_BTREE, db.DB_CREATE
9 get_new_environment_path, get_new_database_path namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_misc.py 7 from test_all import db, dbshelve, hashopen, test_support, get_new_environment_path, get_new_database_path namespace
23 self.assertRaises(db.DBError, dbs.get, "foo")
26 env = db.DBEnv()
29 env.open(self.homeDir, db.DB_CREATE)
36 db = hashopen(self.filename)
37 db.close()
38 rp = repr(db)
42 db = hashopen(self.filename)
45 db[repr(i)] = repr(100*i)
47 db.close(
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 41 * @param db The sqlite database instance.
43 public static void createIndexes(SQLiteDatabase db) {
46 db.execSQL("CREATE INDEX contacts_has_phone_index ON " + table + " (" +
50 db.execSQL("CREATE INDEX contacts_name_raw_contact_id_index ON " + table + " (" +
54 db.execSQL(MoreDatabaseUtils.buildCreateIndexSql(table,
58 public static void updateContactLastUpdateByContactId(SQLiteDatabase db, long contactId) {
62 db.update(Tables.CONTACTS, values, Contacts._ID + " = ?",
69 * @param db The sqlite database instance.
72 public static void updateContactLastUpdateByRawContactId(SQLiteDatabase db,
78 db.execSQL(buildUpdateLastUpdateSql(rawContactIds))
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_database_helper_unittest.cc 21 const char db[] = "db1"; local
27 helper->AddDatabase(origin, db, std::string());
38 const char db[] = "db1"; local
44 helper->AddDatabase(origin1, db, std::string());
46 helper->AddDatabase(origin2, db, std::string());
  /external/chromium_org/third_party/sqlite/src/src/
malloc.c 431 ** TRUE if p is a lookaside memory allocation from db
434 static int isLookaside(sqlite3 *db, void *p){
435 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
450 int sqlite3DbMallocSize(sqlite3 *db, void *p){
451 assert( db==0 || sqlite3_mutex_held(db->mutex) );
452 if( db && isLookaside(db, p) ){
453 return db->lookaside.sz
    [all...]
test9.c 32 sqlite3 *db; local
41 rc = sqlite3_open(":memory:", &db);
47 rc = sqlite3_create_collation(db, "collate", 456, 0, 0);
49 sqlite3_close(db);
54 sqlite3_close(db);
114 sqlite3 *db = 0; local
126 rc = sqlite3_open(":memory:", &db);
131 sqlite3_close(db);
134 rc = sqlite3_errcode(db);
141 rc = sqlite3_prepare(db, 0, 0, &pStmt, 0)
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
AggregatorStorage.java 44 public void onCreate(SQLiteDatabase db) {
45 db.execSQL(mTableCmd);
49 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
53 db.execSQL("DROP TABLE IF EXISTS " + mTableName);
54 onCreate(db);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
MetaData.java 81 SQLiteDatabase db = mOpenHelper.getReadableDatabase(); local
82 db.beginTransaction();
87 readLocked(db);
92 db.setTransactionSuccessful();
94 db.endTransaction();
115 SQLiteDatabase db = mOpenHelper.getReadableDatabase(); local
116 readLocked(db);
130 private void readLocked(SQLiteDatabase db) {
136 Cursor cursor = db.query("CalendarMetaData", sCalendarMetaDataProjection,
171 SQLiteDatabase db = mOpenHelper.getReadableDatabase() local
203 SQLiteDatabase db = mOpenHelper.getWritableDatabase(); local
227 SQLiteDatabase db = mOpenHelper.getReadableDatabase(); local
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
async2.test 47 db close
54 file delete -force test.db test.db-journal
55 sqlite3 db test.db
57 db close
60 sqlite3 db test.db
61 sqlite3_db_config_lookaside db 0 0 0
70 db clos
    [all...]
  /external/chromium/chrome/browser/history/
text_database_unittest.cc 23 // pages in the database withoujt adding any extra functions to the DB object.
52 int RowCount(TextDatabase* db) {
60 db->GetTextMatches("COUNTTAG", options, &results, &unique_urls,
66 void AddAllTestData(TextDatabase* db) {
67 EXPECT_TRUE(db->AddPageData(
69 EXPECT_TRUE(db->AddPageData(
71 EXPECT_TRUE(db->AddPageData(
73 EXPECT_EQ(3, RowCount(db));
108 TextDatabase* db = new TextDatabase(temp_dir_.path(), id, allow_create); local
111 file_util::Delete(db->file_name(), false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementSync.cpp 54 PassRefPtr<SQLResultSet> SQLStatementSync::execute(DatabaseSync* db, ExceptionState& es)
56 db->setAuthorizerPermissions(m_permissions);
58 SQLiteDatabase* database = &db->sqliteDatabase();
67 db->setLastErrorMessage("could not prepare statement", result, database->lastErrorMsg());
72 if (db->isInterrupted())
76 db->setLastErrorMessage("number of '?'s in statement string does not match argument count");
84 db->setLastErrorMessage("there was not enough remaining storage space");
90 db->setLastErrorMessage("could not bind value", result, database->lastErrorMsg());
115 db->setLastErrorMessage("could not iterate results", result, database->lastErrorMsg());
120 if (db->lastActionWasInsert()
    [all...]

Completed in 888 milliseconds

1 2 3 4 56 7 8 91011>>