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

1 2 3 4 56 7 8 91011>>

  /external/stlport/test/eh/
kai.mak 65 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache ti_files
sunpro-64.mak 69 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache
sunpro.mak 71 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache
sunpro42.mak 70 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache
gcc-amigaos-m68k.mak 119 -rm -fr ${TEST_EXE} *.o */*.o *.rpo *.obj *.out core *~ Templates.DB
  /ndk/sources/host-tools/make-3.81/
vmsfunctions.c 90 DB (DB_VERBOSE, ("."));
94 DB (DB_VERBOSE, (_("sys$search failed with %d\n"), i));
remote-cstms.c 126 DB (DB_JOBS, (_("Customs won't export: %s\n"),
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 92 // before accessing DB and IO threads to build the local cache.
281 content::BrowserThread::PostTaskAndReply(content::BrowserThread::DB,
296 content::BrowserThread::PostTask(content::BrowserThread::DB, FROM_HERE,
326 content::BrowserThread::PostTask(content::BrowserThread::DB, FROM_HERE,
456 content::BrowserThread::PostTask(content::BrowserThread::DB, FROM_HERE,
483 // DB is loaded.
515 content::BrowserThread::PostTask(content::BrowserThread::DB, FROM_HERE,
  /external/chromium_org/third_party/boringssl/win-x86_64/crypto/rc4/
rc4-x86_64.asm 23 DB 0F3h,0C3h ;repret
535 DB 0F3h,0C3h ;repret
619 DB 0F3h,0C3h ;repret
635 DB 0F3h,0C3h ;repret
639 DB 0F3h,0C3h ;repret
642 DB 114,99,52,40,56,120,44,105,110,116,41,0
643 DB 114,99,52,40,56,120,44,99,104,97,114,41,0
644 DB 114,99,52,40,49,54,120,44,105,110,116,41,0
645 DB 82,67,52,32,102,111,114,32,120,56,54,95,54,52,44,32
646 DB 67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,9
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 64 def __init__(self, db, *args, **kwargs) :
65 self._dbcursor = db.cursor(*args, **kwargs)
399 def __init__(self, db, *args, **kwargs) :
400 self._db=db
401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs)
419 bsddb._db.DB_orig = bsddb._db.DB
420 if bsddb.db.version() <= (4, 3) :
429 bsddb.DBEnv = bsddb.db.DBEnv = bsddb._db.DBEnv = DBEnv_py3k
430 bsddb.DB = bsddb.db.DB = bsddb._db.DB = DB_py3
444 hashopen, btopen, rnopen, dbobj namespace
448 hashopen, btopen, rnopen, dbobj namespace
    [all...]
test_basics.py 3 various DB flags, etc.
14 from test_all import db, test_support, verbose, get_new_environment_path, \
24 info = db.version()
27 print 'bsddb.db.version(): %s' % (info, )
28 print db.DB_VERSION_STRING
30 self.assertEqual(info, (db.DB_VERSION_MAJOR, db.DB_VERSION_MINOR,
31 db.DB_VERSION_PATCH))
36 dbtype = db.DB_UNKNOWN # must be set in derived class
52 self.env = db.DBEnv(
15 get_new_database_path namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 64 def __init__(self, db, *args, **kwargs) :
65 self._dbcursor = db.cursor(*args, **kwargs)
399 def __init__(self, db, *args, **kwargs) :
400 self._db=db
401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs)
419 bsddb._db.DB_orig = bsddb._db.DB
420 if bsddb.db.version() <= (4, 3) :
429 bsddb.DBEnv = bsddb.db.DBEnv = bsddb._db.DBEnv = DBEnv_py3k
430 bsddb.DB = bsddb.db.DB = bsddb._db.DB = DB_py3
444 hashopen, btopen, rnopen, dbobj namespace
448 hashopen, btopen, rnopen, dbobj namespace
    [all...]
test_basics.py 3 various DB flags, etc.
14 from test_all import db, test_support, verbose, get_new_environment_path, \
24 info = db.version()
27 print 'bsddb.db.version(): %s' % (info, )
28 print db.DB_VERSION_STRING
30 self.assertEqual(info, (db.DB_VERSION_MAJOR, db.DB_VERSION_MINOR,
31 db.DB_VERSION_PATCH))
36 dbtype = db.DB_UNKNOWN # must be set in derived class
52 self.env = db.DBEnv(
15 get_new_database_path namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 36 """Support for Berkeley DB 4.3 through 5.3 with a simple interface.
38 For the full featured object oriented interface use the bsddb.db module
39 instead. It mirrors the Oracle Berkeley DB C API.
75 # bsddb3 calls it db, but provide _db for backwards compatibility
76 db = _db = _bsddb
77 __version__ = db.__version__
79 error = db.DBError # So bsddb.error will mean something...
96 cur = _DeadlockWrap(self.db.cursor)
149 if not self.db:
194 A simple wrapper around DB that makes it look like the bsddbobject i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 36 """Support for Berkeley DB 4.3 through 5.3 with a simple interface.
38 For the full featured object oriented interface use the bsddb.db module
39 instead. It mirrors the Oracle Berkeley DB C API.
75 # bsddb3 calls it db, but provide _db for backwards compatibility
76 db = _db = _bsddb
77 __version__ = db.__version__
79 error = db.DBError # So bsddb.error will mean something...
96 cur = _DeadlockWrap(self.db.cursor)
149 if not self.db:
194 A simple wrapper around DB that makes it look like the bsddbobject i
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_test.cc 5 #include "leveldb/db.h"
7 #include "db/db_impl.h"
8 #include "db/filename.h"
9 #include "db/version_set.h"
10 #include "db/write_batch_internal.h"
205 DB* db_;
285 return DB::Open(opts, dbname_, &db_);
1485 DB* db = NULL; local
1751 DB* db = t->state->test->db_; local
2069 DB* db = NULL; local
    [all...]
c.cc 11 #include "leveldb/db.h"
22 using leveldb::DB;
46 struct leveldb_t { DB* rep; };
156 DB* db; local
157 if (SaveError(errptr, DB::Open(options->rep, std::string(name), &db))) {
161 result->rep = db;
165 void leveldb_close(leveldb_t* db) {
166 delete db->rep
    [all...]
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.cc 13 #include "third_party/leveldatabase/src/include/leveldb/db.h"
55 // DB inconsistency is detected, we need to 1) make sure no new operations start
57 // close the DB and delete the data. The DB will remain empty for the rest of
340 leveldb::DB* db; local
341 leveldb::Status s = TryToOpen(&db);
345 DCHECK(db == NULL);
349 s = TryToOpen(&db);
356 DCHECK(db == NULL)
    [all...]
  /external/chromium_org/extensions/browser/value_store/
leveldb_value_store.cc 30 explicit ScopedSnapshot(leveldb::DB* db)
31 : db_(db), snapshot_(db->GetSnapshot()) {}
42 leveldb::DB* db_;
117 // All interaction with the db is done on the same thread, so snapshotting
143 // All interaction with the db is done on the same thread, so snapshotting
332 leveldb::DB* db = NULL; local
334 leveldb::DB::Open(options, db_path_.AsUTF8Unsafe(), &db)
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-redundant-test-chains.sh 98 # Make sure the signer's DB file exists.
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 9 db %2 >> 16 ; Base 23-16
10 db ((%4 & 0xF) << 4) | (%1 & 0xF ) ; p_dpl_s_type
11 db (%5 << 4) | ((%3 & 0xF0000) >> 16) ; g_db_a limit 19:16
12 db %2 >> 24 ; Base 31-24
24 db 0 ; Ist
25 db ((%4 & 0xF) << 4) | (%1 & 0xF) ; p_dpl_s_type
38 db %2 << 7
41 db (%3 << 5) | (%4 << 4) | (%5 << 3) | (%6 << 2) | (%7 << 1) | %8
46 db %2 << 7
47 db %1 >> 4
    [all...]
xdfprotect.asm 9 db ((%2 & 0xFF0000) >> 16) ; Base 16-23
10 db ((%4 & 0xF) << 4) | (%1 & 0xF ) ; p_dpl_s_type
11 db (%5 << 4) | ((%3 & 0xF0000) >> 16) ; g_db_a limit 19:16
12 db ((%2 & 0xFF000000) >> 24) ; Base 24-31
29 db 0 ; Reserved
30 db ((%4 & 0xF) << 4) | (%1 & 0xF) ; p_dpl_s_type
102 idesc32 isrP, 0x0008, 0 ; 0x01, 1 #DB, Debug Fault
140 dw isrR, 0 ; 0x01, 1 #DB, Debug Fault
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app_worker.js 34 var DBNAME = 'endurance-db';
134 var db = request.result;
135 if (db.version !== DBVERSION) {
136 error('DB version incorrect');
140 var transaction = db.transaction('sync-chunks', 'readwrite');
146 db.close();
165 var db = request.result;
166 if (db.version !== DBVERSION) {
167 error('DB version incorrect');
171 var transaction = db.transaction(['sync-chunks', 'docs'], 'readwrite')
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_registrar_unittest.cc 244 BrowserThread::DB,
309 // Take ownership of |db_thread_lock_| so that the DB thread can't acquire it.
312 // This will block the DB thread by waiting on |db_thread_lock_|.
314 BrowserThread::DB,
322 // Stop here until the DB thread gets a chance to run and block on the lock.
324 // initialize the worker on the DB thread hasn't had a chance to run yet too.
326 // for the DB worker.
340 // of the blocked DB thread and can finish the shutdown.
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
register_app_task_unittest.cc 29 #include "third_party/leveldatabase/src/include/leveldb/db.h"
81 leveldb::DB* db = NULL; local
86 leveldb::DB::Open(options, database_dir_.path().AsUTF8Unsafe(), &db);
88 return make_scoped_ptr(new LevelDBWrapper(make_scoped_ptr(db)));
91 void SetUpInitialData(LevelDBWrapper* db) {
114 db->Put(kDatabaseVersionKey,
116 PutServiceMetadataToDB(service_metadata, db);
117 PutFileMetadataToDB(sync_root_metadata, db);
253 scoped_ptr<LevelDBWrapper> db = OpenLevelDB(); local
268 scoped_ptr<LevelDBWrapper> db = OpenLevelDB(); local
284 scoped_ptr<LevelDBWrapper> db = OpenLevelDB(); local
299 scoped_ptr<LevelDBWrapper> db = OpenLevelDB(); local
    [all...]

Completed in 848 milliseconds

1 2 3 4 56 7 8 91011>>