• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db_codegen/

Lines Matching defs:cur_db

27 	DB_OBJ *cur_db;
47 TAILQ_FOREACH(cur_db, &cur_env->dbq, q)
48 if (cur_db->primary != NULL)
49 api_c_callback(cur_db);
53 TAILQ_FOREACH(cur_db, &cur_env->dbq, q)
54 if (cur_db->key_type != NULL)
55 api_c_compare(cur_db);
99 DB_OBJ *cur_db;
116 TAILQ_FOREACH(cur_db, &cur_env->dbq, q)
120 cur_db->name);
124 cur_env->prefix, cur_db->name);
137 DB_OBJ *cur_db;
193 TAILQ_FOREACH(cur_db, &cur_env->dbq, q) {
202 cur_db->name : cur_env->prefix,
204 cur_env->prefix == NULL ? "" : cur_db->name,
205 cur_db->name,
206 cur_db->dbtype,
207 (u_long)cur_db->extentsize,
208 (u_long)cur_db->pagesize,
209 (u_long)cur_db->re_len,
210 cur_db->key_type == NULL ? "NULL" : "bdb_",
211 cur_db->key_type == NULL ? "" : cur_db->key_type,
212 cur_db->key_type == NULL ? "" : "_compare",
213 cur_db->primary == NULL ? "NULL" : "&",
214 cur_db->primary == NULL ? "" : cur_env->prefix,
215 cur_db->primary == NULL ? "" : "_",
216 cur_db->primary == NULL ? "" : cur_db->primary,
217 cur_db->primary == NULL ? "NULL" : "bdb_",
218 cur_db->primary == NULL ? "" : cur_db->name,
219 cur_db->primary == NULL ? "" : "_callback",
220 cur_db->dupsort,
221 cur_db->recnum,
222 cur_db->transaction);
516 api_c_callback(cur_db)
517 DB_OBJ *cur_db;
522 {\n", cur_db->name);
524 if (cur_db->custom) {
529 }\n", cur_db->name);
532 cur_db->name);
538 }\n", cur_db->secondary_off, cur_db->secondary_len);
542 api_c_compare(cur_db)
543 DB_OBJ *cur_db;
556 if (t_db == cur_db)
560 if (strcasecmp(t_db->key_type, cur_db->key_type) == 0)
578 }\n", cur_db->key_type, cur_db->key_type, cur_db->key_type);