Lines Matching refs:bhc
2819 bufctl_history_cb_t *bhc = arg;
2821 bhc->bhc_ret =
2822 bufctl(addr, bhc->bhc_flags, bhc->bhc_argc, bhc->bhc_argv);
2824 bhc->bhc_flags &= ~DCMD_LOOPFIRST;
2826 return ((bhc->bhc_ret == DCMD_OK)? WALK_NEXT : WALK_DONE);
2886 bufctl_history_cb_t bhc;
2899 bhc.bhc_flags = flags | DCMD_LOOP | DCMD_LOOPFIRST;
2900 bhc.bhc_argc = argc + 1;
2901 bhc.bhc_argv = nargv;
2902 bhc.bhc_ret = DCMD_OK;
2904 if (mdb_pwalk("bufctl_history", bufctl_history_callback, &bhc,
2910 if (bhc.bhc_ret == DCMD_OK && !(flags & DCMD_PIPE_OUT))
2913 return (bhc.bhc_ret);