Lines Matching full:simple
130 * get_user: - Get a simple variable from user space.
136 * This macro copies a single simple variable from user space to kernel
137 * space. It supports simple types like char and int, but not larger
140 * @ptr must have pointer-to-simple-variable type, and the result of
234 * put_user: - Write a simple value into user space.
240 * This macro copies a single simple value from kernel space to user
241 * space. It supports simple types like char and int, but not larger
244 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
470 * __get_user: - Get a simple variable from user space, with less checking.
476 * This macro copies a single simple variable from user space to kernel
477 * space. It supports simple types like char and int, but not larger
480 * @ptr must have pointer-to-simple-variable type, and the result of
494 * __put_user: - Write a simple value into user space, with less checking.
500 * This macro copies a single simple value from kernel space to user
501 * space. It supports simple types like char and int, but not larger
504 * @ptr must have pointer-to-simple-variable type, and @x must be assignable