Home
last modified time | relevance | path

Searched refs:mwd (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/cmd/mdb/common/modules/genunix/
H A Dmodhash.c279 mod_walk_data_t *mwd = private; in modent_format() local
283 if (msd->msd_position > mwd->mwd_maxposn) { in modent_format()
284 mwd->mwd_maxposn = msd->msd_position; in modent_format()
285 mwd->mwd_maxidx = msd->msd_hash_index; in modent_format()
286 mwd->mwd_maxaddr = msd->msd_first_addr; in modent_format()
290 if (mwd->mwd_idxtoprint != (uintptr_t)-1) { in modent_format()
292 if (mwd->mwd_idxtoprint == msd->msd_hash_index) in modent_format()
293 mwd->mwd_addr = msd->msd_first_addr; in modent_format()
299 if (mwd->mwd_opt_k_set && in modent_format()
300 (uintptr_t)msd->msd_mhe.mhe_key != mwd->mwd_opt_k) in modent_format()
[all …]
/titanic_44/usr/src/cmd/mdb/common/modules/krtld/
H A Dkrtld.c45 struct modctl_walk_data *mwd = mdb_alloc( in modctl_walk_init() local
48 mwd->mwd_head = (wsp->walk_addr == NULL ? module_head : wsp->walk_addr); in modctl_walk_init()
49 wsp->walk_data = mwd; in modctl_walk_init()
58 struct modctl_walk_data *mwd = wsp->walk_data; in modctl_walk_step() local
61 if (wsp->walk_addr == mwd->mwd_head) in modctl_walk_step()
65 wsp->walk_addr = mwd->mwd_head; in modctl_walk_step()
67 if (mdb_vread(&mwd->mwd_modctl, sizeof (struct modctl), in modctl_walk_step()
73 status = wsp->walk_callback(wsp->walk_addr, &mwd->mwd_modctl, in modctl_walk_step()
76 wsp->walk_addr = (uintptr_t)mwd->mwd_modctl.mod_next; in modctl_walk_step()