Searched refs:JVM_ACC_SYNCHRONIZED (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVMModifiers.java36 int SYNCHRONIZED = (int) JVM_ACC_SYNCHRONIZED; /* wrap method call in monitor lock */
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DConstants.java33 static final int JVM_ACC_SYNCHRONIZED = 0x0020; /* wrap method call in monitor lock */ field in interface:Constants
H A DMethod.java46 if ((f & JVM_ACC_SYNCHRONIZED) != 0) {
/openjdk7/hotspot/src/share/vm/ci/
H A DciFlags.hpp54 bool is_synchronized() const { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DClassConstants.java92 public static final long JVM_ACC_SYNCHRONIZED = 0x0020; /* wrap method call in monitor lock */ field in interface:ClassConstants
189 JVM_ACC_SYNCHRONIZED |
/openjdk7/hotspot/src/share/vm/classfile/
H A DvmSymbols.cpp356 const int neg = JVM_ACC_STATIC | JVM_ACC_SYNCHRONIZED;
360 const int req = JVM_ACC_SYNCHRONIZED;
366 const int neg = JVM_ACC_STATIC | JVM_ACC_SYNCHRONIZED;
371 const int neg = JVM_ACC_SYNCHRONIZED;
376 const int neg = JVM_ACC_SYNCHRONIZED;
380 const int req = JVM_ACC_NATIVE | JVM_ACC_SYNCHRONIZED;
H A DclassFileParser.cpp4226 const bool is_synchronized = (flags & JVM_ACC_SYNCHRONIZED) != 0;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DAccessFlags.java43 public boolean isSynchronized() { return (flags & JVM_ACC_SYNCHRONIZED) != 0; }
/openjdk7/hotspot/src/share/vm/utilities/
H A DaccessFlags.hpp105 bool is_synchronized() const { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
/openjdk7/jdk/src/share/javavm/export/
H A Dclassfile_constants.h45 JVM_ACC_SYNCHRONIZED = 0x0020, enumerator in enum:__anon545
H A Djvm.h1052 JVM_ACC_SYNCHRONIZED | \
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp556 __ testl(rax, JVM_ACC_SYNCHRONIZED);
960 __ testl(rax, JVM_ACC_SYNCHRONIZED);
1226 __ testl(t, JVM_ACC_SYNCHRONIZED);
1393 __ testl(rax, JVM_ACC_SYNCHRONIZED);
H A DtemplateInterpreter_x86_64.cpp509 __ testl(rax, JVM_ACC_SYNCHRONIZED);
939 __ testl(rax, JVM_ACC_SYNCHRONIZED);
1223 __ testl(t, JVM_ACC_SYNCHRONIZED);
1416 __ testl(rax, JVM_ACC_SYNCHRONIZED);
H A DcppInterpreter_x86.cpp508 __ testl(rax, JVM_ACC_SYNCHRONIZED);
760 __ testl(rax, JVM_ACC_SYNCHRONIZED);
1093 __ testl(rax, JVM_ACC_SYNCHRONIZED);
1425 __ testl(t, JVM_ACC_SYNCHRONIZED);
H A Dinterp_masm_x86_32.cpp531 testl(rcx, JVM_ACC_SYNCHRONIZED);
H A Dinterp_masm_x86_64.cpp530 testl(rcx, JVM_ACC_SYNCHRONIZED);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp359 __ btst(JVM_ACC_SYNCHRONIZED, O0);
911 __ btst(JVM_ACC_SYNCHRONIZED, O0);
1374 __ btst(JVM_ACC_SYNCHRONIZED, O0);
H A DcppInterpreter_sparc.cpp684 __ btst(JVM_ACC_SYNCHRONIZED, O0);
1176 __ btst(JVM_ACC_SYNCHRONIZED, O1);
1273 __ btst(JVM_ACC_SYNCHRONIZED, O0);
H A Dinterp_masm_sparc.cpp992 btst(JVM_ACC_SYNCHRONIZED, G3_scratch);
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h1012 #define JVM_ACC_SYNCHRONIZED 0x0020 /* wrap method call in monitor lock */ macro
1197 JVM_ACC_SYNCHRONIZED | \

Completed in 392 milliseconds