Searched defs:prot (Results 1 - 9 of 9) sorted by relevance

/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.cpp133 int prot = PROT_READ | PROT_WRITE; local
135 void* space = mmap(NULL, mmap_size, prot, flags, -1, 0);
/bionic/linker/
H A Dlinker_block_allocator.h51 void protect_all(int prot);
87 void protect_all(int prot) { block_allocator_.protect_all(prot); } argument
H A Dlinker_block_allocator.cpp107 void LinkerBlockAllocator::protect_all(int prot) { argument
109 if (mprotect(page, PAGE_SIZE, prot) == -1) {
/bionic/libc/kernel/uapi/linux/
H A Dagpgart.h72 int prot; member in struct:_agp_segment
H A Dscif_ioctl.h51 __s32 prot; member in struct:scifioctl_reg
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dagpgart.h72 int prot; member in struct:_agp_segment
H A Dscif_ioctl.h51 __s32 prot; member in struct:scifioctl_reg
/bionic/tests/
H A Dutils.h80 char prot[5]; // sizeof("rwxp") local
82 &record.addr_start, &record.addr_end, prot, &record.offset,
85 if (prot[0] == 'r') {
88 if (prot[1] == 'w') {
91 if (prot[2] == 'x') {

Completed in 181 milliseconds