Lines Matching full:simple
154 * get_user: - Get a simple variable from user space.
160 * This macro copies a single simple variable from user space to kernel
161 * space. It supports simple types like char and int, but not larger
164 * @ptr must have pointer-to-simple-variable type, and the result of
174 * put_user: - Write a simple value into user space.
180 * This macro copies a single simple value from kernel space to user
181 * space. It supports simple types like char and int, but not larger
184 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
193 * __get_user: - Get a simple variable from user space, with less checking.
199 * This macro copies a single simple variable from user space to kernel
200 * space. It supports simple types like char and int, but not larger
203 * @ptr must have pointer-to-simple-variable type, and the result of
273 * __put_user: - Write a simple value into user space, with less checking.
279 * This macro copies a single simple value from kernel space to user
280 * space. It supports simple types like char and int, but not larger
283 * @ptr must have pointer-to-simple-variable type, and @x must be assignable