Searched refs:prot (Results 1 - 8 of 8) sorted by relevance

/bionic/linker/
H A Dlinker_block_allocator.h39 void protect_all(int prot);
75 void protect_all(int prot) { block_allocator_.protect_all(prot); } argument
H A Dlinker_block_allocator.cpp95 void LinkerBlockAllocator::protect_all(int prot) { argument
97 if (mprotect(page, PAGE_SIZE, prot) == -1) {
H A Dlinker_phdr.cpp580 int prot = PFLAGS_TO_PROT(phdr->p_flags); variable
583 prot &= ~PROT_EXEC;
588 prot | extra_prot_flags);
/bionic/libc/bionic/
H A Dmmap.cpp44 void* mmap64(void* addr, size_t size, int prot, int flags, int fd, off64_t offset) { argument
61 void* result = __mmap2(addr, size, prot, flags, fd, offset >> MMAP2_SHIFT);
75 void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) { argument
76 return mmap64(addr, size, prot, flags, fd, static_cast<off64_t>(offset));
H A Dpthread_create.cpp117 int prot = PROT_READ | PROT_WRITE; local
119 void* space = mmap(NULL, mmap_size, prot, flags, -1, 0);
/bionic/tests/
H A Dutils.h66 char prot[5]; // sizeof("rwxp") local
68 &record.addr_start, &record.addr_end, prot, &record.offset,
71 if (prot[0] == 'r') {
74 if (prot[1] == 'w') {
77 if (prot[2] == 'x') {
/bionic/libc/kernel/uapi/linux/
H A Dagpgart.h71 int prot; member in struct:_agp_segment
H A Dscif_ioctl.h51 __s32 prot; member in struct:scifioctl_reg

Completed in 4430 milliseconds