Lines Matching defs:tmps
2216 const char *tmps = SvPV_const(sv, len);
2223 tmpbuf = bytes_to_utf8((const U8*) tmps, &len);
2224 tmps = (char *) tmpbuf;
2227 (void) check_utf8_print((const U8*) tmps, len);
2234 U8 * const result = bytes_from_utf8((const U8*) tmps, &tmplen, &utf8);
2240 tmps = (char *) tmpbuf;
2245 assert((char *)result == tmps);
2261 if (len && (PerlIO_write(fp,tmps,len) == 0))
2439 const char *tmps = NULL;
2454 tmps = savepv(SvPV_nolen_const(really));
2455 SAVEFREEPV(tmps);
2458 (really && *tmps != '/')) /* will execvp use PATH? */
2461 if (really && *tmps) {
2462 PerlProc_execvp(tmps,EXEC_ARGV_CAST(argv));
2469 S_exec_failed(aTHX_ (really ? tmps : argv[0] ? argv[0] : ""), fd, do_report);