Lines Matching defs:dic
120 dic_type_key(ctf_dict_t *dic, ctf_id_t ctf_type);
157 /// @param dic the dictionnary the type belongs to.
163 add_type(ctf_dict_t *dic, ctf_id_t ctf_type, type_base_sptr type)
165 string key = dic_type_key(dic, ctf_type);
180 /// @param dic the dictionnary the type belongs to.
184 lookup_type(ctf_dict_t *dic, ctf_id_t ctf_type)
187 std::string key = dic_type_key(dic, ctf_type);
1179 build_array_ctf_range(reader *rdr, ctf_dict_t *dic,
1189 type_base_sptr index_type = rdr->build_type(dic, index);
1664 /// @param dic the pointer to CTF dictionary where the @p type
1669 dic_type_key(ctf_dict_t *dic, ctf_id_t ctf_type)
1673 if (ctf_type_isparent (dic, ctf_type))
1676 key << std::hex << ctf_type << '-' << ctf_cuname(dic);