Lines Matching refs:db_expr_t
79 static int db_rw_internal_variable(const struct db_variable *, db_expr_t *,
152 db_rw_internal_variable(const struct db_variable *vp, db_expr_t *valp, int rw) in db_rw_internal_variable()
268 db_get_variable(db_expr_t *valuep) in db_get_variable()
281 db_set_variable(db_expr_t value) in db_set_variable()
295 db_read_variable(const struct db_variable *vp, db_expr_t *valuep) in db_read_variable()
297 int (*func)(const struct db_variable *, db_expr_t *, int) = vp->fcn; in db_read_variable()
300 *valuep = *(db_expr_t *)vp->valuep; in db_read_variable()
306 db_write_variable(const struct db_variable *vp, db_expr_t *valuep) in db_write_variable()
308 int (*func)(const struct db_variable *, db_expr_t *, int) = vp->fcn; in db_write_variable()
311 *(db_expr_t *)vp->valuep = *valuep; in db_write_variable()
318 db_set_cmd(db_expr_t addr, bool have_addr, in db_set_cmd()
319 db_expr_t count, const char *modif) in db_set_cmd()
321 db_expr_t value; in db_set_cmd()
322 db_expr_t old_value; in db_set_cmd()