Searched refs:DBObject (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Modules/ |
D | bsddb.h | 128 struct DBObject; /* Forward declaration */ 144 struct DBObject *children_dbs; 155 typedef struct DBObject { struct 165 struct DBObject **sibling_prev_p; argument 166 struct DBObject *sibling_next; argument 167 struct DBObject **sibling_prev_p_txn; argument 168 struct DBObject *sibling_next_txn; argument 175 } DBObject; typedef 185 DBObject* mydb; 200 struct DBObject *children_dbs; [all …]
|
D | _bsddb.c | 372 static int _DB_get_type(DBObject* self) in _DB_get_type() 411 make_key_dbt(DBObject* self, PyObject* keyobj, DBT* key, int* pflags) in make_key_dbt() 758 static int _DB_delete(DBObject* self, DB_TXN *txn, DBT *key, int flags) in _DB_delete() 774 static int _DB_put(DBObject* self, DB_TXN *txn, DBT *key, DBT *data, int flags) in _DB_put() 895 static DBObject* 898 DBObject* self; in newDBObject() 902 self = PyObject_New(DBObject, &DB_Type); in newDBObject() 964 static PyObject *DB_close_internal(DBObject* self, int flags, int do_not_close); 967 DB_dealloc(DBObject* self) in DB_dealloc() 1002 newDBCursorObject(DBC* dbc, DBTxnObject *txn, DBObject* db) in newDBCursorObject() [all …]
|
/external/autotest/scheduler/ |
D | scheduler_models.py | 118 class DBObject(object): class 142 return super(DBObject, cls).__new__(cls, id=id, **kwargs) 341 class IneligibleHostQueue(DBObject): 346 class AtomicGroup(DBObject): 352 class Label(DBObject): 363 class Host(DBObject): 481 class HostQueueEntry(DBObject): 969 class Job(DBObject):
|
D | scheduler_models_unittest.py | 30 scheduler_models.DBObject._clear_instance_cache() 76 class TestTable(scheduler_models.DBObject): 123 scheduler_models.DBObject._clear_instance_cache()
|
D | monitor_db_unittest.py | 104 scheduler_models.DBObject._clear_instance_cache()
|