Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 106) sorted by relevance

12345

/mirbsd/src/gnu/usr.bin/perl/
Dmakedef.pl1028 my $glob = readvar($f, sub { "Perl_" . $_[1] . $_[2] . "_ptr" });
1029 emit_symbols $glob;
1033 my $glob = readvar($perlvars_h);
1034 emit_symbols $glob;
1039 my $glob = readvar($perlvars_h);
1040 emit_symbols $glob;
1043 my $glob = readvar($intrpvar_h);
1044 emit_symbols $glob;
1047 my $glob = readvar($thrdvar_h);
1048 emit_symbols $glob;
DChanges5.00064 chomp(), glob()
73 Assignment of a reference to a glob value now just replaces the
74 single element of the glob corresponding to the reference type:
/mirbsd/src/gnu/usr.bin/perl/ext/File/Glob/
DChanges7 - implemented first pass access to glob(3),
13 - s/glob/bsd_glob/ to avoid calling and including the
14 system's glob stuff
15 - added GLOB_DEBUG for (surprise!) glob debugging
16 - tainted all filenames returned from &Glob::BSD::glob
20 - renamed the glob flags to GLOB_*
31 glob
DTODO5 Currently on non-Unix, when the glob code encounters a tilde glob
/mirbsd/src/gnu/usr.bin/perl/lib/Attribute/Handlers/demo/
Ddemo_chain.pl6 my ($glob, $sub) = @_[1,2];
8 *$glob = sub {
15 my ($glob, $sub) = @_[1,2];
17 *$glob = sub {
/mirbsd/src/sbin/restore/
Dinteractive.c83 glob_t glob; /* globbing information */ member
111 arglist.glob.gl_flags = GLOB_ALTDIRFUNC; in runcmdshell()
112 arglist.glob.gl_opendir = (void *)rst_opendir; in runcmdshell()
113 arglist.glob.gl_readdir = (void *)glob_readdir; in runcmdshell()
114 arglist.glob.gl_closedir = (void *)rst_closedir; in runcmdshell()
115 arglist.glob.gl_lstat = glob_stat; in runcmdshell()
116 arglist.glob.gl_stat = glob_stat; in runcmdshell()
123 globfree(&arglist.glob); in runcmdshell()
374 if ((globretval = glob(name, GLOB_ALTDIRFUNC | GLOB_NOESCAPE, in getcmd()
375 NULL, &ap->glob)) < 0) { in getcmd()
[all …]
/mirbsd/src/gnu/usr.bin/perl/wince/bin/
Dsearch.pl307 local($glob) = @_;
308 local(@parts) = $glob =~ m/\\.|[*?]|\[]?[^]]*]|[^[\\*?]+/g;
352 foreach $glob (keys %skip) {
353 $i = defined($iskip{$glob}) ? 'i': '';
354 push(@skip_test, '$name =~ m/'. &glob_to_regex($glob). "/$i");
367 foreach $glob (keys %dskip) {
368 $i = defined($idskip{$glob}) ? 'i': '';
369 push(@dskip_test, '$name =~ m/'. &glob_to_regex($glob). "/$i");
/mirbsd/src/gnu/usr.bin/perl/win32/bin/
Dsearch.pl312 local($glob) = @_;
313 local(@parts) = $glob =~ m/\\.|[*?]|\[]?[^]]*]|[^[\\*?]+/g;
357 foreach $glob (keys %skip) {
358 $i = defined($iskip{$glob}) ? 'i': '';
359 push(@skip_test, '$name =~ m/'. &glob_to_regex($glob). "/$i");
372 foreach $glob (keys %dskip) {
373 $i = defined($idskip{$glob}) ? 'i': '';
374 push(@dskip_test, '$name =~ m/'. &glob_to_regex($glob). "/$i");
/mirbsd/src/gnu/usr.bin/perl/lib/Test/Simple/t/
DMore.t163 my $glob = gensym;
164 is_deeply( $glob, $glob, 'the same glob' );
166 is_deeply( { foo => $sub, bar => [1, $glob] },
167 { foo => $sub, bar => [1, $glob] }
/mirbsd/src/gnu/usr.bin/perl/ext/B/B/
DLint.pm319 local(*glob);
322 *glob = $main::{$sym};
323 svref_2object(\*glob)->EGV->lintcv;
DDeparse.pm2905 my($glob, $part) = ($op->first, $op->last);
2906 $glob = $glob->first; # skip rv2gv
2907 $glob = $glob->first if $glob->name eq "rv2gv"; # this one's a bug
2908 my $scope = is_scope($glob);
2909 $glob = $self->deparse($glob, 0);
2911 return "*" . ($scope ? "{$glob}" : $glob) . "{$part}";
/mirbsd/src/gnu/usr.bin/perl/t/lib/warnings/
Dpp9 Use of uninitialized value in ref-to-glob cast [pp_rv2gv()]
54 Use of uninitialized value in ref-to-glob cast at - line 3.
Dgv21 Attempt to free unreferenced glob pointers [gp_free]
/mirbsd/src/usr.bin/less/
Dlglob.h29 #define GLOB_LIST(filename,list) glob(filename,GLOB_FLAGS,0,&list)
/mirbsd/src/gnu/usr.bin/perl/lib/Text/
DAbbrev.pm44 my ($word, $hashref, $glob, %table, $returnvoid);
/mirbsd/src/include/
Dglob.h96 int glob(const char *, int, int (*)(const char *, int), glob_t *);
/mirbsd/src/gnu/usr.bin/perl/pod/
Dperlcheat.pod18 *glob SCALAR VALUES
19 number, string, reference, glob, undef
Dperlsub.pod604 X<local, glob> X<glob>
610 creates a whole new symbol table entry for the glob C<name> in the
611 current package. That means that all variables in its glob slot ($name,
1032 myref *glob
1035 a scalar, an array, a hash, a code, or a glob.
1252 example that quite brazenly replaces the C<glob> operator with something
1258 @EXPORT_OK = 'glob';
1268 sub glob {
1282 #use REGlob 'GLOBAL_glob'; # override glob() in ALL namespaces
1284 use REGlob 'glob'; # override glob() in Foo:: only
[all …]
Dperlfaq5.pod97 local($^I, @ARGV) = ('.orig', glob("*.c"));
390 Use the <> (glob()) operator, documented in L<perlfunc>. Older
393 File::KGlob module (available from CPAN) gives more portable glob
488 In Perl versions earlier than v5.6.0, the internal glob() operator forks
489 csh(1) to do the actual glob expansion, but
494 To get around this, either upgrade to Perl v5.6.0 or later, do the glob
498 =head2 Is there a leak/bug in glob()?
499 X<glob>
502 use the glob() function or its angle-bracket alias in a scalar
504 best therefore to use glob() only in list context.
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/B/ramblings/
Dcurcop.runtime5 when a new glob is created for an OPpLVAL_INTRO,
/mirbsd/src/gnu/usr.bin/perl/ext/Safe/t/
Dsafe2.t62 $glob = "ok 11\n";
/mirbsd/src/usr.bin/ssh/
Dsftp-glob.c123 return (glob(pattern, flags | GLOB_ALTDIRFUNC | GLOB_LIMIT, errfunc, in remote_glob()
/mirbsd/src/gnu/usr.bin/cvs/m4/
Dgnulib-comp.m4185 lib/glob-libc.h
186 lib/glob.c
312 m4/glob.m4
/mirbsd/src/libexec/ftpd/
Dpopen.c106 if (glob(argv[argc], in ftpd_popen()
/mirbsd/src/gnu/usr.bin/perl/djgpp/
Dconfig.over36 -e 's=glob=='\

12345