| /openbsd-src/gnu/usr.bin/perl/cpan/File-Path/t/ |
| H A D | Path.t | 69 my @created = mkpath([@dir]); 71 is(scalar(@created), 7, "created list of directories"); 74 @created = mkpath([$tmp_base]); 75 is(scalar(@created), 0, "skipped making existing directory") 76 or diag("unexpectedly recreated @created"); 97 @created = mkpath(''); 98 is(scalar(@created), 0, "Can't create a directory named ''"); 213 @created = mkpath($tmp_base, 0); 215 is(scalar(@created), 0, "skipped making existing directories (old style 1)") 216 or diag("unexpectedly recreated @created"); [all …]
|
| H A D | Path_root.t | 35 my @created = mkpath([@dir]); 43 @created = make_path($dir, {owner => $max_user}); 44 is(scalar(@created), 2, "created a directory owned by $max_user..."); 46 my $dir_uid = (stat $created[0])[4]; 50 @created = make_path($dir, {group => $max_group}); 51 is(scalar(@created), 1, "created a directory owned by group $max_group..."); 53 my $dir_gid = (stat $created[0])[5]; 57 @created = make_path( $dir, { user => $max_user, 59 is(scalar(@created), 1, "created a directory owned by $max_user:$max_group..."); 61 ($dir_uid, $dir_gid) = (stat $created[0])[4,5]; [all …]
|
| H A D | Path_win32.t | 41 my (@created, $error); 47 @created = mkpath($deepest, { mode => 0711, user => $user, error => \$error }); 54 is(scalar(@created), 0, "No subdirectories created"); 56 is(scalar(@created), 3, "3 subdirectories created");
|
| H A D | taint.t | 29 my @created = make_path(@dir); 30 is(scalar(@created), 7, "created list of directories");
|
| /openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/ |
| H A D | object2.t | 54 my (@created, @destroyed); 61 $created[$ID] = 1; 76 $created[$ID] = 1; 90 $created[$ID] = 1; 106 ok($created[$ID], 'Created hash object in normal array'); 111 ok($created[$ID], 'Created hash object in normal array'); 116 ok($created[$ID], 'Created hash object in normal array'); 118 ok($created[$ID], 'Created hash object in normal array'); 124 ok($created[$ID], 'Created hash object in normal array'); 130 ok($created[$ID], 'Created array object in normal array'); [all …]
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | os400 | 16 >&212 byte 0x01 \b, created with SAVOBJ 17 >&212 byte 0x02 \b, created with SAVLIB 18 >&212 byte 0x07 \b, created with SAVCFG 19 >&212 byte 0x08 \b, created with SAVSECDTA 20 >&212 byte 0x0A \b, created with SAVSECDTA 21 >&212 byte 0x0B \b, created with SAVDLO 22 >&212 byte 0x0D \b, created with SAVLICPGM 23 >&212 byte 0x11 \b, created with SAVCHGOBJ
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/ |
| H A D | new1.C | 18 int newed, created; variable 26 return !(newed && !created); in main() 29 A::A() { created = 1; } in A() 30 A::~A() { created = 0; } in ~A()
|
| H A D | new2.C | 18 int newed, created; variable 27 return !(!newed && !created); in main() 30 A::A() { created = 1; } in A() 31 A::~A() { created = 0; } in ~A()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/Unix/ |
| H A D | README.txt | 13 As a rule, only those directories actually needing to be created should be 14 created. Also, further subdirectories could be created to reflect versions of
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | java-tree.def | 22 Once patched, the node will bear the type of the created array. */ 29 Once patched, the node will bear the type of the created array. */ 33 Operand 0 is the name of the class to be created 37 The type should be the one of the created class. */ 82 when the node is created.
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | varray.c | 41 int created; member 126 desc->created++; in varray_init() 234 d->created, d->allocated, d->resized, d->copied); in print_statistics() 236 i->count += d->created; in print_statistics()
|
| H A D | alloc-pool.c | 73 int created; member 155 desc->created++; in create_alloc_pool() 333 d->created, d->allocated, d->peak, d->current); in print_statistics() 335 i->count += d->created; in print_statistics()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/ |
| H A D | globmapper.t | 65 ok $gm, " created GlobMapper object" ; 86 ok $gm, " created GlobMapper object" ; 115 ok $gm, " created GlobMapper object" ; 140 ok $gm, " created GlobMapper object" ; 152 ok $gm, " created GlobMapper object" ; 174 ok $gm, " created GlobMapper object" 196 ok $gm, " created GlobMapper object" ; 217 ok $gm, " created GlobMapper object" ; 239 ok $gm, " created GlobMapper object" ;
|
| /openbsd-src/gnu/llvm/lld/ |
| H A D | .gitignore | 9 # Temp files created by most text editors. 11 # Merge files created by git.
|
| /openbsd-src/gnu/llvm/clang/ |
| H A D | .gitignore | 9 # Temp files created by most text editors. 11 # Merge files created by git.
|
| /openbsd-src/usr.bin/tmux/ |
| H A D | paste.c | 38 time_t created; member 90 /* Get paste buffer created. */ 94 return (pb->created); in paste_buffer_created() 207 pb->created = time(NULL); in paste_add() 303 pb->created = time(NULL); in paste_set()
|
| /openbsd-src/gnu/usr.bin/perl/ext/ODBM_File/ |
| H A D | ODBM_File.xs | 108 int created = 0; in odbm_TIEHASH() local 121 created = 1; in odbm_TIEHASH() 123 if (!created) in odbm_TIEHASH()
|
| /openbsd-src/gnu/llvm/lldb/ |
| H A D | .gitignore | 12 # Temp files created by most text editors. 14 # Merge files created by git.
|
| /openbsd-src/gnu/llvm/llvm/ |
| H A D | .gitignore | 57 # Temp files created by most text editors. 59 # Merge files created by git.
|
| /openbsd-src/gnu/usr.bin/perl/cpan/File-Path/lib/File/ |
| H A D | Path.pm | 180 my ( @created ); 195 push( @created, _mkpath( $data, [$parent] ) ); 199 push( @created, $path ); 244 return @created;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/OpenBSD-MkTemp/t/ |
| H A D | OpenBSD-MkTemp.t | 32 ok(-d $dir, "mkdtemp created directory"); 43 ok(-f $file1, "mkstemp created filed"); 54 ok(-f $file2, "mkstemps created filed");
|
| /openbsd-src/lib/librthread/ |
| H A D | rthread_sem_compat.c | 335 int created = 0, fd; in sem_open() local 390 created = 1; in sem_open() 405 if (created) { in sem_open()
|
| H A D | rthread_sem.c | 320 int created = 0, fd; in sem_open() local 375 created = 1; in sem_open() 390 if (created) { in sem_open()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/doc/ |
| H A D | configfiles.texi | 10 @file{gcc} directory. Some other files are created as temporary files 24 the build machine, then @file{auto-build.h} is also created, 51 The following configuration headers are created from the Makefile,
|
| /openbsd-src/distrib/syspatch/ |
| H A D | README | 67 Before building the first syspatch, the obj directory must be created. 81 At last, a syspatch(8) can be created. 86 "previous" fakeroot must be created manually by copying the previous one.
|