Look up source file information for all of the addresses currently stored in the global list of AddressInfo objects.
(options)
| 119 | |
| 120 | |
| 121 | def lookup_addresses(options): |
| 122 | """ |
| 123 | Look up source file information for all of the addresses currently stored |
| 124 | in the global list of AddressInfo objects. |
| 125 | """ |
| 126 | global g_addrs_by_filename |
| 127 | for (file, addresses) in g_addrs_by_filename.items(): |
| 128 | translate_file_addresses(file, addresses.values(), options) |
| 129 | |
| 130 | |
| 131 | class Entry(object): |
no test coverage detected