Home
last modified time | relevance | path

Searched refs:text_len (Results 1 – 6 of 6) sorted by relevance

/linux/fs/
H A Dbinfmt_flat.c86 unsigned long text_len; /* Length of text segment */ member
309 unsigned long text_len; in calc_reloc() local
315 text_len = p->lib_list[0].text_len; in calc_reloc()
317 if (r > start_brk - start_data + text_len) { in calc_reloc()
319 r, start_brk-start_data+text_len, text_len); in calc_reloc()
323 if (r < text_len) /* In text segment */ in calc_reloc()
326 addr = r - text_len + start_data; in calc_reloc()
411 u32 text_len, data_len, bss_len, stack_len, full_data, flags; in load_flat_file() local
423 text_len = ntohl(hdr->data_start); in load_flat_file()
481 if ((text_len | data_len | bss_len | stack_len | relocs | full_data) >> 28) { in load_flat_file()
[all …]
/linux/kernel/printk/
H A Dprintk.c584 static void truncate_msg(u16 *text_len, u16 *trunc_msg_len) in truncate_msg() argument
592 if (*text_len > max_text_len) in truncate_msg()
593 *text_len = max_text_len; in truncate_msg()
597 if (*text_len >= *trunc_msg_len) in truncate_msg()
598 *text_len -= *trunc_msg_len; in truncate_msg()
663 const char *text, size_t text_len, in msg_add_ext_text() argument
670 for (i = 0; i < text_len; i++) { in msg_add_ext_text()
700 char *text, size_t text_len, in msg_print_ext_body() argument
705 len = msg_add_ext_text(buf, size, text, text_len, '\n'); in msg_print_ext_body()
1016 VMCOREINFO_OFFSET(printk_info, text_len); in log_buf_vmcoreinfo_setup()
[all …]
/linux/scripts/gdb/linux/
H A Ddmesg.py125 text_len = utils.read_u16(info, len_off)
128 if end - text_start < text_len:
129 text_len = end - text_start
132 text_len).tobytes()
133 text = text_data[0:text_len].decode(encoding='utf8', errors='replace')
/linux/Documentation/admin-guide/kdump/
H A Dgdbmacros.txt190 set var $text_len = 0
202 if ($next - $begin < $info->text_len)
203 set var $text_len = $next - $begin
205 set var $text_len = $info->text_len
231 if ($text_len)
232 eval "printf \"%%%d.%ds\", $log", $text_len, $text_len
/linux/arch/powerpc/kernel/
H A Dnvram_64.c353 static int zip_oops(size_t text_len) in zip_oops() argument
356 int zipped_len = nvram_compress(big_oops_buf, oops_data, text_len, in zip_oops()
654 size_t text_len; in oops_to_nvram() local
687 big_oops_buf, big_oops_buf_sz, &text_len); in oops_to_nvram()
688 rc = zip_oops(text_len); in oops_to_nvram()
693 oops_data, oops_data_sz, &text_len); in oops_to_nvram()
696 oops_hdr->report_length = cpu_to_be16(text_len); in oops_to_nvram()
701 (int) (sizeof(*oops_hdr) + text_len), err_type, in oops_to_nvram()
/linux/drivers/media/test-drivers/vidtv/
H A Dvidtv_psi.h135 u8 text_len; member