MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / GetDebugInfoStream

Method GetDebugInfoStream

Bcore/src/main/cpp/dex/dex_file.h:753–760  ·  view source on GitHub ↗

Get the pointer to the start of the debugging data

Source from the content-addressed store, hash-verified

751
752 // Get the pointer to the start of the debugging data
753 const uint8_t* GetDebugInfoStream(uint32_t debug_info_off) const {
754 // Check that the offset is in bounds.
755 // Note that although the specification says that 0 should be used if there
756 // is no debug information, some applications incorrectly use 0xFFFFFFFF.
757 return (debug_info_off == 0 || debug_info_off >= data_size_)
758 ? nullptr
759 : DataBegin() + debug_info_off;
760 }
761
762 struct PositionInfo {
763 PositionInfo() = default;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected