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

/openjdk7/langtools/test/tools/javac/6402516/
H A DA.java27 protected int prot; field in class:A
/openjdk7/langtools/test/tools/javap/
H A DT4501661.java42 for (boolean prot: values) {
44 test(priv, prot, publ, classFile);
53 void test(boolean priv, boolean prot, boolean publ, File classFile) { argument
57 if (prot)
66 if (!priv && !prot && !publ)
68 if (prot)
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DFileChannelImpl.c59 jint prot, jlong off, jlong len)
75 if (prot == sun_nio_ch_FileChannelImpl_MAP_RO) {
78 } else if (prot == sun_nio_ch_FileChannelImpl_MAP_RW) {
81 } else if (prot == sun_nio_ch_FileChannelImpl_MAP_PV) {
58 Java_sun_nio_ch_FileChannelImpl_map0(JNIEnv *env, jobject this, jint prot, jlong off, jlong len) argument
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileChannelImpl.c75 jint prot, jlong off, jlong len)
83 if (prot == sun_nio_ch_FileChannelImpl_MAP_RO) {
86 } else if (prot == sun_nio_ch_FileChannelImpl_MAP_RW) {
89 } else if (prot == sun_nio_ch_FileChannelImpl_MAP_PV) {
74 Java_sun_nio_ch_FileChannelImpl_map0(JNIEnv *env, jobject this, jint prot, jlong off, jlong len) argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSecmod.java595 public KeyStoreLoadParameter(TrustType trustType, ProtectionParameter prot) { argument
600 this.protection = prot;
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2904 int prot = exec ? PROT_READ|PROT_WRITE|PROT_EXEC : PROT_READ|PROT_WRITE; local
2907 if (::mprotect(addr, size, prot) == 0) {
2911 uintptr_t res = (uintptr_t) ::mmap(addr, size, prot,
2941 int prot = exec ? PROT_READ|PROT_WRITE|PROT_EXEC : PROT_READ|PROT_WRITE; local
2943 (uintptr_t) ::mmap(addr, size, prot,
3201 static bool bsd_mprotect(char* addr, size_t size, int prot) { argument
3213 return ::mprotect(bottom, size, prot) == 0;
3217 bool os::protect_memory(char* addr, size_t bytes, ProtType prot, argument
3220 switch (prot) {
5246 int prot; local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp2686 int prot = exec ? PROT_READ|PROT_WRITE|PROT_EXEC : PROT_READ|PROT_WRITE; local
2687 uintptr_t res = (uintptr_t) ::mmap(addr, size, prot,
2735 int prot = exec ? PROT_READ|PROT_WRITE|PROT_EXEC : PROT_READ|PROT_WRITE; local
2737 (uintptr_t) ::mmap(addr, size, prot,
3129 static bool linux_mprotect(char* addr, size_t size, int prot) { argument
3141 return ::mprotect(bottom, size, prot) == 0;
3145 bool os::protect_memory(char* addr, size_t bytes, ProtType prot, argument
3148 switch (prot) {
5028 int prot; local
5032 prot
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp2788 static char* allocate_pages_individually(size_t bytes, char* addr, DWORD flags, DWORD prot, argument
2855 prot);
2864 prot,
3065 const DWORD prot = exec ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; local
3075 char * p_buf = allocate_pages_individually(bytes, addr, flags, prot, LargePagesIndividualAllocationInjectError);
3093 char * res = (char *)VirtualAlloc(NULL, bytes, flag, prot);
3227 bool os::protect_memory(char* addr, size_t bytes, ProtType prot, argument
3230 switch (prot) {
3244 commit_memory_or_exit(addr, bytes, prot == MEM_PROT_RWX,
5152 LPVOID os::Kernel32Dll::VirtualAllocExNuma(HANDLE hProc, LPVOID addr, SIZE_T bytes, DWORD flags, DWORD prot, DWOR argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp2847 int prot = exec ? PROT_READ|PROT_WRITE|PROT_EXEC : PROT_READ|PROT_WRITE; local
2849 char *res = Solaris::mmap_chunk(addr, size, MAP_PRIVATE|MAP_FIXED, prot);
3143 char* os::Solaris::mmap_chunk(char *addr, size_t size, int flags, int prot) { argument
3144 char *b = (char *)mmap(addr, size, prot, flags, os::Solaris::_dev_zero_fd, 0);
3310 static bool solaris_mprotect(char* addr, size_t bytes, int prot) { argument
3313 int retVal = mprotect(addr, bytes, prot);
3321 bool os::protect_memory(char* addr, size_t bytes, ProtType prot, argument
3324 switch (prot) {
5786 int prot; local
5790 prot
[all...]
H A Dos_solaris.hpp174 static char* mmap_chunk(char *addr, size_t size, int flags, int prot);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp291 static bool protect_memory(char* addr, size_t bytes, ProtType prot,
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp539 Handle prot (thread, Klass::cast(method_holder())->protection_domain());
540 return SystemDictionary::find(klass_name, loader, prot, thread) != NULL;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java1153 private native long map0(int prot, long position, long length) argument
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp1134 oop prot = klass->protection_domain(); local
1135 if (prot != NULL) {
1139 Handle h_prot(THREAD, prot);

Completed in 1815 milliseconds