Lines Matching full:simple
96 * put_user: - Write a simple value into user space.
102 * This macro copies a single simple value from kernel space to user
103 * space. It supports simple types like char and int, but not larger
106 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
115 * get_user: - Get a simple variable from user space.
121 * This macro copies a single simple variable from user space to kernel
122 * space. It supports simple types like char and int, but not larger
125 * @ptr must have pointer-to-simple-variable type, and the result of
135 * __put_user: - Write a simple value into user space, with less checking.
141 * This macro copies a single simple value from kernel space to user
142 * space. It supports simple types like char and int, but not larger
145 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
157 * __get_user: - Get a simple variable from user space, with less checking.
163 * This macro copies a single simple variable from user space to kernel
164 * space. It supports simple types like char and int, but not larger
167 * @ptr must have pointer-to-simple-variable type, and the result of