Lines Matching full:simple
60 * put_user: - Write a simple value into user space.
66 * This macro copies a single simple value from kernel space to user
67 * space. It supports simple types like char and int, but not larger
70 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
78 * get_user: - Get a simple variable from user space.
84 * This macro copies a single simple variable from user space to kernel
85 * space. It supports simple types like char and int, but not larger
88 * @ptr must have pointer-to-simple-variable type, and the result of
97 * __put_user: - Write a simple value into user space, with less checking.
103 * This macro copies a single simple value from kernel space to user
104 * space. It supports simple types like char and int, but not larger
107 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
118 * __get_user: - Get a simple variable from user space, with less checking.
124 * This macro copies a single simple variable from user space to kernel
125 * space. It supports simple types like char and int, but not larger
128 * @ptr must have pointer-to-simple-variable type, and the result of