Home
last modified time | relevance | path

Searched refs:cloned (Results 1 – 25 of 56) sorted by relevance

123

/openbsd/gnu/usr.bin/perl/dist/threads-shared/lib/threads/
H A Dshared.pm94 my ($item, $cloned) = @_;
105 if (exists($cloned->{$addr})) {
107 return $cloned->{$addr};
119 $cloned->{$addr} = $copy;
121 push(@$copy, map { $make_shared->($_, $cloned) } @$item);
129 $cloned->{$addr} = $copy;
132 $copy->{$key} = $make_shared->($item->{$key}, $cloned);
141 $cloned->{$addr} = $copy;
150 $cloned->{$addr} = $copy;
156 $cloned->{$addr} = $copy;
[all …]
/openbsd/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dclone.t62 ok($test++, $foo eq 'test', 'cloned string');
65 ok($test++, $$foo eq 'test', 'cloned scalar ref');
68 ok($test++, $$foo eq 'test', 'cloned scalar ref in thread');
129 ok($test++, $$bork == 99, 'cloned scalar ref object');
134 ok($test++, $$bork == 99, 'cloned scalar ref object in thread');
161 ok($test++, is_shared($copy->{'ary'}->[2]), 'Shared element in cloned obj');
166 ok($test++, ref($copy) eq 'Foo', 'Obj cloned by thread');
169 ok($test++, $copy->{'ary'}->[3]->{'bar'}->[0] eq 'baz', 'Deeply cloned');
180 ok($test++, ! defined($copy), 'Nothing cloned');
187 ok($test++, ! defined($copy), 'Nothing cloned');
[all …]
/openbsd/gnu/usr.bin/perl/dist/Storable/t/
H A Ddclone.t65 my $cloned = dclone(dclone($hash));
66 is($$cloned{''}[0], \$$cloned{a});
68 $$cloned{a} = "blah";
69 is($$cloned{''}[0], \$$cloned{a});
H A Dcanonical.t135 my $cloned = dclone(dclone($hash));
136 is($$cloned{''}[0], \$$cloned{a});
138 $$cloned{a} = "blah";
139 is($$cloned{''}[0], \$$cloned{a});
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta-Requirements/t/
H A Dfinalize.t73 my $cloned = $req->clone;
75 $cloned->add_minimum('Foo::Bar', 12);
78 $cloned->as_string_hash,
83 "we can alter a cloned V:R (finalization does not survive cloning)",
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta/t/
H A Dprereqs-finalize.t48 ok($prereqs->is_finalized, 'cloned obj is not finalized');
72 isa_ok($clone, 'CPAN::Meta::Prereqs', 'cloned prereqs obj');
74 ok(! $clone->is_finalized, 'cloned obj is not finalized');
H A Dmeta-obj.t94 isnt( $meta->resources, $meta->{resources}, "->resource (map values are deep cloned)");
/openbsd/regress/sys/netinet/bindconnect/
H A DREADME7 -d delroute threads deleting cloned routes, default 0
28 of cloned routes during source address selection. To stress test
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dlinux-nat.h34 int cloned; member
H A Dlinux-nat.c814 lp->cloned = 1; in lin_lwp_attach_lwp()
868 lp->cloned = 1; in linux_nat_attach()
1102 new_lp->cloned = 1; in linux_nat_handle_extended()
1821 options = lp->cloned ? __WCLONE : 0; in linux_nat_wait()
1912 lp->cloned = 1; in linux_nat_wait()
2201 if (lp->cloned) in kill_wait_callback()
/openbsd/gnu/usr.bin/perl/dist/threads/t/
H A Dproblems.t75 # started (interpreter cloned). 5.8.1 and 5.8.2 contained a bug that would
109 # Nothing is checking that total keys gets cloned correctly.
H A Dthread.t264 my $cloned = ""; # XXX due to recursion, doesn't get initialized
265 $cloned .= "$_" =~ /ARRAY/ ? '1' : '0' for @objs;
266 is($cloned, ($depth ? '00010001111' : '11111111111'),
/openbsd/gnu/usr.bin/perl/
H A Dpad.c1920 static CV *S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned);
1923 S_cv_clone_pad(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned, in S_cv_clone_pad() argument
2071 if (trouble || cloned) { in S_cv_clone_pad()
2084 if (!cloned) in S_cv_clone_pad()
2085 cloned = (HV *)newSV_type_mortal(SVt_PVHV); in S_cv_clone_pad()
2098 : (CV **)hv_fetch(cloned, (char *)&protokey, in S_cv_clone_pad()
2103 *cvp, cloned); in S_cv_clone_pad()
2104 (void)hv_store(cloned, (char *)&ppad[ix], in S_cv_clone_pad()
2123 CvOUTSIDE(ppad[ix]), cloned); in S_cv_clone_pad()
2213 S_cv_clone(pTHX_ CV *proto, CV *cv, CV *outside, HV *cloned) in S_cv_clone() argument
[all …]
/openbsd/regress/lib/libcrypto/x509/bettertls/
H A DREADME4 cloned at commit 8950fdf2a46eaa357aa8d338c871f2cbc00e86e5 in July 2020.
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A DJustPod01.t185 and may be cloned from L<git://github.com/doherty/utf8-all.git>
/openbsd/gnu/llvm/llvm/lib/Support/Unix/
H A DProgram.inc323 // object destructors cloned from the parent process aren't
325 // cloned from the parent aren't redundantly written out.
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlmod.pod602 thread is cloned all Perl data is cloned, however non-Perl data cannot
603 be cloned automatically. Perl after 5.8.0 has support for the C<CLONE>
621 be cloned; or rather, they will be copied as unblessed, undef values.
H A Dperl5203delta.pod184 Extending an array cloned from a parent thread could result in "Modification of
H A Dperlfork.pod33 running interpreter and all its state, and run the cloned interpreter in
/openbsd/gnu/llvm/llvm/docs/
H A DInstrRefDebugInfo.md190 instruction number of any cloned instruction, to avoid duplicate numbers
H A DAssignmentTracking.md167 the `ValueExpression`, and give the split stores (and cloned intrinsics) new
/openbsd/gnu/llvm/llvm/docs/Proposals/
H A DVectorizationPlan.rst145 instructions; e.g., cloned once, replicated multiple times or widened
/openbsd/gnu/usr.bin/binutils/gdb/gdbserver/
H A DChangeLog366 Update. Use WNOHANG. Wait for cloned processes also. Update process
/openbsd/gnu/llvm/llvm/docs/CommandGuide/
H A Dlit.rst511 test configuration is cloned :program:`lit` checks for a *lit.local.cfg* file
/openbsd/share/snmp/
H A DSNMP-USER-BASED-SM-MIB.txt503 cloned from its clone-from user. These parameters are:

123