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

1234

/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/valgrind/helgrind/tests/
H A Dtc06_two_races.c9 int unprot1 = 0, unprot2 = 0, prot = 0; variable
16 prot ++;
33 prot ++;
/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/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/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_procmaps_common.cc121 uptr cur_beg, cur_end, cur_offset, prot; local
126 module_name.size(), &prot);
147 cur_module->addAddressRange(cur_beg, cur_end, prot & kProtectionExecute);
/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/skia/platform_tools/android/third_party/ashmem/cutils/
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/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/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/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/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/valgrind/memcheck/tests/
H A Daddressable.c15 static char *mm(char *addr, int size, int prot) argument
23 ret = mmap(addr, size, prot, flags, -1, 0);
/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/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp27 addr_t addr, addr_t length, unsigned prot,
58 if (prot == eMmapProtNone)
62 if (prot & eMmapProtExec)
64 if (prot & eMmapProtRead)
66 if (prot & eMmapProtWrite)
26 InferiorCallMmap(Process *process, addr_t &allocated_addr, addr_t addr, addr_t length, unsigned prot, unsigned flags, addr_t fd, addr_t offset) argument
/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
H A DSecurityAgree.java168 * Set Protocol (prot paramater)
169 * @param prot - protocol value
172 public void setProtocol(String prot) throws ParseException { argument
173 if (prot == null)
177 setParameter(ParameterNamesIms.PROT, prot);
290 * @return prot parameter value
/external/selinux/libselinux/src/
H A Dload_policy.c59 int fd, rc = -1, prot; local
191 prot = PROT_READ;
193 prot |= PROT_WRITE;
196 data = map = mmap(NULL, size, prot, MAP_PRIVATE, fd, 0);
/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/valgrind/coregrind/m_ume/
H A Delf.c184 unsigned prot = 0; local
189 if (ph->p_flags & PF_X) prot |= VKI_PROT_EXEC;
190 if (ph->p_flags & PF_W) prot |= VKI_PROT_WRITE;
191 if (ph->p_flags & PF_R) prot |= VKI_PROT_READ;
211 prot, /*VKI_MAP_FIXED|VKI_MAP_PRIVATE, */
228 prot
236 // The 'prot' condition allows for a read-only bss
237 if ((prot & VKI_PROT_WRITE) && (bytes > 0)) {
/external/clang/test/CXX/class.access/
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/kernel-headers/original/uapi/linux/
H A Dagpgart.h77 * The "prot" down below needs still a "sleep" flag somehow ...
82 int prot; /* prot flags for mmap */ member in struct:_agp_segment

Completed in 2644 milliseconds

1234