Lines Matching defs:coderef
491 /* XXX For now, we just upgrade any coderef in the stash to a full GV
1883 The C<coderef> argument determines the type of function that will be
1885 will arrange for the coderef to be called. If it is not SvROK() then it
1934 Perl_mortal_destructor_sv(pTHX_ SV *coderef, SV *args) {
1937 (SvROK(coderef) && SvTYPE(SvRV(coderef)) == SVt_PVCV) /* perl coderef */
1939 (SvIOK(coderef) && !SvROK(coderef)) /* C function ref */
1942 (void)sv_magicext(variable, coderef, PERL_MAGIC_destruct,
1964 SV *coderef;
1973 coderef = mg->mg_obj;
1976 if (SvTYPE(coderef) == SVt_IV && !SvROK(coderef)) {
1977 SVFUNC_t f = INT2PTR(SVFUNC_t, SvIV(coderef));
2007 (void)call_sv(coderef, G_VOID | G_EVAL | G_KEEPERR);