← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 11:58:52 2013
Reported on Tue Oct 15 12:01:02 2013

Filename/usr/share/perl5/DateTime/TimeZone/UTC.pm
StatementsExecuted 14 statements in 455µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11131µs38µsDateTime::TimeZone::UTC::::BEGIN@3DateTime::TimeZone::UTC::BEGIN@3
11119µs112µsDateTime::TimeZone::UTC::::BEGIN@9DateTime::TimeZone::UTC::BEGIN@9
11118µs66µsDateTime::TimeZone::UTC::::BEGIN@5DateTime::TimeZone::UTC::BEGIN@5
11113µs13µsDateTime::TimeZone::UTC::::BEGIN@8DateTime::TimeZone::UTC::BEGIN@8
0000s0sDateTime::TimeZone::UTC::::categoryDateTime::TimeZone::UTC::category
0000s0sDateTime::TimeZone::UTC::::is_dst_for_datetimeDateTime::TimeZone::UTC::is_dst_for_datetime
0000s0sDateTime::TimeZone::UTC::::is_utcDateTime::TimeZone::UTC::is_utc
0000s0sDateTime::TimeZone::UTC::::newDateTime::TimeZone::UTC::new
0000s0sDateTime::TimeZone::UTC::::offset_for_datetimeDateTime::TimeZone::UTC::offset_for_datetime
0000s0sDateTime::TimeZone::UTC::::offset_for_local_datetimeDateTime::TimeZone::UTC::offset_for_local_datetime
0000s0sDateTime::TimeZone::UTC::::short_name_for_datetimeDateTime::TimeZone::UTC::short_name_for_datetime
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package DateTime::TimeZone::UTC;
2
3362µs245µs
# spent 38µs (31+7) within DateTime::TimeZone::UTC::BEGIN@3 which was called: # once (31µs+7µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 3
use strict;
# spent 38µs making 1 call to DateTime::TimeZone::UTC::BEGIN@3 # spent 7µs making 1 call to strict::import
4
5372µs2115µs
# spent 66µs (18+49) within DateTime::TimeZone::UTC::BEGIN@5 which was called: # once (18µs+49µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 5
use vars qw ($VERSION);
# spent 66µs making 1 call to DateTime::TimeZone::UTC::BEGIN@5 # spent 49µs making 1 call to vars::import
611µs$VERSION = 0.01;
7
8360µs113µs
# spent 13µs within DateTime::TimeZone::UTC::BEGIN@8 which was called: # once (13µs+0s) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 8
use DateTime::TimeZone;
# spent 13µs making 1 call to DateTime::TimeZone::UTC::BEGIN@8
93250µs2112µs
# spent 112µs (19+93) within DateTime::TimeZone::UTC::BEGIN@9 which was called: # once (19µs+93µs) by DateTime::TimeZone::OffsetOnly::BEGIN@11 at line 9
use base 'DateTime::TimeZone';
# spent 112µs making 1 call to DateTime::TimeZone::UTC::BEGIN@9 # spent 93µs making 1 call to base::import, recursion: max depth 1, sum of overlapping time 93µs
10
11sub new {
12 my $class = shift;
13
14 return bless { name => 'UTC' }, $class;
15}
16
17sub is_dst_for_datetime {0}
18
19sub offset_for_datetime {0}
20sub offset_for_local_datetime {0}
21
22sub short_name_for_datetime {'UTC'}
23
24sub category {undef}
25
26sub is_utc {1}
27
2819µs1;
29
30__END__