Go to the source code of this file.
Enumerations | |
enum | DexAccessFlags { ACC_PUBLIC = 0x1, ACC_PRIVATE = 0x2, ACC_PROTECTED = 0x4, ACC_STATIC = 0x8, ACC_FINAL = 0x10, ACC_SYNCHRONIZED = 0x20, ACC_VOLATILE = 0x40, ACC_BRIDGE = 0x40, ACC_TRANSIENT = 0x80, ACC_VARARGS = 0x80, ACC_NATIVE = 0x100, ACC_INTERFACE = 0x200, ACC_ABSTRACT = 0x400, ACC_STRICT = 0x800, ACC_SYNTHETIC = 0x1000, ACC_ANNOTATION = 0x2000, ACC_ENUM = 0x4000, ACC_CONSTRUCTOR = 0x10000, ACC_DECLARED_SYNCHRONIZED = 0x20000 } |
See the access_flags section of http://www.netmite.com/android/mydroid/dalvik/docs/dex-format.html for flag definitions. | |
Functions | |
char * | dxc_access_flags_nice (DexAccessFlags flags) |
Returns a space separated test version of the access flags in the form of a static buffer. |
char * dxc_access_flags_nice | ( | DexAccessFlags | flags | ) |
Returns a space separated test version of the access flags in the form of a static buffer.
TODO: can we make this thread safe?