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

1 2 3 4 5 6

  /external/dropbear/libtomcrypt/src/pk/pkcs1/
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_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_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...]
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...]
  /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...]
  /external/chromium/chrome/browser/sync/glue/
database_model_worker.cc 15 if (BrowserThread::CurrentlyOn(BrowserThread::DB)) {
16 DLOG(WARNING) << "DoWorkAndWaitUntilDone called from the DB thread.";
21 if (!BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
24 NOTREACHED() << "Failed to post task to the db thread.";
32 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
42 return BrowserThread::CurrentlyOn(BrowserThread::DB);
autofill_data_type_controller.cc 80 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
103 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
119 // complete, we need to abort the association and wait for the DB
148 if (BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
158 LOG(FATAL) << "AutofillDataTypeController::Stop() called after DB thread"
202 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
251 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
286 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
298 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
307 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
    [all...]
database_model_worker_unittest.cc 25 db_thread_(BrowserThread::DB),
36 // Schedule DoWork to be executed on the DB thread and have the test fail if
46 // This is the work that will be scheduled to be done on the DB thread.
48 EXPECT_TRUE(BrowserThread::CurrentlyOn(BrowserThread::DB));
58 ADD_FAILURE() << "Timed out waiting for work to be done on the DB thread.";
  /external/webkit/Source/WebCore/platform/leveldb/
LevelDBDatabase.h 37 class DB;
59 OwnPtr<leveldb::DB> m_db;
  /external/chromium/chrome/browser/history/
top_sites_backend.cc 21 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
27 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
39 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
48 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
56 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
63 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
73 BrowserThread::DB, FROM_HERE, NewRunnableMethod(
82 // nulling out db).
86 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
94 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
    [all...]
  /tools/motodev/src/plugins/db.devices/
plugin.properties 30 action_filter_db_application_node=&Filter applications without DB
36 command_filter_db_application_node=Filter applications without DB
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 38 if (CompilationDatabase *DB =
40 return DB;
55 if (CompilationDatabase *DB =
57 return DB;
73 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(Directory,
76 if (!DB)
79 return DB;
87 CompilationDatabase *DB = findCompilationDatabaseFromDirectory(AbsolutePath,
90 if (!DB)
93 return DB;
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 278 void Emit(const DiagnosticBuilder &DB) const {
286 DB.AddString(DiagStorage->DiagArgumentsStr[i]);
288 DB.AddTaggedVal(DiagStorage->DiagArgumentsVal[i],
294 DB.AddSourceRange(DiagStorage->DiagRanges[i]);
298 DB.AddFixItHint(DiagStorage->FixItHints[i]);
305 DiagnosticBuilder DB(Diags.Report(getDiagID()));
306 Emit(DB);
307 DB.FlushCounts();
309 DB.Clear();
368 inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
    [all...]
Diagnostic.h     [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/chrome/browser/net/
sqlite_persistent_cookie_store_unittest.cc 22 db_thread_(BrowserThread::DB) {
55 new ThreadTestHelper(BrowserThread::DB));
72 new ThreadTestHelper(BrowserThread::DB));
87 new ThreadTestHelper(BrowserThread::DB));
118 // whether the DB file has been modified by checking its size.
124 // Write some large cookies, so the DB will have to expand by several KB.
126 // Each cookie needs a unique timestamp for creation_utc (see DB schema).
136 // Call Flush() and wait until the DB thread is idle.
139 new ThreadTestHelper(BrowserThread::DB));
175 new ThreadTestHelper(BrowserThread::DB));
    [all...]
sqlite_persistent_cookie_store.cc 36 DbThread() : base::Thread("android-db") {
159 // If you open the DB with an older version on Mac or Linux, the times will
172 bool InitTable(sql::Connection* db) {
173 if (!db->DoesTableExist("cookies")) {
174 if (!db->Execute("CREATE TABLE cookies ("
197 db->Execute(
212 // DB thread as part of http://crbug.com/52909.)
222 NOTREACHED() << "Unable to open cookie DB.";
234 NOTREACHED() << "Unable to open cookie DB.";
382 DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::DB));
    [all...]
  /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/chrome/browser/password_manager/
password_store_x_unittest.cc 50 // the DB thread.
60 BrowserThread::DB,
67 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
79 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
275 db_thread_(BrowserThread::DB) {
350 // The WDS schedules tasks to run on the DB thread so we schedule yet another
353 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
369 // Again, the WDS schedules tasks to run on the DB thread, so schedule a task
371 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
415 // Wait for the WDS methods to execute on the DB thread
    [all...]
password_store_default_unittest.cc 53 // the DB thread.
63 BrowserThread::DB,
72 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
84 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
104 db_thread_(BrowserThread::DB) {
185 // The PasswordStore schedules tasks to run on the DB thread so we schedule
188 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
280 // The WDS schedules tasks to run on the DB thread so we schedule yet another
283 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE,
297 // Again, the WDS schedules tasks to run on the DB thread, so schedule a tas
    [all...]
password_store_win.cc 88 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
97 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
107 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
132 // Add this PasswordForm to the saved password table. We're on the DB thread
143 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
177 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
188 BrowserThread::DB, FROM_HERE,
194 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
  /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:
  /external/webkit/LayoutTests/storage/
open-database-while-transaction-in-progress.js 12 // lock on the DB file before trying to obtain a second handle to the same DB.
32 // Clean up the DB to allow for repeated runs of this test
  /frameworks/base/services/java/com/android/server/
Watchdog.java 51 static final boolean DB = false;
58 static final int TIME_TO_RESTART = DB ? 15*1000 : 60*1000;
61 static final int MEMCHECK_DEFAULT_MIN_SCREEN_OFF = DB ? 1*60 : 5*60; // 5 minutes
62 static final int MEMCHECK_DEFAULT_MIN_ALARM = DB ? 1*60 : 3*60; // 3 minutes
63 static final int MEMCHECK_DEFAULT_RECHECK_INTERVAL = DB ? 1*60 : 5*60; // 5 minutes
65 static final int REBOOT_DEFAULT_INTERVAL = DB ? 1 : 0; // never force reboot
254 if (DB || mReqRebootNoWait ||

Completed in 972 milliseconds

1 2 3 4 5 6