Lines Matching refs:fip
1809 ctf_dwarf_function_count(ctf_cu_t *cup, Dwarf_Die die, ctf_funcinfo_t *fip, in ctf_dwarf_function_count() argument
1844 fip->ctc_flags |= CTF_FUNC_VARARG; in ctf_dwarf_function_count()
1846 fip->ctc_argc++; in ctf_dwarf_function_count()
1849 fip->ctc_argc++; in ctf_dwarf_function_count()
1851 fip->ctc_argc > 0) { in ctf_dwarf_function_count()
1852 fip->ctc_flags |= CTF_FUNC_VARARG; in ctf_dwarf_function_count()
1863 ctf_dwarf_convert_fargs(ctf_cu_t *cup, Dwarf_Die die, ctf_funcinfo_t *fip, in ctf_dwarf_convert_fargs() argument
1896 if (i == fip->ctc_argc) in ctf_dwarf_convert_fargs()
2447 ctf_funcinfo_t fip; in ctf_dwarf_duplicate_func() local
2450 if (ctf_func_info(cup->cu_ctfp, matchidx, &fip) == CTF_ERR) { in ctf_dwarf_duplicate_func()
2457 if (fip.ctc_argc != 0) { in ctf_dwarf_duplicate_func()
2458 args = ctf_alloc(sizeof (ctf_id_t) * fip.ctc_argc); in ctf_dwarf_duplicate_func()
2462 if (ctf_func_args(cup->cu_ctfp, matchidx, fip.ctc_argc, args) == in ctf_dwarf_duplicate_func()
2464 ctf_free(args, sizeof (ctf_id_t) * fip.ctc_argc); in ctf_dwarf_duplicate_func()
2469 ret = ctf_add_function(cup->cu_ctfp, idx, &fip, args); in ctf_dwarf_duplicate_func()
2471 ctf_free(args, sizeof (ctf_id_t) * fip.ctc_argc); in ctf_dwarf_duplicate_func()