Lines Matching defs:stored
192 /* Only the current MRO is stored, so this owns the data. */
242 HV *stored = NULL;
279 /* "stored" is used to keep track of all of the classnames we have added to
316 if (stored) {
321 HE *const he = hv_fetch_ent(stored, subsv, 1, 0);
348 stored = MUTABLE_HV(sv_2mortal((SV*)newHVhv(HvMROMETA(basestash)->isa)));
361 stored = MUTABLE_HV(newSV_type_mortal(SVt_PVHV));
362 (void) hv_stores(stored, "UNIVERSAL", &PL_sv_undef);
364 newSVhek(HeKEY_hek(hv_store_ent(stored, sv,
371 stored = MUTABLE_HV(newSV_type_mortal(SVt_PVHV));
372 (void) hv_stores(stored, "UNIVERSAL", &PL_sv_undef);
375 (void) hv_store_ent(stored, our_name, &PL_sv_undef, 0);
377 SvREFCNT_inc_simple_void_NN(stored);
378 SvTEMP_off(stored);
379 SvREADONLY_on(stored);
381 meta->isa = stored;
500 /* Only the current MRO is stored, so this owns the data. */ \