Searched defs:count_addr (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEventController.cpp848 int *count_addr; local
852 count_addr = (int *)JvmtiExport::get_field_modification_count_addr();
855 count_addr = (int *)JvmtiExport::get_field_access_count_addr();
865 *count_addr));
868 (*count_addr)++;
869 if (*count_addr == 1) {
873 if (*count_addr > 0) {
874 (*count_addr)--;
875 if (*count_addr == 0) {
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1751 int *count_addr; local
1755 count_addr = (int *)JvmtiExport::get_field_access_count_addr();
1756 if ( *count_addr > 0 ) {
1845 int *count_addr; local
1849 count_addr = (int *)JvmtiExport::get_field_modification_count_addr();
1850 if ( *count_addr > 0 ) {

Completed in 891 milliseconds