Searched defs:access_ok (Results 1 - 4 of 4) sorted by relevance

/external/linux-tools-perf/util/include/asm/
H A Duaccess.h12 #define access_ok(type, addr, size) 1 macro
/external/kernel-headers/original/asm-arm/
H A Duaccess.h188 #define access_ok(type,addr,size) (__range_ok(addr,size) == 0) macro
193 * "access_ok()" call.
400 if (access_ok(VERIFY_READ, from, n))
409 if (access_ok(VERIFY_WRITE, to, n))
419 if (access_ok(VERIFY_WRITE, to, n))
427 if (access_ok(VERIFY_READ, src, 1))
/external/kernel-headers/original/asm-x86/
H A Duaccess_32.h65 * access_ok: - Checks if a user space pointer is valid
83 #define access_ok(type,addr,size) (likely(__range_ok(addr,size) == 0)) macro
116 * with a separate "access_ok()" call (this is used when we do multiple
241 * Caller must check the pointer with access_ok() before calling this
265 * Caller must check the pointer with access_ok() before calling this
409 * the specified block with access_ok() before calling this function.
449 * the specified block with access_ok() before calling this function.
496 * the specified block with access_ok() before calling this function.
/external/kernel-headers/original/asm-mips/
H A Duaccess.h87 * access_ok: - Checks if a user space pointer is valid
111 #define access_ok(type, addr, size) \ macro
167 * Caller must check the pointer with access_ok() before calling this
189 * Caller must check the pointer with access_ok() before calling this
238 if (likely(access_ok(VERIFY_READ, __gu_ptr, size))) \
326 if (likely(access_ok(VERIFY_WRITE, __pu_addr, size))) { \
426 * the specified block with access_ok() before calling this function.
497 if (access_ok(VERIFY_WRITE, __cu_to, __cu_len)) \
558 * the specified block with access_ok() before calling this function.
607 if (access_ok(VERIFY_REA
[all...]

Completed in 171 milliseconds