Lines Matching defs:regset
1726 #include <linux/regset.h>
1748 * When a regset has a writeback hook, we call it on each thread before
1753 const struct user_regset *regset)
1755 if (regset->writeback)
1756 regset->writeback(task, regset, 1);
1774 * NT_PRSTATUS is the one special case, because the regset data
1776 * than being the whole note contents. We fill the regset in here.
1777 * We assume that regset 0 is NT_PRSTATUS.
1790 * Each other regset might generate a note too. For each regset
1795 const struct user_regset *regset = &view->regsets[view_iter];
1796 int note_type = regset->core_note_type;
1801 do_thread_regset_writeback(t->task, regset);
1804 if (regset->active && regset->active(t->task, regset) <= 0)
1807 ret = regset_get_alloc(t->task, regset, ~0U, &data);
1882 * Sanity check. We rely on regset 0 being in NT_PRSTATUS,