Lines Matching refs:note_data
42 Elf_Data *note_data; member
107 Elf_Data *note_data = core_arg->note_data; in core_next_thread() local
126 while (offset = core_arg->thread_note_offset, offset < note_data->d_size in core_next_thread()
127 && (core_arg->thread_note_offset = gelf_getnote (note_data, offset, in core_next_thread()
133 ? "" : note_data->d_buf + name_offset); in core_next_thread()
134 const char *desc = note_data->d_buf + desc_offset; in core_next_thread()
177 Elf_Data *note_data = core_arg->note_data; in core_set_initial_registers() local
180 assert (offset < note_data->d_size); in core_set_initial_registers()
181 size_t getnote_err = gelf_getnote (note_data, offset, &nhdr, &name_offset, in core_set_initial_registers()
188 ? "" : note_data->d_buf + name_offset); in core_set_initial_registers()
189 const char *desc = note_data->d_buf + desc_offset; in core_set_initial_registers()
353 Elf_Data *note_data = NULL; in dwfl_core_file_attach() local
359 note_data = elf_getdata_rawchunk (core, phdr->p_offset, in dwfl_core_file_attach()
366 if (note_data == NULL) in dwfl_core_file_attach()
375 while (offset < note_data->d_size in dwfl_core_file_attach()
376 && (offset = gelf_getnote (note_data, offset, in dwfl_core_file_attach()
381 ? "" : note_data->d_buf + name_offset); in dwfl_core_file_attach()
382 const char *desc = note_data->d_buf + desc_offset; in dwfl_core_file_attach()
422 core_arg->note_data = note_data; in dwfl_core_file_attach()