/external/perfetto/test/trace_processor/ |
span_left_join_left_partitioned.sql | 7 ) without rowid; 14 ) without rowid;
|
span_join_unordered_cols.sql | 7 ) without rowid; 23 ) without rowid;
|
span_join_unordered_cols_reverse.sql | 7 ) without rowid; 23 ) without rowid;
|
span_left_join_unpartitioned.sql | 6 ) without rowid; 13 ) without rowid;
|
span_left_join.sql | 7 ) without rowid; 15 ) without rowid;
|
span_left_join_left_unpartitioned.sql | 6 ) without rowid; 14 ) without rowid;
|
span_outer_join.sql | 7 ) without rowid; 15 ) without rowid;
|
b120487929.sql | 36 where rowid = 0
|
/external/wpa_supplicant_8/hs20/server/www/ |
cert-enroll.php | 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 23 $rowid = $row['rowid']; variable 28 if (!$db->exec("UPDATE sessions SET user='$user', type='cert' WHERE rowid=$rowid")) {
|
remediation-pw.php | 20 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 28 $rowid = $row['rowid']; variable 30 if (!$db->exec("UPDATE sessions SET password='$pw' WHERE rowid=$rowid")) {
|
add-free.php | 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 23 $rowid = $row['rowid']; variable 39 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', machine_managed='1' WHERE rowid=$rowid")) {
|
add-mo.php | 28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 43 $rowid = $row['rowid']; variable 45 if (!$db->exec("UPDATE sessions SET user='$user', password='$pw', realm='$realm', type='password' WHERE rowid=$rowid")) {
|
est.php | 11 unset($rowid); 40 $sql = "SELECT rowid,password,operation FROM sessions " . 52 $rowid = $row['rowid']; variable 77 $sql = "SELECT rowid,password,operation FROM sessions " . 89 $rowid = $row['rowid']; variable 214 if (!$db->exec("UPDATE sessions SET user='$user', cert='$fingerprint', cert_pem='$cert' WHERE rowid=$rowid")) {
|
/external/python/cpython2/Lib/bsddb/ |
dbtables.py | 123 _data = '._DATA_.' # this+column+this+rowid key contains table data 124 _rowid = '._ROWID_.' # this+rowid+this key contains a unique entry for each 126 _rowid_str_len = 8 # length in bytes of the unique rowid strings 129 def _data_key(table, col, rowid): 130 return table + _data + col + _data + rowid 138 def _rowid_key(table, rowid): 139 return table + _rowid + rowid + _rowid 499 rowid = self.__new_rowid(table, txn=txn) 504 self.db.put(_data_key(table, column, rowid), dataitem, txn=txn) 517 self.db.delete(_rowid_key(table, rowid)) [all...] |
/external/tensorflow/tensorflow/core/summary/ |
summary_db_writer.cc | 643 int64 rowid = rowids_.front(); local 644 Status s = Write(db, rowid, step, computed_time, t); 659 DELETE FROM Tensors WHERE rowid = ? 675 Status Write(Sqlite* db, int64 rowid, int64 step, double computed_time, 679 return Update(db, step, computed_time, t, t.scalar<string>()(), rowid); 683 Update(db, step, computed_time, t, StringPiece(), rowid)); 684 TF_RETURN_IF_ERROR(UpdateNdString(db, t, rowid)); 688 return Update(db, step, computed_time, t, t.tensor_data(), rowid); 693 const StringPiece& data, int64 rowid) { 704 rowid = [all...] |
/external/perfetto/src/trace_processor/ |
trace_storage.h | 55 // Intentionally don't have TableId == 0 so that RowId == 0 can refer to an 65 using RowId = int64_t; 66 static const RowId kInvalidRowId = 0; 152 RowId row_id = 0; 516 inline RowId AddRawEvent(int64_t timestamp, 838 static RowId CreateRowId(TableId table, uint32_t row) { 839 return (static_cast<RowId>(table) << kRowIdTableShift) | row; 842 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) { 843 auto id = static_cast<uint64_t>(rowid); [all...] |
/external/sqlite/dist/orig/ |
shell.c | [all...] |
sqlite3.c | 85249 i64 rowid; \/* Rowid that P1 current points to *\/ local 86853 sqlite_int64 rowid; local 199895 i64 rowid = pIter->iRowid; local 206662 i64 rowid; \/* This table's current rowid value *\/ member in struct:Fts5VocabCursor [all...] |
/external/sqlite/dist/ |
shell.c | [all...] |
sqlite3.c | 85265 i64 rowid; \/* Rowid that P1 current points to *\/ local 86869 sqlite_int64 rowid; local 199923 i64 rowid = pIter->iRowid; local 206690 i64 rowid; \/* This table's current rowid value *\/ member in struct:Fts5VocabCursor [all...] |