HomeSort by relevance Sort by last modified time
    Searched refs:PTE_BIT_FUNC (Results 1 - 2 of 2) sorted by null

  /external/kernel-headers/original/asm-arm/
pgtable.h 256 #define PTE_BIT_FUNC(fn,op) \
259 /*PTE_BIT_FUNC(rdprotect, &= ~L_PTE_USER);*/
260 /*PTE_BIT_FUNC(mkread, |= L_PTE_USER);*/
261 PTE_BIT_FUNC(wrprotect, &= ~L_PTE_WRITE);
262 PTE_BIT_FUNC(mkwrite, |= L_PTE_WRITE);
263 PTE_BIT_FUNC(exprotect, &= ~L_PTE_EXEC);
264 PTE_BIT_FUNC(mkexec, |= L_PTE_EXEC);
265 PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY);
266 PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY);
267 PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG)
    [all...]
  /bionic/libc/kernel/arch-sh/asm/
pgtable_32.h 125 #define PTE_BIT_FUNC(h,fn,op) static inline pte_t pte_##fn(pte_t pte) { pte.pte_##h op; return pte; }

Completed in 133 milliseconds