Module dvm :: Class DalvikVMFormat
[hide private]
[frames] | no frames]

Class DalvikVMFormat

source code

        object --+    
                 |    
bytecode._Bytecode --+
                     |
                    DalvikVMFormat

Instance Methods [hide private]
 
__init__(self, buff)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
load_class(self) source code
 
show(self)
Show the .class format into a human readable format
source code
 
_iterFlatten(self, root) source code
 
_get_raw(self) source code
 
get_method(self, name)
Return into a list all methods which corresponds to the regexp
source code
 
get_field(self, name)
Return into a list all fields which corresponds to the regexp
source code
 
get_fields(self)
Return all objects fields
source code
 
get_methods(self)
Return all objects methods
source code
 
save(self)
Return the class (with the modifications) into raw format
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

    Inherited from bytecode._Bytecode
 
add_idx(self, idx) source code
 
get_buff(self) source code
 
get_idx(self) source code
 
length_buff(self) source code
 
read(self, size) source code
 
read_b(self, size) source code
 
readat(self, off) source code
 
register(self, type_register, fct) source code
 
set_idx(self, idx) source code
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, buff)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

show(self)

source code 

Show the .class format into a human readable format

Overrides: bytecode._Bytecode.show

get_method(self, name)

source code 

Return into a list all methods which corresponds to the regexp

Parameters:
  • name - the name of the method (a regexp)

get_field(self, name)

source code 

Return into a list all fields which corresponds to the regexp

Parameters:
  • name - the name of the field (a regexp)

save(self)

source code 

Return the class (with the modifications) into raw format

Overrides: bytecode._Bytecode.save