Searched refs:prot (Results 51 - 75 of 180) sorted by relevance

12345678

/external/chromium_org/content/common/gpu/media/
H A Dtegra_v4l2_video_device.cc30 int prot,
120 int prot,
123 return TegraV4L2_Mmap(addr, len, prot, flags, device_fd_, offset);
118 Mmap(void* addr, unsigned int len, int prot, int flags, unsigned int offset) argument
H A Dexynos_v4l2_video_device.h27 int prot,
H A Dtegra_v4l2_video_device.h30 int prot,
H A Dv4l2_video_device.h65 int prot,
H A Dexynos_v4l2_video_device.cc75 int prot,
78 return mmap(addr, len, prot, flags, device_fd_, offset);
73 Mmap(void* addr, unsigned int len, int prot, int flags, unsigned int offset) argument
/external/doclava/src/com/google/doclava/apicheck/
H A DApiFile.java116 boolean prot = false;
132 prot = true;
166 cl = new ClassInfo(null/*classDoc*/, ""/*rawCommentText*/, tokenizer.pos(), pub, prot,
225 boolean prot = false;
235 prot = true;
253 name, null/*signature*/, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, false/*isFinal*/,
276 boolean prot = false;
292 prot = true;
323 name, null/*signature*/, cl, cl, pub, prot, pkgpriv, false/*isPrivate*/, fin,
349 boolean prot
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.cc49 uptr end, prot; local
52 /*filename_size*/0, &prot)) {
54 && (prot & MemoryMappingLayout::kProtectionWrite) != 0)
323 uptr s, e, off, prot; local
326 while (proc_maps.Next(&s, &e, &off, buff.data(), buff.size(), &prot)) {
327 if ((prot & MemoryMappingLayout::kProtectionExecute) != 0
/external/svox/pico/lib/
H A Dpicopal.c430 pico_status_t picopal_mpr_protect(void *addr, picopal_objsize_t len, picopal_int16 prot) argument
437 if (prot & PICOPAL_PROT_READ) {
438 if (prot & PICOPAL_PROT_WRITE) {
443 } else if (prot & PICOPAL_PROT_WRITE) {
454 prot = prot; /* avoid warning "var not used in this function"*/
/external/chromium_org/tools/android/memdump/
H A Dmemsymbols.py64 prot = r.group(3)
79 lib, map_pages_count, prot, _HexAddr(offset))
/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/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-common.c150 SysRes VG_(am_do_mmap_NO_NOTIFY)( Addr start, SizeT length, UInt prot, argument
158 prot, flags, fd, offset);
164 prot, flags, fd, offset / 4096);
169 prot, flags, fd, offset);
175 prot, flags, fd, offset & 0xffffffff, offset >> 32);
181 prot, flags, (UInt)fd, offset);
189 SysRes local_do_mprotect_NO_NOTIFY(Addr start, SizeT length, UInt prot) argument
191 return VG_(do_syscall3)(__NR_mprotect, (UWord)start, length, prot );
/external/valgrind/main/coregrind/
H A Dpub_core_debuginfo.h70 extern void VG_(di_notify_mprotect)( Addr a, SizeT len, UInt prot );
78 extern void VG_(di_notify_vm_protect)( Addr a, SizeT len, UInt prot );
/external/valgrind/main/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/eap_common/
H A Deap_eke_common.h107 u8 *prot, size_t *prot_len);
109 const u8 *prot, size_t prot_len,
/external/wpa_supplicant_8/src/eap_common/
H A Deap_eke_common.h107 u8 *prot, size_t *prot_len);
109 const u8 *prot, size_t prot_len,
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_eke_common.h107 u8 *prot, size_t *prot_len);
109 const u8 *prot, size_t prot_len,
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dnonsfi_sandbox.cc116 const Arg<int> prot(2);
117 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS());
127 const Arg<int> prot(2), flags(3);
128 return If((prot & ~kAllowedProtMask) == 0 && (flags & ~kAllowedFlagMask) == 0,
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_dummy.cc40 int prot,
38 _real_mmap(void** addr, size_t length, int prot, int flags, int fd, off_t offset) argument
/external/chromium_org/v8/src/base/platform/
H A Dplatform-cygwin.cc54 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
55 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
269 int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; local
270 if (NULL == VirtualAlloc(base, size, MEM_COMMIT, prot)) {
H A Dplatform-solaris.cc77 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
78 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
246 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
249 prot,
H A Dplatform-linux.cc136 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0); local
138 void* mbase = mmap(addr, msize, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
407 int prot = PROT_READ | PROT_WRITE; local
409 int prot = PROT_READ | PROT_WRITE | (is_executable ? PROT_EXEC : 0);
413 prot,
/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
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.h43 bool SetProtections(mach_vm_address_t addr, mach_vm_size_t size, vm_prot_t prot);
/external/valgrind/main/coregrind/m_ume/
H A Delf.c186 unsigned prot = 0; local
191 if (ph->p_flags & PF_X) prot |= VKI_PROT_EXEC;
192 if (ph->p_flags & PF_W) prot |= VKI_PROT_WRITE;
193 if (ph->p_flags & PF_R) prot |= VKI_PROT_READ;
213 prot, /*VKI_MAP_FIXED|VKI_MAP_PRIVATE, */
230 prot
238 // The 'prot' condition allows for a read-only bss
239 if ((prot & VKI_PROT_WRITE) && (bytes > 0)) {

Completed in 4752 milliseconds

12345678