HomeSort by relevance Sort by last modified time
    Searched defs:DB (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/chrome/browser/predictors/
predictor_table_base.cc 21 void PredictorTableBase::Initialize(sql::Connection* db) {
22 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
23 db_ = db;
31 sql::Connection* PredictorTableBase::DB() {
32 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
37 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
42 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
db.h 24 // Abstract handle to particular state of a DB.
41 // A DB is a persistent ordered map from keys to values.
42 // A DB is safe for concurrent access from multiple threads without
44 class DB {
53 DB** dbptr);
55 DB() { }
56 virtual ~DB();
91 // The returned iterator should be deleted before this db is deleted.
94 // Return a handle to the current DB state. Iterators created with
95 // this handle will all observe a stable snapshot of the current DB
    [all...]
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_oaep_decode.c 39 unsigned char *DB, *seed, *mask;
63 /* allocate ram for DB/mask/salt of size modulus_len */
64 DB = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || seed == NULL) {
68 if (DB != NULL) {
69 XFREE(DB);
99 /* now read the masked DB */
100 XMEMCPY(DB, msg + x, modulus_len - hLen - 1);
104 if ((err = pkcs_1_mgf1(hash_idx, DB, modulus_len - hLen - 1, mask, hLen)) != CRYPT_OK) {
118 /* xor against DB */
    [all...]
pkcs_1_oaep_encode.c 40 unsigned char *DB, *seed, *mask;
66 /* allocate ram for DB/mask/salt of size modulus_len */
67 DB = XMALLOC(modulus_len);
70 if (DB == NULL || mask == NULL || seed == NULL) {
71 if (DB != NULL) {
72 XFREE(DB);
84 /* DB == lhash || PS || 0x01 || M, PS == k - mlen - 2hlen - 2 zeroes */
87 if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) {
91 /* can't pass hash_memory a NULL so use DB with zero length */
92 if ((err = hash_memory(hash_idx, DB, 0, DB, &x)) != CRYPT_OK)
    [all...]
pkcs_1_pss_decode.c 37 unsigned char *DB, *mask, *salt, *hash;
62 /* allocate ram for DB/mask/salt/hash of size modulus_len */
63 DB = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) {
68 if (DB != NULL) {
69 XFREE(DB);
89 /* copy out the DB */
91 XMEMCPY(DB, sig + x, modulus_len - hLen - 1);
109 /* xor against DB */
111 DB[y] ^= mask[y]
    [all...]
pkcs_1_pss_encode.c 39 unsigned char *DB, *mask, *salt, *hash;
64 /* allocate ram for DB/mask/salt/hash of size modulus_len */
65 DB = XMALLOC(modulus_len);
69 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) {
70 if (DB != NULL) {
71 XFREE(DB);
98 zeromem(DB, 8);
99 if ((err = hash_descriptor[hash_idx].process(&md, DB, 8)) != CRYPT_OK) {
112 /* generate DB = PS || 0x01 || salt, PS == modulus_len - saltlen - hLen - 2 zero bytes */
114 XMEMSET(DB + x, 0, modulus_len - saltlen - hLen - 2)
    [all...]
  /development/scripts/
add-accounts 32 DB = "/data/data/com.google.android.googleapps/databases/accounts.db"
55 "/system/bin/ls", DB)
81 db = DbExists(adb_flags)
82 if db is None:
87 if db:
add-accounts-sdk 32 DB = "/data/data/com.google.android.googleapps/databases/accounts.db"
52 args = ("adb",) + adb_flags + ("shell", "/system/bin/ls", DB)
78 db = DbExists(adb_flags)
79 if db is None:
84 if db:
  /ndk/sources/host-tools/make-3.81/
debug.h 38 #define DB(_l,_x) do{ if(ISDB(_l)) {printf _x; fflush (stdout);} }while(0)
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_pss.c 87 unsigned char *DB = NULL;
136 DB = OPENSSL_malloc(maskedDBLen);
137 if (!DB)
142 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
145 DB[i] ^= EM[i];
147 DB[0] &= 0xFF >> (8 - MSBits);
148 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ;
149 if (DB[i++] != 0x1)
165 if (!EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i))
179 if (DB)
    [all...]
  /external/openssl/crypto/rsa/
rsa_pss.c 87 unsigned char *DB = NULL;
136 DB = OPENSSL_malloc(maskedDBLen);
137 if (!DB)
142 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, mgf1Hash) < 0)
145 DB[i] ^= EM[i];
147 DB[0] &= 0xFF >> (8 - MSBits);
148 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ;
149 if (DB[i++] != 0x1)
165 if (!EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i))
179 if (DB)
    [all...]
  /external/chromium_org/content/public/browser/
browser_thread.h 65 DB,
263 struct DeleteOnDBThread : public DeleteOnThread<DB> { };
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 38 if (CompilationDatabase *DB =
40 return DB;
56 if (CompilationDatabase *DB =
58 return DB;
78 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(Directory,
81 if (!DB)
84 return DB;
92 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(AbsolutePath,
95 if (!DB)
98 return DB;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_db.py 4 from test_all import db, test_support, get_new_environment_path, \
9 class DB(unittest.TestCase):
12 self.db = db.DB()
15 self.db.close()
16 del self.db
19 class DB_general(DB) :
21 self.db.open(self.path, dbtype=db.DB_HASH, flags = db.DB_CREATE
5 get_new_database_path namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_db.py 4 from test_all import db, test_support, get_new_environment_path, \
9 class DB(unittest.TestCase):
12 self.db = db.DB()
15 self.db.close()
16 del self.db
19 class DB_general(DB) :
21 self.db.open(self.path, dbtype=db.DB_HASH, flags = db.DB_CREATE
5 get_new_database_path namespace
    [all...]
  /external/mksh/src/
tree.c 895 #define DB(x) if (iop->flag & x) shf_puts("|" #x, shf);
908 DB(IOEVAL)
909 DB(IOSKIP)
910 DB(IOCLOB)
911 DB(IORDUP)
912 DB(IONAMEXP)
913 DB(IOBASH)
914 DB(IOHERESTR)
915 DB(IONDELIM)
937 #undef DB
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 690 DiagnosticBuilder DB =
696 if (DB.hasMaxRanges())
698 DB << *Range;
706 DiagnosticBuilder DB = Diag(MacroName, diag::note_suggest_parens_for_macro);
710 if (DB.hasMaxFixItHints())
712 DB << FixItHint::CreateInsertion(ParenLocation->getBegin(), "(");
713 if (DB.hasMaxFixItHints())
715 DB << FixItHint::CreateInsertion(ParenLocation->getEnd(), ")");
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 240 DiagnosticBuilder DB
251 DB << SourceRange(Locations[I]);
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 46 MAP(DB, 55) \
78 D8 = 3, D9 = 4, DA = 5, DB = 6,
    [all...]
  /frameworks/base/services/java/com/android/server/
Watchdog.java 56 static final boolean DB = false;
61 static final long DEFAULT_TIMEOUT = DB ? 10*1000 : 60*1000;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 2 # This file contains real Python object wrappers for DB and DBEnv
28 exec("from . import db") namespace
30 import db namespace
40 self._cobj = db.DBEnv(*args, **kwargs)
64 if db.version() < (4,5):
115 if db.version() >= (4,4):
123 class DB(MutableMapping):
126 self._cobj = db.DB(*((dbenv._cobj,) + args), **kwargs)
237 self._cobj = db.DBSequence(*args, **kwargs
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbobj.py 2 # This file contains real Python object wrappers for DB and DBEnv
28 exec("from . import db") namespace
30 import db namespace
40 self._cobj = db.DBEnv(*args, **kwargs)
64 if db.version() < (4,5):
115 if db.version() >= (4,4):
123 class DB(MutableMapping):
126 self._cobj = db.DB(*((dbenv._cobj,) + args), **kwargs)
237 self._cobj = db.DBSequence(*args, **kwargs
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 47 IB, IA, DB, DA
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 5 #include "db/db_impl.h"
13 #include "db/builder.h"
14 #include "db/db_iter.h"
15 #include "db/dbformat.h"
16 #include "db/filename.h"
17 #include "db/log_reader.h"
18 #include "db/log_writer.h"
19 #include "db/memtable.h"
20 #include "db/table_cache.h"
21 #include "db/version_set.h
    [all...]
  /external/harfbuzz/src/
harfbuzz-shaper.cpp 47 EX->AL from DB to IB
48 SY->AL from DB to IB
49 SY->PO from DB to IB
50 SY->PR from DB to IB
51 SY->OP from DB to IB
52 AL->PR from DB to IB
53 AL->PO from DB to IB
54 PR->PR from DB to IB
55 PO->PO from DB to IB
56 PR->PO from DB to I
    [all...]

Completed in 6127 milliseconds

1 2