/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_database_unittest.cc | 128 ActivityDatabase* OpenDatabase(const base::FilePath& db_file) { 131 activity_db->Init(db_file); 174 base::FilePath db_file; local 176 db_file = temp_dir.path().AppendASCII("ActivityInit.db"); 177 base::DeleteFile(db_file, false); 179 ActivityDatabase* activity_db = OpenDatabase(db_file); 183 ASSERT_TRUE(db.Open(db_file)); 191 base::FilePath db_file; local 193 db_file = temp_dir.path().AppendASCII("ActivityRecord.db"); 194 base::DeleteFile(db_file, false) 210 base::FilePath db_file; local 228 base::FilePath db_file; local 250 base::FilePath db_file; local 272 base::FilePath db_file; local [all...] |
database_string_table_unittest.cc | 19 base::FilePath db_file = temp_dir_.path().AppendASCII("StringTable.db"); variable 21 ASSERT_TRUE(db_.Open(db_file));
|
/external/chromium_org/chrome/browser/history/ |
history_database_unittest.cc | 19 base::FilePath db_file; local 22 db_file = temp_dir.path().AppendASCII("DropBookmarks.db"); 23 sql::Connection::Delete(db_file); 31 base::CopyFile(old_history_path, db_file); 37 ASSERT_EQ(sql::INIT_OK, history_db.Init(db_file));
|
url_database_unittest.cc | 51 base::FilePath db_file = temp_dir_.path().AppendASCII("URLTest.db"); local 53 EXPECT_TRUE(db_.Open(db_file));
|
visit_database_unittest.cc | 49 base::FilePath db_file = temp_dir_.path().AppendASCII("VisitTest.db"); local 51 EXPECT_TRUE(db_.Open(db_file));
|
/external/oprofile/m4/ |
docbook.m4 | 30 DB_FILE="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" 32 DB_FILE="$DOCBOOK_ROOT/docbook.xsl" 35 $XSLTPROC $XSLTPROC_FLAGS $DB_FILE >/dev/null 2>&1 << END
|
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest2.c | 28 #define DB_FILE "test.db" 82 while( (sqlite3_open(DB_FILE, &db))!=SQLITE_OK ) sched_yield(); 103 if( strcmp(DB_FILE,":memory:") ){ 104 char *zJournal = sqlite3_mprintf("%s-journal", DB_FILE); 105 unlink(DB_FILE); 109 sqlite3_open(DB_FILE, &db);
|
/external/chromium_org/content/browser/renderer_host/ |
database_message_filter.cc | 137 base::FilePath db_file = DatabaseUtil::GetFullFilePathForVfsFile( local 139 if (!db_file.empty()) { 143 VfsBackend::OpenFile(db_file, 150 VfsBackend::OpenFile(db_file, desired_flags, &file_handle); 183 base::FilePath db_file = local 185 if (!db_file.empty()) { 202 error_code = VfsBackend::DeleteFile(db_file, sync_dir); 225 base::FilePath db_file = local 227 if (!db_file.empty()) 228 attributes = VfsBackend::GetFileAttributes(db_file); 239 base::FilePath db_file = local [all...] |
/external/chromium_org/webkit/browser/database/ |
database_tracker_unittest.cc | 486 base::FilePath db_file(tracker->GetFullDBFilePath(kOriginId, kName)); 487 EXPECT_TRUE(base::CreateDirectory(db_file.DirName())); 488 EXPECT_TRUE(EnsureFileOfSize(db_file, 10)); 493 EXPECT_TRUE(EnsureFileOfSize(db_file, 100)); 514 db_file = tracker->GetFullDBFilePath(kOriginId, kName); 515 EXPECT_TRUE(base::CreateDirectory(db_file.DirName())); 516 EXPECT_TRUE(EnsureFileOfSize(db_file, 100)); 540 db_file = tracker->GetFullDBFilePath(kOriginId, kName); 541 EXPECT_TRUE(base::CreateDirectory(db_file.DirName())); 542 EXPECT_TRUE(EnsureFileOfSize(db_file, 100)) 590 base::FilePath db_file; local 671 base::FilePath db_file; local [all...] |
database_tracker.cc | 358 base::FilePath db_file = GetFullDBFilePath(origin_identifier, database_name); local 359 if (!sql::Connection::Delete(db_file)) 693 base::FilePath db_file = GetFullDBFilePath(*ori, db->database_name); local 695 base::GetFileInfo(db_file, &file_info);
|
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
dynamic-dnsmasq.pl | 39 use DB_File; 64 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH; 143 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH; 151 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH; 163 my $X = tie my %h, "DB_File", $accountdb, O_RDWR|O_CREAT, 0600, $DB_HASH;
|
/external/chromium/chrome/browser/history/ |
url_database_unittest.cc | 52 FilePath db_file = temp_dir_.path().AppendASCII("URLTest.db"); local 54 EXPECT_TRUE(db_.Open(db_file));
|
visit_database_unittest.cc | 47 FilePath db_file = temp_dir_.path().AppendASCII("VisitTest.db"); local 49 EXPECT_TRUE(db_.Open(db_file));
|
/external/wpa_supplicant_8/hostapd/ |
hlr_auc_gw.c | 133 static sqlite3 * db_open(const char *db_file) 137 if (sqlite3_open(db_file, &db)) { 139 db_file, sqlite3_errmsg(db));
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
ca.c | [all...] |
apps.h | 279 #define DB_file 4
|
/external/openssl/apps/ |
ca.c | [all...] |
apps.h | 279 #define DB_file 4
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_sim_db.c | 137 static sqlite3 * db_open(const char *db_file) 141 if (sqlite3_open(db_file, &db)) { 143 "%s: %s", db_file, sqlite3_errmsg(db)); [all...] |
/external/chromium/chrome/browser/password_manager/ |
password_store_mac_unittest.cc | [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
password_store_mac_unittest.cc | [all...] |