Home | History | Annotate | Download | only in gcc

Lines Matching defs:str_table

259 ctfc_strtable_append_str (ctf_strtable_t * str_table, const char * str)
266 if (!str_table->ctstab_head)
267 str_table->ctstab_head = ctf_string;
270 if (str_table->ctstab_tail)
271 str_table->ctstab_tail->cts_next = ctf_string;
273 str_table->ctstab_tail = ctf_string;
280 ctfc_strtable_add_str (ctf_strtable_t * str_table, const char * name,
286 uint32_t str_offset = str_table->ctstab_len;
292 ctf_string = CONST_CAST (char *, str_table->ctstab_estr);
302 ctfc_strtable_append_str (str_table, ctf_string);
304 str_table->ctstab_num++;
306 str_table->ctstab_len += len;
323 ctf_strtable_t *str_table = ctfc_get_strtab (ctfc, aux_str);
324 return ctfc_strtable_add_str (str_table, name, name_offset);