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()
187 ? "" : note_data->d_buf + name_offset); in core_set_initial_registers()
188 const char *desc = note_data->d_buf + desc_offset; in core_set_initial_registers()
352 Elf_Data *note_data = NULL; in dwfl_core_file_attach() local
358 note_data = elf_getdata_rawchunk (core, phdr->p_offset, in dwfl_core_file_attach()
365 if (note_data == NULL) in dwfl_core_file_attach()
374 while (offset < note_data->d_size in dwfl_core_file_attach()
375 && (offset = gelf_getnote (note_data, offset, in dwfl_core_file_attach()
380 ? "" : note_data->d_buf + name_offset); in dwfl_core_file_attach()
381 const char *desc = note_data->d_buf + desc_offset; in dwfl_core_file_attach()
421 core_arg->note_data = note_data; in dwfl_core_file_attach()