Searched refs:dataref (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dtrim.pl15 my ($self, $dataref ) = @_;
16 $$dataref =~ s/^\s+//m; # multi-line data
17 $$dataref =~ s/\s+$//m;
H A Dpost.pl10 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
14 my (@pairs) = split ( /[&;]/, $$dataref );
H A Ddragon.pl36 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
37 next if ! $$dataref;
40 my $n = 0; $n++ while $$dataref =~ /game\.php\?gid=\d+/g;
42 $$dataref =~ s!<TITLE>.*?</TITLE>!<TITLE>$n go game$s pending</TITLE>!s;
H A Dpdf.pl35 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
36 $$dataref = $saved++ ? ""
H A Dlogger.pl42 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
46 if ( $self->{binary} || $$dataref =~ /\0/ ) {
53 my (@pairs) = split( /[&;]/, $$dataref );
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dtrim.pl15 my ($self, $dataref ) = @_;
16 $$dataref =~ s/^\s+//m; # multi-line data
17 $$dataref =~ s/\s+$//m;
H A Dpost.pl10 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
14 my (@pairs) = split ( /[&;]/, $$dataref );
H A Ddragon.pl36 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
37 next if ! $$dataref;
40 my $n = 0; $n++ while $$dataref =~ /game\.php\?gid=\d+/g;
42 $$dataref =~ s!<TITLE>.*?</TITLE>!<TITLE>$n go game$s pending</TITLE>!s;
H A Dpdf.pl35 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
36 $$dataref = $saved++ ? ""
H A Dlogger.pl42 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
46 if ( $self->{binary} || $$dataref =~ /\0/ ) {
53 my (@pairs) = split( /[&;]/, $$dataref );
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/BodyFilter/
H A Dhtmltext.pm17 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
19 my $pos = pos($$dataref) = 0;
22 $pos = pos($$dataref);
23 $$dataref =~ /\G<\s*(?:script|style)[^>]*>/cgi # protect
25 $$dataref =~ /\G<\s*\/\s*(?:script|style)[^>]*>/cgi # unprotect
30 $$dataref =~ /\G<!--/cg && redo SCAN; # comment
31 $$dataref =~ /\G>/cg && redo SCAN; # lost >
32 $$dataref =~ /\G(?=(<[^\s\/?%!a-z]))/cgi && goto TEXT; # < in text
33 $$dataref =~ /\G(?:<[^>]*>)+/cg && redo SCAN; # tags
34 $$dataref
[all...]
H A Dlines.pm25 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
30 # if $$dataref ends with \n\n, we cannot know if there are
32 $$dataref =~ /^(.*\n\n)([^\n].*)/sg;
33 ( $$dataref, $$buffer) = defined $1 ? ($1, $2) : ("", $$dataref);
36 my $idx = length($$dataref) - length($$dataref) % $$eol;
37 $$buffer = substr( $$dataref, $idx );
38 $$dataref = substr( $$dataref,
[all...]
H A Dtags.pm10 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
13 my $idx = rindex( $$dataref, '<' );
14 if ( $idx > rindex( $$dataref, '>' ) ) {
15 $$buffer = substr( $$dataref, $idx );
16 $$dataref = substr( $$dataref, 0, $idx );
H A Dcomplete.pm11 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
14 $$buffer = $$dataref;
15 $$dataref = "";
42 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
H A Dhtmlparser.pm21 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
26 $self->{_parser}->parse($$dataref);
28 $$dataref = $self->{_parser}{output} if $self->{rw};
H A Dsimple.pm91 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/BodyFilter/
H A Dhtmltext.pm17 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
19 my $pos = pos($$dataref) = 0;
22 $pos = pos($$dataref);
23 $$dataref =~ /\G<\s*(?:script|style)[^>]*>/cgi # protect
25 $$dataref =~ /\G<\s*\/\s*(?:script|style)[^>]*>/cgi # unprotect
30 $$dataref =~ /\G<!--/cg && redo SCAN; # comment
31 $$dataref =~ /\G>/cg && redo SCAN; # lost >
32 $$dataref =~ /\G(?=(<[^\s\/?%!a-z]))/cgi && goto TEXT; # < in text
33 $$dataref =~ /\G(?:<[^>]*>)+/cg && redo SCAN; # tags
34 $$dataref
[all...]
H A Dlines.pm25 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
30 # if $$dataref ends with \n\n, we cannot know if there are
32 $$dataref =~ /^(.*\n\n)([^\n].*)/sg;
33 ( $$dataref, $$buffer) = defined $1 ? ($1, $2) : ("", $$dataref);
36 my $idx = length($$dataref) - length($$dataref) % $$eol;
37 $$buffer = substr( $$dataref, $idx );
38 $$dataref = substr( $$dataref,
[all...]
H A Dtags.pm10 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
13 my $idx = rindex( $$dataref, '<' );
14 if ( $idx > rindex( $$dataref, '>' ) ) {
15 $$buffer = substr( $$dataref, $idx );
16 $$dataref = substr( $$dataref, 0, $idx );
H A Dcomplete.pm11 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
14 $$buffer = $$dataref;
15 $$dataref = "";
42 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
H A Dhtmlparser.pm21 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
26 $self->{_parser}->parse($$dataref);
28 $$dataref = $self->{_parser}{output} if $self->{rw};
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/
H A DBodyFilter.pm40 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
41 $$dataref =~ s/PERL/Perl/g;
64 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
68 where $self is the filter object, $dataref is a reference to the chunk
89 Since $dataref is a I<reference> to the data string, the referent
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/
H A DBodyFilter.pm40 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
41 $$dataref =~ s/PERL/Perl/g;
64 my ( $self, $dataref, $message, $protocol, $buffer ) = @_;
68 where C<$self> is the filter object, C<$dataref> is a reference to the chunk
89 Since C<$dataref> is a I<reference> to the data string, the referent
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dks_keychain.c708 CFDataRef dataref; local
712 dataref = SecCertificateCopyData(cr);
713 if (dataref == NULL)
716 ret = hx509_cert_init_data(context, CFDataGetBytePtr(dataref), CFDataGetLength(dataref), &cert);
717 CFRelease(dataref);
/macosx-10.10.1/ppp-786.1.1/Controller/
H A Dscnc_main.c3112 CFDataRef dataref = 0; local
3128 if ((dataref = Serialize(statusdict, &dataptr, &datalen)) == 0) {
3147 if (dataref) {
3148 CFRelease(dataref);
3163 CFDataRef dataref = NULL; local
3179 if ((dataref = Serialize(statsdict, &dataptr, &datalen)) == 0) {
3198 if (dataref) {
3199 CFRelease(dataref);
3214 CFDataRef dataref = NULL; local
3229 if ((dataref
[all...]

Completed in 228 milliseconds

12