Searched defs:BPFLineInfo (Results 1 – 1 of 1) sorted by relevance
250 struct BPFLineInfo { struct251 uint32_t InsnOffset; ///< Byte offset in this section252 uint32_t FileNameOff; ///< File name index in the .BTF string table253 uint32_t LineOff; ///< Line index in the .BTF string table254 uint32_t LineCol; ///< Line num: line_col >> 10,256 uint32_t getLine() const { return LineCol >> 10; } in getLine()257 uint32_t getCol() const { return LineCol & 0x3ff; } in getCol()