Searched defs:odb (Results 1 - 9 of 9) sorted by relevance

/external/oprofile/libdb/
H A Ddb_travel.c11 #include "odb.h"
13 odb_node_t * odb_get_iterator(odb_t const * odb, odb_node_nr_t * nr) argument
16 *nr = odb->data->descr->current_size - 1;
17 return odb->data->node_base + 1;
H A Ddb_debug.c15 #include "odb.h"
89 int odb_check_hash(odb_t const * odb) argument
96 odb_data_t * data = odb->data;
H A Ddb_insert.c18 #include "odb.h"
52 int odb_update_node(odb_t * odb, odb_key_t key) argument
54 return odb_update_node_with_offset(odb, key, 1);
57 int odb_update_node_with_offset(odb_t * odb, argument
65 data = odb->data;
106 int odb_add_node(odb_t * odb, odb_key_t key, odb_value_t value) argument
108 return add_node(odb->data, key, value);
H A Ddb_stat.c14 #include "odb.h"
28 odb_hash_stat_t * odb_hash_stat(odb_t const * odb) argument
34 odb_data_t * data = odb->data;
H A Ddb_manage.c27 #include "odb.h"
124 void odb_init(odb_t * odb) argument
126 odb->data = NULL;
166 int odb_open(odb_t * odb, char const * filename, enum odb_rw rw, argument
181 odb->data = data;
253 odb->data = data;
262 odb->data = NULL;
267 void odb_close(odb_t * odb) argument
269 odb_data_t * data = odb->data;
281 odb
287 odb_open_count(odb_t const * odb) argument
295 odb_get_data(odb_t * odb) argument
301 odb_sync(odb_t const * odb) argument
[all...]
/external/clearsilver/python/examples/base/
H A Dodb_mysql.py12 import odb namespace
15 class Database(odb.Database):
17 odb.Database.__init__(self, db, debug=debug)
H A Dodb_sqlite.py11 import odb namespace
32 class Database(odb.Database):
34 odb.Database.__init__(self, db, debug=debug)
H A Dhdfhelp.py8 # This code makes using odb with Clearsilver as "easy as stealing candy
22 # class AgentsTable(odb.Table):
40 import odb namespace
87 class HdfRow(odb.Row):
99 col_type = odb.kVarString
112 if col_type == odb.kReal:
169 class HDF_Database(odb.Database):
/external/clearsilver/python/examples/trans/
H A Dtrans.py11 import odb namespace
422 except odb.eNoMatchingRows:
534 except odb.eNoMatchingRows:

Completed in 96 milliseconds