Lines Matching refs:line_info
562 * BPF_OBJ_GET_INFO_BY_FD: btf, func_info, line_info
631 During prog_load, func_info and line_info can be passed to kernel with proper
643 __aligned_u64 line_info; /* line info */
646 The func_info and line_info are an array of below, respectively.::
660 line_info_rec_size is the size of each line_info record. Passing the record
668 Below are requirements for line_info:
669 * the first insn in each func must have a line_info record pointing to it.
670 * the line_info insn_off is in strictly increasing order.
672 For line_info, the line number and column number are defined as below:
729 The .BTF.ext section encodes func_info, line_info and CO-RE relocations
755 contains func_info, line_info and core_relo sub-sections.
756 See :ref:`BPF_Prog_Load` for details about func_info and line_info
779 The line_info is organized as below.::
782 btf_ext_info_sec for section #1 /* line_info for section #1 */
783 btf_ext_info_sec for section #2 /* line_info for section #2 */
917 The following is an example showing how func_info and line_info can help prog
951 The following is an example of how line_info can help debugging verification