Lines Matching refs:regset
1724 #include <linux/regset.h>
1745 * When a regset has a writeback hook, we call it on each thread before
1750 const struct user_regset *regset)
1752 if (regset->writeback)
1753 regset->writeback(task, regset, 1);
1772 * NT_PRSTATUS is the one special case, because the regset data
1775 * 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[i];
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);
1854 * Sanity check. We rely on regset 0 being in NT_PRSTATUS,