line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::Stream::IO::Select::Win32; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
XML::Stream::IO::Select::Win32 - Fake filehandle support for XML::Stream |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 SYNOPSIS |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
You should have no reason to use this directly. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=cut |
12
|
|
|
|
|
|
|
|
13
|
12
|
|
|
12
|
|
57
|
use strict; |
|
12
|
|
|
|
|
15
|
|
|
12
|
|
|
|
|
415
|
|
14
|
12
|
|
|
12
|
|
54
|
use warnings; |
|
12
|
|
|
|
|
18
|
|
|
12
|
|
|
|
|
328
|
|
15
|
|
|
|
|
|
|
|
16
|
12
|
|
|
12
|
|
52
|
use vars qw( $VERSION ); |
|
12
|
|
|
|
|
18
|
|
|
12
|
|
|
|
|
654
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
$VERSION = "1.24"; |
19
|
|
|
|
|
|
|
|
20
|
12
|
|
|
12
|
|
62
|
use base 'IO::Select'; |
|
12
|
|
|
|
|
18
|
|
|
12
|
|
|
|
|
1688
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
sub can_read { |
23
|
0
|
|
|
0
|
1
|
|
my $vec = shift; |
24
|
0
|
|
|
|
|
|
my $timeout = shift; |
25
|
|
|
|
|
|
|
|
26
|
0
|
|
|
|
|
|
$vec->handles(); |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |