Lines Matching defs:addr

201 	db_expr_t	addr, count;
208 addr = (db_expr_t)db_next;
249 * command [/modifier] [addr] [,count]
265 if (db_expression(&addr)) {
266 db_dot = (vaddr_t) addr;
270 addr = (db_expr_t) db_dot;
291 (*cmd->fcn)(addr, have_addr, count, modif);
313 db_buf_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
320 vfs_buf_print((void *) addr, full, db_printf);
324 db_map_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
331 uvm_map_printit((struct vm_map *) addr, full, db_printf);
335 db_malloc_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
341 db_mbuf_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
345 m_print_packet((void *)addr, 1, db_printf);
347 m_print_chain((void *)addr, 0, db_printf);
349 m_print_packet((void *)addr, 0, db_printf);
351 m_print((void *)addr, db_printf);
355 db_socket_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
357 so_print((void *)addr, db_printf);
361 db_mount_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
368 vfs_mount_print((struct mount *) addr, full, db_printf);
372 db_show_all_mounts(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
388 db_show_all_vnodes(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
400 db_show_all_bufs(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
412 db_show_all_tdbs(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
424 db_show_all_routes(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
429 rtableid = addr;
443 db_show_route(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
445 db_show_rtentry((void *)addr, NULL, -1);
449 db_object_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
456 uvm_object_printit((struct uvm_object *) addr, full, db_printf);
460 db_page_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
467 uvm_page_printit((struct vm_page *) addr, full, db_printf);
471 db_vnode_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
478 vfs_vnode_print((void *)addr, full, db_printf);
483 db_nfsreq_print_cmd(db_expr_t addr, int have_addr, db_expr_t count,
491 nfs_request_print((void *)addr, full, db_printf);
495 db_nfsnode_print_cmd(db_expr_t addr, int have_addr, db_expr_t count,
503 nfs_node_print((void *)addr, full, db_printf);
508 db_swap_print_cmd(db_expr_t addr, int have_addr, db_expr_t count,
515 db_show_panic_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
535 db_extent_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
541 db_pool_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
543 pool_printit((struct pool *)addr, modif, db_printf);
547 db_proc_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
550 addr = (db_expr_t)curproc;
552 addr = (db_expr_t)tfind((pid_t)addr);
553 if (addr == 0) {
559 proc_printit((struct proc *)addr, modif, db_printf);
564 db_tdb_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
571 tdb_printit((void *)addr, full, db_printf);
576 db_uvmexp_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
584 db_bcstats_print_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
708 db_help_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
767 db_fncall(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
831 db_boot_sync_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
837 db_boot_crash_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
843 db_boot_dump_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
849 db_boot_halt_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
855 db_boot_reboot_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
861 db_boot_poweroff_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
867 db_dmesg_cmd(db_expr_t addr, int haddr, db_expr_t count, char *modif)
888 db_stack_trace_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
890 db_stack_trace_print(addr, have_addr, count, modif, db_printf);
894 db_show_regs(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
925 vaddr_t addr;
931 addr = (vaddr_t) address;
956 old_value = db_get_value(addr, size, 0);
957 db_printsym(addr, DB_STGY_ANY, db_printf);
962 db_put_value(addr, size, new_value);
963 addr += size;
973 db_next = addr;
974 db_prev = addr - size;