Lines Matching full:simple
28 * get_user: - Get a simple variable from user space.
35 * This macro copies a single simple variable from user space to kernel
36 * space. It supports simple types like char and int, but not larger
39 * @ptr must have pointer-to-simple-variable type, and the result of
55 * put_user: - Write a simple value into user space.
62 * This macro copies a single simple value from kernel space to user
63 * space. It supports simple types like char and int, but not larger
66 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
80 * __get_user: - Get a simple variable from user space, with less checking.
87 * This macro copies a single simple variable from user space to kernel
88 * space. It supports simple types like char and int, but not larger
91 * @ptr must have pointer-to-simple-variable type, and the result of
110 * __put_user: - Write a simple value into user space, with less checking.
117 * This macro copies a single simple value from kernel space to user
118 * space. It supports simple types like char and int, but not larger
121 * @ptr must have pointer-to-simple-variable type, and @x must be assignable