HomeSort by relevance Sort by last modified time
    Searched refs:prot (Results 1 - 25 of 645) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-11-18-CondExprLValue.c 5 void split_large_page(unsigned long addr, pgprot_t prot)
7 (addr ? prot : ((pgprot_t) { 0x001 } )).pgprot;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
5-1.c 9 * The prot shall be either PROT_NONE or the bitwise-inclusive OR of
17 * specified by prot, the call to mmap() shall fail.
37 int prot; member in struct:testcase
42 {.flags = MAP_SHARED,.prot = PROT_NONE},
43 {.flags = MAP_SHARED,.prot = PROT_READ},
44 {.flags = MAP_SHARED,.prot = PROT_WRITE},
45 {.flags = MAP_SHARED,.prot = PROT_EXEC},
46 {.flags = MAP_SHARED,.prot = PROT_READ | PROT_WRITE},
47 {.flags = MAP_SHARED,.prot = PROT_READ | PROT_EXEC},
48 {.flags = MAP_SHARED,.prot = PROT_EXEC | PROT_WRITE}
    [all...]
  /external/clang/test/CXX/class.access/class.access.base/
p1.cpp 12 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++; // expected-error 2 {{protected member}} expected-error {{protected base class}
112 int prot; \/\/ expected-note {{declared protected here}} \\ member in class:test2::Base
133 Base::prot++; member in class:test2::Test::Base
    [all...]
  /external/compiler-rt/lib/profile/
WindowsMMap.c 32 void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset)
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)
  /bionic/linker/
linker_block_allocator.h 51 void protect_all(int prot);
87 void protect_all(int prot) { block_allocator_.protect_all(prot); }
  /external/valgrind/helgrind/tests/
tc06_two_races.c 9 int unprot1 = 0, unprot2 = 0, prot = 0; variable
16 prot ++;
33 prot ++;
  /external/clang/test/CodeGenCXX/
debug-info-access.cpp 21 // CHECK: !DISubprogram(name: "prot",{{.*}} line: [[@LINE+1]],{{.*}} flags: DIFlagProtected | DIFlagPrototyped,
22 void prot();
  /external/compiler-rt/lib/dfsan/
dfsan_interceptors.cc 19 INTERCEPTOR(void *, mmap, void *addr, SIZE_T length, int prot, int flags,
21 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
27 INTERCEPTOR(void *, mmap64, void *addr, SIZE_T length, int prot, int flags,
29 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);
  /external/libdrm/
libdrm_macros.h 49 static inline void *drm_mmap(void *addr, size_t length, int prot, int flags,
58 return mmap64(addr, length, prot, flags, fd, offset);
68 # define drm_mmap(addr, length, prot, flags, fd, offset) \
69 mmap(addr, length, prot, flags, fd, offset)
  /external/mesa3d/src/gallium/auxiliary/os/
os_mman.h 61 static inline void *os_mmap(void *addr, size_t length, int prot, int flags,
70 return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12));
78 # define os_mmap(addr, length, prot, flags, fd, offset) \
79 mmap(addr, length, prot, flags, fd, offset)
  /frameworks/native/include/android/
sharedmem.h 105 * \param prot any bitwise-or'ed combination of PROT_READ, PROT_WRITE, PROT_EXEC denoting
109 int ASharedMemory_setProt(int fd, int prot);
  /cts/tests/tests/os/src/android/os/cts/
ISharedMemoryService.aidl 22 void setup(in SharedMemory memory, int prot);
SharedMemoryService.java 39 public void setup(SharedMemory memory, int prot) throws RemoteException {
42 mMappedBuffer = mSharedMemory.map(prot, 0, mSharedMemory.getSize());
  /external/strace/tests/
remap_file_pages.c 44 const unsigned long prot = PROT_READ|PROT_WRITE|PROT_EXEC; local
48 long rc = syscall(__NR_remap_file_pages, addr, size, prot, pgoff, flags);
  /external/strace/tests-m32/
remap_file_pages.c 44 const unsigned long prot = PROT_READ|PROT_WRITE|PROT_EXEC; local
48 long rc = syscall(__NR_remap_file_pages, addr, size, prot, pgoff, flags);
  /external/strace/tests-mx32/
remap_file_pages.c 44 const unsigned long prot = PROT_READ|PROT_WRITE|PROT_EXEC; local
48 long rc = syscall(__NR_remap_file_pages, addr, size, prot, pgoff, flags);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_mmap.c 14 x_cgo_mmap(void *addr, uintptr_t length, int32_t prot, int32_t flags, int32_t fd, uint32_t offset) {
18 p = mmap(addr, length, prot, flags, fd, offset);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_mmap.c 14 x_cgo_mmap(void *addr, uintptr_t length, int32_t prot, int32_t flags, int32_t fd, uint32_t offset) {
18 p = mmap(addr, length, prot, flags, fd, offset);
  /external/syslinux/gpxe/src/interface/efi/
efi_init.c 59 struct efi_protocol *prot; local
85 for_each_table_entry ( prot, EFI_PROTOCOLS ) {
86 if ( ( efirc = bs->LocateProtocol ( &prot->u.guid, NULL,
87 prot->protocol ) ) == 0 ) {
89 uuid_ntoa ( &prot->u.uuid ), *(prot->protocol));
92 uuid_ntoa ( &prot->u.uuid ) );
  /external/valgrind/coregrind/
pub_core_aspacemgr.h 82 valgrind with at least the permissions 'prot' ? To find out
84 VKI_PROT_NONE as 'prot'. Will return False if any part of the
88 ( Addr start, SizeT len, UInt prot );
95 ( Addr start, SizeT len, UInt prot );
173 ( Addr a, SizeT len, UInt prot, UInt flags, Int fd, Off64T offset );
179 extern Bool VG_(am_notify_client_shmat)( Addr a, SizeT len, UInt prot );
190 extern Bool VG_(am_notify_mprotect)( Addr start, SizeT len, UInt prot );
206 ( Addr start, SizeT length, UInt prot, UInt flags, Int fd, Off64T offset);
220 ( Addr start, SizeT length, UInt prot, Int fd, Off64T offset );
222 ( Addr start, SizeT length, UInt prot, UInt flags, Int fd, Off64T offset )
371 UInt prot; \/\/ Not used for removed segs. member in struct:__anon37491
    [all...]
  /bionic/libc/bionic/
mmap.cpp 44 void* mmap64(void* addr, size_t size, int prot, int flags, int fd, off64_t offset) {
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) {
76 return mmap64(addr, size, prot, flags, fd, static_cast<off64_t>(offset));
  /art/runtime/
mem_map.h 67 int prot,
84 int prot,
93 prot,
113 int prot,
131 bool Protect(int prot);
207 int prot,
223 int prot,
230 int prot,
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmip.h 108 uint8 prot; /* Protocol */ member in struct:ipv4_hdr
155 #define IPV6_EXTHDR(prot) (((prot) == IPV6_EXTHDR_HOP) || \
156 ((prot) == IPV6_EXTHDR_ROUTING) || \
157 ((prot) == IPV6_EXTHDR_FRAGMENT) || \
158 ((prot) == IPV6_EXTHDR_AUTH) || \
159 ((prot) == IPV6_EXTHDR_NONE) || \
160 ((prot) == IPV6_EXTHDR_DEST))
  /development/ndk/platforms/android-9/arch-x86/include/asm/
pgtable-2level.h 37 #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
39 #define pfn_pmd(pfn, prot) __pmd(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/munmap/
4-1.c 52 int prot; local
74 prot = PROT_READ | PROT_WRITE;
76 pa = mmap(addr, size, prot, flag, fd, off);
97 pa = mmap(addr, size, prot, flag, fd, off);

Completed in 1503 milliseconds

1 2 3 4 5 6 7 8 91011>>