Searched refs:ctf_string (Results 1 – 4 of 4) sorted by relevance
841 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; in output_btf_strs() local843 while (ctf_string) in output_btf_strs()845 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_string"); in output_btf_strs()846 ctf_string = ctf_string->cts_next; in output_btf_strs()849 ctf_string = ctfc->ctfc_aux_strtable.ctstab_head; in output_btf_strs()850 while (ctf_string) in output_btf_strs()852 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_aux_string"); in output_btf_strs()853 ctf_string = ctf_string->cts_next; in output_btf_strs()
261 ctf_string_t * ctf_string = ggc_cleared_alloc<ctf_string_t> (); in ctfc_strtable_append_str() local263 ctf_string->cts_str = str; in ctfc_strtable_append_str()264 ctf_string->cts_next = NULL; in ctfc_strtable_append_str()267 str_table->ctstab_head = ctf_string; in ctfc_strtable_append_str()271 str_table->ctstab_tail->cts_next = ctf_string; in ctfc_strtable_append_str()273 str_table->ctstab_tail = ctf_string; in ctfc_strtable_append_str()284 char * ctf_string; in ctfc_strtable_add_str() local292 ctf_string = CONST_CAST (char *, str_table->ctstab_estr); in ctfc_strtable_add_str()300 ctf_string = CONST_CAST (char *, ggc_strdup (name)); in ctfc_strtable_add_str()302 ctfc_strtable_append_str (str_table, ctf_string); in ctfc_strtable_add_str()[all …]
626 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; in output_ctf_strs() local628 while (ctf_string) in output_ctf_strs()630 dw2_asm_output_nstring (ctf_string->cts_str, -1, "ctf_string"); in output_ctf_strs()631 ctf_string = ctf_string->cts_next; in output_ctf_strs()
53 typedef struct GTY ((chain_next ("%h.cts_next"))) ctf_string struct56 struct ctf_string * cts_next; /* A list node. */ argument