Lines Matching full:pointer
13 * pointer with the same return value.
16 * error and pointer decisions.
23 * IS_ERR_VALUE - Detect an error pointer.
24 * @x: The pointer to check.
31 * ERR_PTR - Create an error pointer.
34 * Encodes @error into a pointer value. Users should consider the result
37 * Return: A pointer with @error encoded within its value.
44 /* Return the pointer in the percpu address space. */
48 * PTR_ERR - Extract the error code from an error pointer.
49 * @ptr: An error pointer.
57 /* Read an error pointer from the percpu address space. */
61 * IS_ERR - Detect an error pointer.
62 * @ptr: The pointer to check.
63 * Return: true if @ptr is an error pointer, false otherwise.
70 /* Read an error pointer from the percpu address space. */
74 * IS_ERR_OR_NULL - Detect an error pointer or a null pointer.
75 * @ptr: The pointer to check.
77 * Like IS_ERR(), but also returns true for a null pointer.
85 * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type
86 * @ptr: The pointer to cast.
88 * Explicitly cast an error-valued pointer to another pointer type in such a
98 * PTR_ERR_OR_ZERO - Extract the error code from a pointer if it has one.
99 * @ptr: A potential error pointer.
112 * Return: The error code within @ptr if it is an error pointer; 0 otherwise.