Searched defs:checked_exceptions_length (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.cpp39 int checked_exceptions_length) {
44 if (checked_exceptions_length > 0) {
46 extra_bytes += checked_exceptions_length * sizeof(CheckedExceptionElement);
136 int constMethodOopDesc::checked_exceptions_length() const { function in class:constMethodOopDesc
35 object_size(int code_size, int compressed_line_number_size, int local_variable_table_length, int exception_table_length, int checked_exceptions_length) argument
H A DconstMethodKlass.cpp69 int checked_exceptions_length,
77 checked_exceptions_length);
89 cm->set_inlined_tables_length(checked_exceptions_length,
65 allocate(int byte_code_size, int compressed_line_number_size, int localvariable_table_length, int exception_table_length, int checked_exceptions_length, bool is_conc_safe, TRAPS) argument
H A DmethodOop.hpp440 int checked_exceptions_length() const function in class:methodOopDesc
441 { return constMethod()->checked_exceptions_length(); }
/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.cpp144 int checked_exceptions_length,
151 checked_exceptions_length, is_conc_safe,
160 int checked_exceptions_length,
170 checked_exceptions_length,
140 new_constMethod(int byte_code_size, int compressed_line_number_size, int localvariable_table_length, int exception_table_length, int checked_exceptions_length, bool is_conc_safe, TRAPS) argument
156 new_method(int byte_code_size, AccessFlags access_flags, int compressed_line_number_size, int localvariable_table_length, int exception_table_length, int checked_exceptions_length, bool is_conc_safe, TRAPS) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp239 int checked_exceptions_length = const_method->checked_exceptions_length(); local
242 2 * checked_exceptions_length; // exception_index_table
246 write_u2(checked_exceptions_length);
247 for (int index = 0; index < checked_exceptions_length; index++) {
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1604 u2* ClassFileParser::parse_checked_exceptions(u2* checked_exceptions_length, argument
1608 cfs->guarantee_more(2, CHECK_NULL); // checked_exceptions_length
1609 *checked_exceptions_length = cfs->get_u2_fast();
1610 unsigned int size = (*checked_exceptions_length) * sizeof(CheckedExceptionElement) / sizeof(u2);
1618 u2 len = *checked_exceptions_length;
1631 guarantee_property(method_attribute_length == (sizeof(*checked_exceptions_length) +
1884 u2 checked_exceptions_length = 0; local
2101 parse_checked_exceptions(&checked_exceptions_length,
2179 checked_exceptions_length,
2240 if (checked_exceptions_length >
[all...]

Completed in 1326 milliseconds