Searched defs:PAGE_SIZE (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/private/
H A DWriteProtected.h34 char padding[PAGE_SIZE];
38 } __attribute__((aligned(PAGE_SIZE)));
45 static_assert(sizeof(T) < PAGE_SIZE, member in class:WriteProtected
46 "WriteProtected only supports contents up to PAGE_SIZE");
60 if (mprotect(&contents, PAGE_SIZE, PROT_READ)) {
75 if (mprotect(&contents, PAGE_SIZE, PROT_READ | PROT_WRITE) != 0) {
80 if (mprotect(&contents, PAGE_SIZE, PROT_READ) != 0) {
/bionic/libc/include/sys/
H A Duser.h38 #define PAGE_SIZE 4096 macro
39 #define PAGE_MASK (~(PAGE_SIZE - 1))
107 #define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * PAGE_SIZE)
/bionic/tools/versioner/current/sys/
H A Duser.h38 #define PAGE_SIZE 4096 macro
39 #define PAGE_MASK (~(PAGE_SIZE - 1))
107 #define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * PAGE_SIZE)

Completed in 47 milliseconds