Lines Matching defs:valuep
87 .valuep = &db_fromconsole,
93 .valuep = &db_maxoff,
99 .valuep = &db_max_width,
105 .valuep = &db_max_line,
111 .valuep = &db_onpanic,
117 .valuep = &db_panicstackframes,
123 .valuep = &db_dumpstack,
129 .valuep = &db_radix,
135 .valuep = &db_tab_stop_width,
141 .valuep = &db_tee_msgbuf,
156 *valp = *(int *)vp->valuep;
158 *(int *)vp->valuep = *valp;
268 db_get_variable(db_expr_t *valuep)
275 db_read_variable(vp, valuep);
295 db_read_variable(const struct db_variable *vp, db_expr_t *valuep)
300 *valuep = *(db_expr_t *)vp->valuep;
302 (*func)(vp, valuep, DB_VAR_GET);
306 db_write_variable(const struct db_variable *vp, db_expr_t *valuep)
311 *(db_expr_t *)vp->valuep = *valuep;
313 (*func)(vp, valuep, DB_VAR_SET);