list_namespaces
Retrieves a sorted list of namespaces and their class counts from a global-metadata.dat file, aiding in understanding code structure during reverse engineering.
Instructions
Return a sorted list of namespaces with class counts.
Scans the string table for class FQNs and buckets them by namespace. The class count is an upper bound (a FQN-shaped string might be a non-class entity, though rare).
Args: metadata_path: path to global-metadata.dat limit: maximum namespaces to return (default 200)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| metadata_path | Yes | ||
| limit | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |