Home | History | Annotate | Download | only in attribute

Lines Matching refs:bytes

41  * item indicates the length of the subsequent information in bytes. The length
42 * does not include the initial six bytes that contain the attribute_name_index
96 * 'bytes'.
99 * @param bytes input .class data stream [may not be null; not validated]
106 final UDataInputStream bytes)
109 final int attribute_name_index = bytes.readU2 ();
110 final long attribute_length = bytes.readU4 ();
117 return new CodeAttribute_info (constants, attribute_name_index, attribute_length, bytes);
121 return new ConstantValueAttribute_info (attribute_name_index, attribute_length, bytes);
125 return new ExceptionsAttribute_info (attribute_name_index, attribute_length, bytes);
129 return new InnerClassesAttribute_info (attribute_name_index, attribute_length, bytes);
141 return new LineNumberTableAttribute_info (attribute_name_index, attribute_length, bytes);
145 return new SourceFileAttribute_info (attribute_name_index, attribute_length, bytes);
150 return new GenericAttribute_info (attribute_name_index, attribute_length, bytes);
183 protected Attribute_info (UDataInputStream bytes) throws IOException
185 //m_name_index = bytes.readU2 ();
186 //m_attribute_length = bytes.readU4 ();