diff options
Diffstat (limited to 'plugins/dex')
-rw-r--r-- | plugins/dex/python/format.c | 22 | ||||
-rw-r--r-- | plugins/dex/python/method.c | 6 | ||||
-rw-r--r-- | plugins/dex/python/pool.c | 118 |
3 files changed, 73 insertions, 73 deletions
diff --git a/plugins/dex/python/format.c b/plugins/dex/python/format.c index c1e4c40..fa65b25 100644 --- a/plugins/dex/python/format.c +++ b/plugins/dex/python/format.c @@ -128,17 +128,17 @@ static PyObject *py_dex_format_read_type_list(PyObject *self, PyObject *args) bool status; /* Bilan de l'opération */ uint32_t i; /* Boucle de parcours */ -#define DEX_POOL_READ_TYPE_LIST_METHOD PYTHON_METHOD_DEF \ -( \ - read_type_list, "$self, offset, /", \ - METH_VARARGS, py_dex_format, \ - "Provide the raw data of a given type list as an array of pychrysalide.PyStructObject" \ - " instances." \ - "\n" \ - "All the items are fields extracted from the Dex *type_list* structure:\n" \ - "* type_idx: index into the *type_ids* list.\n" \ - "\n" \ - "In case of error, the function returns None." \ +#define DEX_POOL_READ_TYPE_LIST_METHOD PYTHON_METHOD_DEF \ +( \ + read_type_list, "$self, offset, /", \ + METH_VARARGS, py_dex_format, \ + "Provide the raw data of a given type list as an array of pychrysalide.StructObject" \ + " instances." \ + "\n" \ + "All the items are fields extracted from the Dex *type_list* structure:\n" \ + "* type_idx: index into the *type_ids* list.\n" \ + "\n" \ + "In case of error, the function returns None." \ ) ret = PyArg_ParseTuple(args, "I", &offset); diff --git a/plugins/dex/python/method.c b/plugins/dex/python/method.c index fab8e2e..fc56f29 100644 --- a/plugins/dex/python/method.c +++ b/plugins/dex/python/method.c @@ -77,7 +77,7 @@ static PyObject *py_dex_method_get_id_item(PyObject *self, void *closure) #define DEX_METHOD_ID_ITEM_ATTRIB PYTHON_GET_DEF_FULL \ ( \ id_item, py_dex_method, \ - "pychrysalide.PyStructObject instance of identifiers used by the method.\n" \ + "pychrysalide.StructObject instance of identifiers used by the method.\n" \ "\n" \ "All the fields are extracted from the Dex *method_id_item* structure:\n" \ "* class_idx: index into the *type_ids* list for the definer of the method ;\n" \ @@ -118,7 +118,7 @@ static PyObject *py_dex_method_get_encoded(PyObject *self, void *closure) #define DEX_METHOD_ENCODED_ATTRIB PYTHON_GET_DEF_FULL \ ( \ encoded, py_dex_method, \ - "pychrysalide.PyStructObject instance for encoded information about the Dex method.\n" \ + "pychrysalide.StructObject instance for encoded information about the Dex method.\n" \ "\n" \ "All the fields are extracted from the Dex *encoded_method* structure:\n" \ "* method_idx_diff: index into the *method_ids* list for the identity of the method ;\n" \ @@ -159,7 +159,7 @@ static PyObject *py_dex_method_get_code_item(PyObject *self, void *closure) #define DEX_METHOD_CODE_ITEM_ATTRIB PYTHON_GET_DEF_FULL \ ( \ code_item, py_dex_method, \ - "pychrysalide.PyStructObject instance of code information about the Dex method," \ + "pychrysalide.StructObject instance of code information about the Dex method," \ " or None if none.\n" \ "\n" \ "All the fields are extracted from the Dex *code_item* structure:\n" \ diff --git a/plugins/dex/python/pool.c b/plugins/dex/python/pool.c index f68fe98..ddfc900 100644 --- a/plugins/dex/python/pool.c +++ b/plugins/dex/python/pool.c @@ -100,19 +100,19 @@ static PyObject *py_dex_pool_get_raw_type(PyObject *self, PyObject *args) type_id_item type_id; /* Elément à transmettre */ bool status; /* Bilan de l'opération */ -#define DEX_POOL_GET_RAW_TYPE_METHOD PYTHON_METHOD_DEF \ -( \ - get_raw_type, "$self, index, /", \ - METH_VARARGS, py_dex_pool, \ - "Provide the raw data of a given type in the Dex pool as a pychrysalide.PyStructObject" \ - " instance." \ - "\n" \ - "Indexes start at 0.\n" \ - "\n" \ - "All the fields are extracted from the Dex *type_id_item* structure:\n" \ - "* descriptor_idx: index into the string_ids list for the descriptor string.\n" \ - "\n" \ - "In case of error, the function returns None." \ +#define DEX_POOL_GET_RAW_TYPE_METHOD PYTHON_METHOD_DEF \ +( \ + get_raw_type, "$self, index, /", \ + METH_VARARGS, py_dex_pool, \ + "Provide the raw data of a given type in the Dex pool as a pychrysalide.StructObject" \ + " instance." \ + "\n" \ + "Indexes start at 0.\n" \ + "\n" \ + "All the fields are extracted from the Dex *type_id_item* structure:\n" \ + "* descriptor_idx: index into the string_ids list for the descriptor string.\n" \ + "\n" \ + "In case of error, the function returns None." \ ) ret = PyArg_ParseTuple(args, "I", &index); @@ -158,21 +158,21 @@ static PyObject *py_dex_pool_get_raw_field(PyObject *self, PyObject *args) field_id_item field_id; /* Elément à transmettre */ bool status; /* Bilan de l'opération */ -#define DEX_POOL_GET_RAW_FIELD_METHOD PYTHON_METHOD_DEF \ -( \ - get_raw_field, "$self, index, /", \ - METH_VARARGS, py_dex_pool, \ - "Provide the raw data of a given field in the Dex pool as a pychrysalide.PyStructObject" \ - " instance." \ - "\n" \ - "Indexes start at 0.\n" \ - "\n" \ - "All the fields are extracted from the Dex *field_id_item* structure:\n" \ - "* class_idx: index into the type_ids list for the definer of the field ;\n" \ - "* type_idx: index into the type_ids list for the type of the field ;\n" \ - "* name_idx: index into the string_ids list for the name of the field.\n" \ - "\n" \ - "In case of error, the function returns None." \ +#define DEX_POOL_GET_RAW_FIELD_METHOD PYTHON_METHOD_DEF \ +( \ + get_raw_field, "$self, index, /", \ + METH_VARARGS, py_dex_pool, \ + "Provide the raw data of a given field in the Dex pool as a pychrysalide.StructObject" \ + " instance." \ + "\n" \ + "Indexes start at 0.\n" \ + "\n" \ + "All the fields are extracted from the Dex *field_id_item* structure:\n" \ + "* class_idx: index into the type_ids list for the definer of the field ;\n" \ + "* type_idx: index into the type_ids list for the type of the field ;\n" \ + "* name_idx: index into the string_ids list for the name of the field.\n" \ + "\n" \ + "In case of error, the function returns None." \ ) ret = PyArg_ParseTuple(args, "I", &index); @@ -218,21 +218,21 @@ static PyObject *py_dex_pool_get_raw_prototype(PyObject *self, PyObject *args) proto_id_item proto_id; /* Elément à transmettre */ bool status; /* Bilan de l'opération */ -#define DEX_POOL_GET_RAW_PROTOTYPE_METHOD PYTHON_METHOD_DEF \ -( \ - get_raw_prototype, "$self, index, /", \ - METH_VARARGS, py_dex_pool, \ - "Provide the raw data of a given prototype in the Dex pool as a pychrysalide.PyStructObject" \ - " instance." \ - "\n" \ - "Indexes start at 0.\n" \ - "\n" \ - "All the fields are extracted from the Dex *proto_id_item* structure:\n" \ - "* shorty_idx: index into the *string_ids* list for the short-form descriptor string ;\n" \ - "* return_type_idx: index into the *type_ids* list for the return type ;\n" \ - "* parameters_off: offset from the start of the Dex file to the list of parameter types." \ - "\n" \ - "In case of error, the function returns None." \ +#define DEX_POOL_GET_RAW_PROTOTYPE_METHOD PYTHON_METHOD_DEF \ +( \ + get_raw_prototype, "$self, index, /", \ + METH_VARARGS, py_dex_pool, \ + "Provide the raw data of a given prototype in the Dex pool as a pychrysalide.StructObject" \ + " instance." \ + "\n" \ + "Indexes start at 0.\n" \ + "\n" \ + "All the fields are extracted from the Dex *proto_id_item* structure:\n" \ + "* shorty_idx: index into the *string_ids* list for the short-form descriptor string ;\n" \ + "* return_type_idx: index into the *type_ids* list for the return type ;\n" \ + "* parameters_off: offset from the start of the Dex file to the list of parameter types." \ + "\n" \ + "In case of error, the function returns None." \ ) ret = PyArg_ParseTuple(args, "I", &index); @@ -278,21 +278,21 @@ static PyObject *py_dex_pool_get_raw_method(PyObject *self, PyObject *args) method_id_item method_id; /* Elément à transmettre */ bool status; /* Bilan de l'opération */ -#define DEX_POOL_GET_RAW_METHOD_METHOD PYTHON_METHOD_DEF \ -( \ - get_raw_method, "$self, index, /", \ - METH_VARARGS, py_dex_pool, \ - "Provide the raw data of a given method in the Dex pool as a pychrysalide.PyStructObject" \ - " instance." \ - "\n" \ - "Indexes start at 0.\n" \ - "\n" \ - "All the fields are extracted from the Dex *method_id_item* structure:\n" \ - "* class_idx: index into the type_ids list for the definer of the method ;\n" \ - "* proto_idx: index into the proto_ids list for the prototype of the method ;\n" \ - "* name_idx: index into the string_ids list for the name of the method.\n" \ - "\n" \ - "In case of error, the function returns None." \ +#define DEX_POOL_GET_RAW_METHOD_METHOD PYTHON_METHOD_DEF \ +( \ + get_raw_method, "$self, index, /", \ + METH_VARARGS, py_dex_pool, \ + "Provide the raw data of a given method in the Dex pool as a pychrysalide.StructObject" \ + " instance." \ + "\n" \ + "Indexes start at 0.\n" \ + "\n" \ + "All the fields are extracted from the Dex *method_id_item* structure:\n" \ + "* class_idx: index into the type_ids list for the definer of the method ;\n" \ + "* proto_idx: index into the proto_ids list for the prototype of the method ;\n" \ + "* name_idx: index into the string_ids list for the name of the method.\n" \ + "\n" \ + "In case of error, the function returns None." \ ) ret = PyArg_ParseTuple(args, "I", &index); @@ -342,7 +342,7 @@ static PyObject *py_dex_pool_get_raw_class(PyObject *self, PyObject *args) ( \ get_raw_class, "$self, index, /", \ METH_VARARGS, py_dex_pool, \ - "Provide the raw data of a given class in the Dex pool as a pychrysalide.PyStructObject" \ + "Provide the raw data of a given class in the Dex pool as a pychrysalide.StructObject" \ " instance." \ "\n" \ "Indexes start at 0.\n" \ |