Searched refs:SvPV_nolen (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/CPANInternal-140/Sub-Name/
H A DName.xs44 croak(PL_no_symref, SvPV_nolen(sub), "a subroutine");
45 else if ((gv = gv_fetchpv(SvPV_nolen(sub), FALSE, SVt_PVCV)))
48 croak("Undefined subroutine %s", SvPV_nolen(sub));
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael/
H A DRijndael.xs6 /* SvPV_nolen() macro first defined in 5.005_55 */
11 # define SvPV_nolen(sv) SvPV ((sv), nolen_na)
128 rijndael_setup(&RETVAL->ctx, keysize, (UINT8 *) SvPV_nolen(key));
170 (&self->ctx, rawbytes, size, (UINT8 *) SvPV_nolen(RETVAL), self->iv);
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael-1.10/
H A DRijndael.xs26 /* SvPV_nolen() macro first defined in 5.005_55 */
31 # define SvPV_nolen(sv) SvPV ((sv), nolen_na)
148 rijndael_setup(&RETVAL->ctx, keysize, (UINT8 *) SvPV_nolen(key));
190 (&self->ctx, rawbytes, size, (UINT8 *) SvPV_nolen(RETVAL), self->iv);
/macosx-10.9.5/swig-10/Lib/perl5/
H A Dperlprimtypes.swg63 const char *nptr = SvPV_nolen(obj);
123 const char *nptr = SvPV_nolen(obj);
186 const char *nptr = SvPV_nolen(obj);
258 const char *nptr = SvPV_nolen(obj);
311 const char *nptr = SvPV_nolen(obj);
H A Dtypemaps.i89 temp = strtoll(SvPV_nolen($input), 0, 0);
96 temp = strtoull(SvPV_nolen($input), 0, 0);
H A Dperlrun.swg395 c = SvPV_nolen(obj);
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dperl_syck.h223 sv_catpv(sub, SvPV_nolen(text)); /* XXX no sv_catsv! */
232 cv = eval_pv(SvPV_nolen(sub), TRUE);
240 croak("code %s did not evaluate to a subroutine reference\n", SvPV_nolen(sub));
805 sv = newSVpvn(SvPV_nolen(sv), sv_len(sv));
840 syck_emit_scalar( e, OBJOF("tag:!perl:regexp"), SCALAR_STRING, 0, 0, 0, SvPV_nolen(sv), len );
865 syck_emit_scalar(e, OBJOF("str"), SCALAR_NUMBER, 0, 0, 0, SvPV_nolen(sv), sv_len(sv));
877 syck_emit_scalar(e, OBJOF("str"), SCALAR_STRING, 0, 0, 0, SvPV_nolen(sv), len);
884 char *str = SvPV_nolen(sv);
903 syck_emit_scalar(e, OBJOF("str"), SCALAR_STRING, 0, 0, 0, SvPV_nolen(sv), len);
1019 reallen = strlen(SvPV_nolen(tex
[all...]
H A Dppport.h813 SvPV_nolen|5.006000||p
4454 * Use the SvPV_nolen() or SvPV_nolen_const() macros instead of sv_2pv_nolen().
4457 # define sv_2pv_nolen(sv) SvPV_nolen(sv)
4680 #ifndef SvPV_nolen
4681 # define SvPV_nolen(sv) \ macro
5197 warn("%s", SvPV_nolen(sv));
/macosx-10.9.5/CPANInternal-140/TermReadKey/
H A Dppport.h549 #ifndef SvPV_nolen
550 # define SvPV_nolen(sv) \ macro
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A DLibXML.xs121 croak("%s", SvPV_nolen(sv));
143 croak("%s", SvPV_nolen(sv));
165 croak("LibXML_validity_warning_ctx internal error: context was null (%s)", SvPV_nolen(sv));
199 warn("%s", SvPV_nolen(saved_error));
202 croak("%s", SvPV_nolen(saved_error));
240 sv_catpvf(error, ": %s", SvPV_nolen(msg_sv));
243 warn("%s", SvPV_nolen(error));
247 sv_catpvf(error_sv, "%s ", SvPV_nolen(error));
249 croak("%s",SvPV_nolen(error));
262 croak("%s", SvPV_nolen(error_s
[all...]
H A Dppport.h711 SvPV_nolen|5.006000||p
3646 #ifndef SvPV_nolen
3673 * Use the SvPV_nolen() macro instead of sv_2pv_nolen().
3676 /* SvPV_nolen depends on sv_2pv_nolen */
3677 #define SvPV_nolen(sv) \ macro
/macosx-10.9.5/CPANInternal-140/Class-C3-XS/
H A DXS.xs238 "merging failed on parent '%s'", stashname, SvPV_nolen(cand));
495 Perl_croak(aTHX_ "No such class: '%s'!", SvPV_nolen(classname));
551 Perl_croak(aTHX_ "No such class: '%s'!", SvPV_nolen(classname));
/macosx-10.9.5/CPANInternal-140/Params-Validate/
H A DValidate.xs368 caller = eval_pv(SvPV_nolen(buffer), 1);
803 pkg = SvPV_nolen(get_sv("Params::Validate::CALLER", 0));
808 caller = eval_pv(SvPV_nolen(buffer), 1);
813 pkg = SvPV_nolen(caller);
863 croak("The normalize_keys callback did not return a defined value when normalizing the key '%s'", SvPV_nolen(copy));
910 SvPV_nolen(normalized), SvPV_nolen(HeSVKEY_force(he)));
1009 if (!hv_exists(p, SvPV_nolen(depend_name),
1016 if (!hv_exists(specs, SvPV_nolen(depend_name),
1026 croak(SvPV_nolen(buffe
[all...]
H A Dppport.h813 SvPV_nolen|5.006000||p
4454 * Use the SvPV_nolen() or SvPV_nolen_const() macros instead of sv_2pv_nolen().
4457 # define sv_2pv_nolen(sv) SvPV_nolen(sv)
4680 #ifndef SvPV_nolen
4681 # define SvPV_nolen(sv) \ macro
5197 warn("%s", SvPV_nolen(sv));
/macosx-10.9.5/CPANInternal-140/JSON-XS/
H A DXS.xs640 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
646 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
666 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
672 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
745 SvPV_nolen (sv), SvFLAGS (sv));
1443 * But it doesn't fix it, so try another workaround, call SvPV_nolen
1445 * Damnit, SvPV_nolen still trips over yet another assertion. This
1514 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1919 sv_chop (self->incr_text, SvPV_nolen (self->incr_text) + self->incr_pos);
/macosx-10.9.5/CPANInternal-140/JSON-XS-2.33/
H A DXS.xs737 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
743 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
763 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
769 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
842 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
1540 * But it doesn't fix it, so try another workaround, call SvPV_nolen
1542 * Damnit, SvPV_nolen still trips over yet another assertion. This
1611 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
2043 sv_chop (self->incr_text, SvPV_nolen (self->incr_text) + self->incr_pos);
/macosx-10.9.5/CPANInternal-140/Clone/
H A DClone.xs53 TRACEME(("clone item %s\n", SvPV_nolen(key) ));
/macosx-10.9.5/CPANInternal-140/DateTime/lib/
H A DDateTime.xs204 croak("Invalid UTC RD seconds value: %s", SvPV_nolen(newSViv(utc_secs)));
/macosx-10.9.5/CPANInternal-140/PathTools/
H A DCwd.xs434 path = pathsv ? SvPV_nolen(pathsv) : (char *)".";
H A Dppport.h721 SvPV_nolen|5.006000||p
3586 #ifndef SvPV_nolen
3613 * Use the SvPV_nolen() macro instead of sv_2pv_nolen().
3616 /* SvPV_nolen depends on sv_2pv_nolen */
3617 #define SvPV_nolen(sv) \ macro
/macosx-10.9.5/CPANInternal-140/Class-C3-XS-0.13/
H A DXS.xs568 Perl_croak(aTHX_ "No such class: '%s'!", SvPV_nolen(classname));
624 Perl_croak(aTHX_ "No such class: '%s'!", SvPV_nolen(classname));
/macosx-10.9.5/CPANInternal-140/Sub-Identify/
H A Dppport.h816 SvPV_nolen|5.006000||p
4505 * Use the SvPV_nolen() or SvPV_nolen_const() macros instead of sv_2pv_nolen().
4508 # define sv_2pv_nolen(sv) SvPV_nolen(sv)
4737 #ifndef SvPV_nolen
4738 # define SvPV_nolen(sv) \ macro
5254 warn("%s", SvPV_nolen(sv));
/macosx-10.9.5/CPANInternal-140/Sub-Identify-0.04/
H A Dppport.h816 SvPV_nolen|5.006000||p
4505 * Use the SvPV_nolen() or SvPV_nolen_const() macros instead of sv_2pv_nolen().
4508 # define sv_2pv_nolen(sv) SvPV_nolen(sv)
4737 #ifndef SvPV_nolen
4738 # define SvPV_nolen(sv) \ macro
5254 warn("%s", SvPV_nolen(sv));
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage/
H A Dppport.h698 SvPV_nolen|5.006000||p
3520 #ifndef SvPV_nolen
3547 * Use the SvPV_nolen() macro instead of sv_2pv_nolen().
3550 /* SvPV_nolen depends on sv_2pv_nolen */
3551 #define SvPV_nolen(sv) \ macro
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage-0.03/
H A Dppport.h698 SvPV_nolen|5.006000||p
3520 #ifndef SvPV_nolen
3547 * Use the SvPV_nolen() macro instead of sv_2pv_nolen().
3550 /* SvPV_nolen depends on sv_2pv_nolen */
3551 #define SvPV_nolen(sv) \ macro

Completed in 445 milliseconds

12