This file is indexed.

/usr/lib/perl5/Devel/NYTProf/SubCallInfo.pm is in libdevel-nytprof-perl 5.06-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package Devel::NYTProf::SubCallInfo;

use strict;
use warnings;
use Carp;

use Devel::NYTProf::Constants qw(
    NYTP_SCi_CALL_COUNT
    NYTP_SCi_INCL_RTIME NYTP_SCi_EXCL_RTIME NYTP_SCi_RECI_RTIME
    NYTP_SCi_REC_DEPTH NYTP_SCi_CALLING_SUB
    NYTP_SCi_elements
);

sub calls      { shift->[NYTP_SCi_CALL_COUNT] }

sub incl_time  { shift->[NYTP_SCi_INCL_RTIME] }

sub excl_time  { shift->[NYTP_SCi_EXCL_RTIME] }

sub recur_max_depth { shift->[NYTP_SCi_REC_DEPTH] }

sub recur_incl_time { shift->[NYTP_SCi_RECI_RTIME] }


# vim:ts=8:sw=4:et
1;