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

12345

/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/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/valgrind/helgrind/tests/
H A Dtc06_two_races.c9 int unprot1 = 0, unprot2 = 0, prot = 0; variable
16 prot ++;
33 prot ++;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-access.cpp18 // CHECK: !MDSubprogram(name: "prot",{{.*}} line: [[@LINE+1]],{{.*}} flags: DIFlagProtected | DIFlagPrototyped,
19 void prot();
/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/libdrm/
H A Dlibdrm.h51 static inline void *drm_mmap(void *addr, size_t length, int prot, int flags, argument
60 return mmap64(addr, length, prot, flags, fd, offset);
70 # define drm_mmap(addr, length, prot, flags, fd, offset) \
71 mmap(addr, length, prot, flags, fd, offset)
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_mman.h64 static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, int fd, loff_t offset) argument
72 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
77 # define os_mmap(addr, length, prot, flags, fd, offset) mmap(addr, length, prot, flags, fd, offset)
/external/valgrind/coregrind/
H A Dpub_core_aspacemgr.h79 valgrind with at least the permissions 'prot' ? To find out
81 VKI_PROT_NONE as 'prot'. Will return False if any part of the
85 ( Addr start, SizeT len, UInt prot );
92 ( Addr start, SizeT len, UInt prot );
164 ( Addr a, SizeT len, UInt prot, UInt flags, Int fd, Off64T offset );
170 extern Bool VG_(am_notify_client_shmat)( Addr a, SizeT len, UInt prot );
181 extern Bool VG_(am_notify_mprotect)( Addr start, SizeT len, UInt prot );
197 ( Addr start, SizeT length, UInt prot, UInt flags, Int fd, Off64T offset);
211 ( Addr start, SizeT length, UInt prot, Int fd, Off64T offset );
213 ( Addr start, SizeT length, UInt prot, In
356 UInt prot; // Not used for removed segs. member in struct:__anon16169
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.cpp55 MachVMRegion::SetProtections(mach_vm_address_t addr, mach_vm_size_t size, vm_prot_t prot) argument
66 if (prot == (m_curr_protection & VM_PROT_ALL))
68 DNBLogThreadedIf(LOG_MEMORY_PROTECTIONS | LOG_VERBOSE, "MachVMRegion::%s: protections (%u) already sufficient for task 0x%4.4x at address 0x%8.8llx) ", __FUNCTION__, prot, m_task, (uint64_t)addr);
74 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot);
76 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)addr, (uint64_t)prot_size, 0, prot);
80 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot | VM_PROT_COPY);
82 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)addr, (uint64_t)prot_size, 0, prot | VM_PROT_COPY);
86 m_curr_protection = prot;
[all...]
/external/skia/platform_tools/android/third_party/ashmem/cutils/
H A Dashmem.h20 int ashmem_set_prot_region(int fd, int prot);
H A Dashmem-dev.c70 int ashmem_set_prot_region(int fd, int prot) argument
72 return ioctl(fd, ASHMEM_SET_PROT_MASK, prot);
/external/tcpdump/
H A Dprint-gre.c122 u_int16_t flags, prot; local
134 prot = EXTRACT_16BITS(bp);
197 tok2str(ethertype_values,"unknown",prot),
198 prot);
207 switch (prot) {
232 printf("gre-proto-0x%x", prot);
244 u_int16_t flags, prot; local
256 prot = EXTRACT_16BITS(bp);
293 tok2str(ethertype_values,"unknown",prot),
294 prot);
[all...]
/external/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.h34 lldb::addr_t addr, lldb::addr_t length, unsigned prot,
/external/valgrind/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c338 void (*record_mapping)( Addr addr, SizeT len, UInt prot,
768 static void sync_check_mapping_callback ( Addr addr, SizeT len, UInt prot, argument
876 if (sloppyXcheck && (prot & VKI_PROT_EXEC) != 0) {
880 if (sloppyRcheck && (prot & (VKI_PROT_EXEC | VKI_PROT_READ)) ==
886 && seg_prot == prot
909 prot & VKI_PROT_READ ? 'r' : '-',
910 prot & VKI_PROT_WRITE ? 'w' : '-',
911 prot & VKI_PROT_EXEC ? 'x' : '-',
1174 least the "prot" protection permissions by examining the underlying
1179 Bool is_valid_for( UInt kinds, Addr start, SizeT len, UInt prot )
1473 read_maps_callback( Addr addr, SizeT len, UInt prot, ULong dev, ULong ino, Off64T offset, const HChar* filename ) argument
1971 am_notify_client_mmap( Addr a, SizeT len, UInt prot, UInt flags, Int fd, Off64T offset ) argument
2159 am_mmap_file_fixed_client( Addr start, SizeT length, UInt prot, Int fd, Off64T offset ) argument
2165 am_mmap_named_file_fixed_client( Addr start, SizeT length, UInt prot, Int fd, Off64T offset, const HChar *name ) argument
2461 am_mmap_file_float_valgrind_flags( SizeT length, UInt prot, UInt flags, Int fd, Off64T offset ) argument
2544 am_mmap_file_float_valgrind( SizeT length, UInt prot, Int fd, Off64T offset ) argument
2552 am_shared_mmap_file_float_valgrind( SizeT length, UInt prot, Int fd, Off64T offset ) argument
2784 UInt prot; local
3166 parse_procselfmaps( void (*record_mapping)( Addr addr, SizeT len, UInt prot, ULong dev, ULong ino, Off64T offset, const HChar* filename ), void (*record_gap)( Addr addr, SizeT len ) ) argument
3177 UInt prot; local
3375 parse_procselfmaps( void (*record_mapping)( Addr addr, SizeT len, UInt prot, ULong dev, ULong ino, Off64T offset, const HChar* filename ), void (*record_gap)( Addr addr, SizeT len ) ) argument
3434 add_mapping_callback(Addr addr, SizeT len, UInt prot, ULong dev, ULong ino, Off64T offset, const HChar *filename) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libignore.cc58 uptr b, e, off, prot; local
59 while (proc_maps.Next(&b, &e, &off, module.data(), module.size(), &prot)) {
60 if ((prot & MemoryMappingLayout::kProtectionExecute) == 0)
H A Dsanitizer_procmaps_mac.cc162 uptr cur_beg, cur_end, prot; local
167 module_name.size(), &prot);
183 cur_module->addAddressRange(cur_beg, cur_end, prot & kProtectionExecute);
H A Dsanitizer_posix.h37 uptr internal_mmap(void *addr, uptr length, int prot, int flags,
40 int internal_mprotect(void *addr, uptr length, int prot);
/external/fio/os/windows/posix/include/sys/
H A Dmman.h29 void *mmap(void *addr, size_t len, int prot, int flags,
/external/lldb/source/Core/
H A DDataBufferMemoryMap.cpp194 int prot = PROT_READ; local
196 prot |= PROT_WRITE;
202 m_mmap_addr = (uint8_t *)::mmap(NULL, length, prot, flags, fd, offset);
214 m_mmap_addr = (uint8_t *)::mmap(NULL, length + page_offset, prot, flags, fd, offset - page_offset);
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DSecurityAgreeHeader.java74 * Set Protocol (prot paramater)
75 * @param prot - protocol value
78 public void setProtocol(String prot) throws ParseException; argument
145 * @return prot parameter value
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dgas_serv.h51 int prot; /* whether Protected Dual of Public Action frame is used */ member in struct:gas_dialog_info
/external/wpa_supplicant_8/src/ap/
H A Dgas_serv.h51 int prot; /* whether Protected Dual of Public Action frame is used */ member in struct:gas_dialog_info
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dgas_serv.h51 int prot; /* whether Protected Dual of Public Action frame is used */ member in struct:gas_dialog_info
/external/openssh/openbsd-compat/
H A Dxcrypt.c37 # include <prot.h>
43 # include <prot.h>
/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}}

Completed in 693 milliseconds

12345