← Index
NYTProf Performance Profile   « line view »
For /usr/local/libexec/sympa/task_manager-debug.pl
  Run on Tue Jun 1 22:32:51 2021
Reported on Tue Jun 1 22:35:12 2021

Filename/usr/local/lib/perl5/5.32/mach/MIME/QuotedPrint.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
0000s0sMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
0000s0sMIME::QuotedPrint::::BEGIN@4MIME::QuotedPrint::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package MIME::QuotedPrint;
2
3use strict;
4use vars qw(@ISA @EXPORT $VERSION);
5
6require Exporter;
7@ISA = qw(Exporter);
8@EXPORT = qw(encode_qp decode_qp);
9
10$VERSION = "3.13";
11
12use MIME::Base64; # will load XS version of {en,de}code_qp()
13
14*encode = \&encode_qp;
15*decode = \&decode_qp;
16
171;
18
19__END__