Searched refs:prot (Results 1 - 25 of 163) sorted by path

1234567

/external/abi-compliance-checker/
H A Dabi-compliance-checker.pl4162 while($Info=~s/(pub|public|prot|protected|priv|private|)[ ]+binf[ ]*:[ ]*@(\d+) //)
4179 if($Access=~/prot/) {
5874 if($Access eq "prot") {
/external/autotest/client/cros/graphics/
H A Ddrm.py365 prot=mmap.PROT_READ,
/external/blktrace/
H A Dblktrace.c709 static void *my_mmap(void *addr, size_t length, int prot, int flags, int fd, argument
715 new = mmap(addr, length, prot, flags, fd, offset);
/external/clang/lib/Index/
H A DUSRGeneration.cpp146 void GenObjCProtocol(StringRef prot) { argument
147 generateUSRForObjCProtocol(prot, Out);
/external/clang/test/CXX/class.access/class.access.base/
H A Dp1.cpp12 protected: int prot; static int sprot; // expected-note 4 {{declared protected here}} member in class:test0::Base
20 prot++;
27 Base::prot++; member in class:test0::Test::Base
37 t->prot++; // expected-error {{protected member}}
44 t->Base::prot++; // expected-error {{protected member}}
61 protected: int prot; static int sprot; // expected-note 4 {{declared protected here}} member in class:test1::Base
69 prot++;
76 Base::prot++; member in class:test1::Test::Base
86 t->prot++; // expected-error {{protected member}} expected-error {{protected base class}}
94 t->Base::prot
112 int prot; // expected-note {{declared protected here}} \\ member in class:test2::Base
133 Base::prot++; member in class:test2::Test::Base
[all...]
/external/clang/test/CXX/class.access/
H A Dp4.cpp63 void test(A &a, Public &pub, Protected &prot, Private &priv) { argument
65 a + prot; // expected-error {{'operator+' is a protected member}} local
68 a[prot]; // expected-error {{'operator[]' is a protected member}}
71 a(prot); // expected-error {{'operator()' is a protected member}}
77 ca + prot; local
82 ca(prot); // expected-error {{'operator void (*)(Protected &)' is a protected member}}
H A Dp6.cpp48 Protected prot = a; // expected-error {{'operator Protected' is a protected member}} local
51 A aprot = prot; // expected-error {{protected constructor}}
/external/clang/test/CodeGen/
H A D2003-11-18-CondExprLValue.c5 void split_large_page(unsigned long addr, pgprot_t prot) argument
7 (addr ? prot : ((pgprot_t) { 0x001 } )).pgprot;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-access.cpp21 // CHECK: !DISubprogram(name: "prot",{{.*}} line: [[@LINE+1]],{{.*}} flags: DIFlagProtected | DIFlagPrototyped,
22 void prot();
H A Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp457 virtual void prot();
465 virtual void prot();
466 // MANGLING-DAG: @"\01?prot@B@access@@$2PPPPPPPM@A@AEXXZ"
477 // MANGLING-DAG: @"\01?prot@B@access@@$R277PPPPPPPM@7AEXXZ"
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp82 class HasProt { protected: int prot; }; member in class:HasProt
/external/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h610 #define __sanitizer_syscall_pre_mprotect(start, len, prot) \
612 (long)(prot))
613 #define __sanitizer_syscall_post_mprotect(res, start, len, prot) \
615 (long)(prot))
626 #define __sanitizer_syscall_pre_remap_file_pages(start, size, prot, pgoff, \
629 (long)(start), (long)(size), (long)(prot), (long)(pgoff), (long)(flags))
630 #define __sanitizer_syscall_post_remap_file_pages(res, start, size, prot, \
633 (long)(size), (long)(prot), \
1777 #define __sanitizer_syscall_pre_mmap_pgoff(addr, len, prot, flags, fd, pgoff) \
1779 (long)(prot), (lon
[all...]
/external/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cc19 INTERCEPTOR(void *, mmap, void *addr, SIZE_T length, int prot, int flags, argument
21 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
27 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T length, int prot, int flags, argument
29 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);
/external/compiler-rt/lib/esan/
H A Desan_interceptors.cpp342 INTERCEPTOR(void *, mmap, void *addr, SIZE_T sz, int prot, int flags, argument
348 return (void *)internal_mmap(addr, sz, prot, flags, fd, off);
351 COMMON_INTERCEPTOR_ENTER(ctx, mmap, addr, sz, prot, flags, fd, off);
354 void *result = REAL(mmap)(addr, sz, prot, flags, fd, off);
359 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T sz, int prot, int flags, argument
362 COMMON_INTERCEPTOR_ENTER(ctx, mmap64, addr, sz, prot, flags, fd, off);
365 void *result = REAL(mmap64)(addr, sz, prot, flags, fd, off);
/external/compiler-rt/lib/lsan/
H A Dlsan_common.cc278 uptr begin, end, prot; local
281 /*filename_size*/ 0, &prot)) {
285 bool is_readable = prot & MemoryMappingLayout::kProtectionRead;
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc955 INTERCEPTOR(void *, mmap, void *addr, SIZE_T length, int prot, int flags, argument
958 return REAL(mmap)(addr, length, prot, flags, fd, offset);
968 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
975 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T length, int prot, int flags, argument
986 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);
/external/compiler-rt/lib/profile/
H A DWindowsMMap.c32 void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) argument
34 if (prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
43 if (prot & PROT_WRITE) {
44 if (prot & PROT_EXEC)
48 } else if (prot & PROT_EXEC) {
49 if (prot & PROT_READ)
51 else if (prot & PROT_EXEC)
67 if (prot & PROT_WRITE)
71 if (prot & PROT_EXEC)
H A DWindowsMMap.h48 void *mmap(void *start, size_t length, int prot, int flags, int fd,
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libignore.cc59 uptr b, e, off, prot; local
60 while (proc_maps.Next(&b, &e, &off, module.data(), module.size(), &prot)) {
61 if ((prot & MemoryMappingLayout::kProtectionExecute) == 0)
H A Dsanitizer_linux.cc120 uptr internal_mmap(void *addr, uptr length, int prot, int flags, int fd, argument
123 return internal_syscall(SYSCALL(mmap), (uptr)addr, length, prot, flags, fd,
128 return internal_syscall(SYSCALL(mmap2), addr, length, prot, flags, fd,
138 int internal_mprotect(void *addr, uptr length, int prot) { argument
139 return internal_syscall(SYSCALL(mprotect), (uptr)addr, length, prot);
H A Dsanitizer_linux_s390.cc30 uptr internal_mmap(void *addr, uptr length, int prot, int flags, int fd, argument
35 unsigned long prot; member in struct:__sanitizer::s390_mmap_params
42 (unsigned long)prot,
H A Dsanitizer_mac.cc86 extern "C" void *__mmap(void *addr, size_t len, int prot, int flags, int fildes,
91 uptr internal_mmap(void *addr, size_t length, int prot, int flags, argument
94 return (uptr)__mmap(addr, length, prot, flags, fd, offset);
101 int internal_mprotect(void *addr, uptr length, int prot) { argument
102 return mprotect(addr, length, prot);
H A Dsanitizer_posix.cc60 uptr end, prot; local
63 /*filename_size*/0, &prot)) {
65 && (prot & MemoryMappingLayout::kProtectionWrite) != 0)
337 uptr s, e, off, prot; local
340 while (proc_maps.Next(&s, &e, &off, buff.data(), buff.size(), &prot)) {
341 if ((prot & MemoryMappingLayout::kProtectionExecute) != 0
H A Dsanitizer_posix.h38 uptr internal_mmap(void *addr, uptr length, int prot, int flags,
41 int internal_mprotect(void *addr, uptr length, int prot);
H A Dsanitizer_procmaps_common.cc122 uptr cur_beg, cur_end, cur_offset, prot; local
125 module_name.size(), &prot);
144 cur_module.addAddressRange(cur_beg, cur_end, prot & kProtectionExecute);

Completed in 587 milliseconds

1234567