| /openbsd/src/usr.sbin/ypserv/ypserv/ |
| D | ypserv_proc.c | 63 struct sockaddr_in *caller = svc_getcaller(rqstp->rq_xprt); in ypproc_null_2_svc() local 64 int ok = acl_check_host(&caller->sin_addr); in ypproc_null_2_svc() 67 inet_ntoa(caller->sin_addr), ntohs(caller->sin_port), TORF(ok)); in ypproc_null_2_svc() 81 struct sockaddr_in *caller = svc_getcaller(rqstp->rq_xprt); in ypproc_domain_2_svc() local 82 int ok = acl_check_host(&caller->sin_addr); in ypproc_domain_2_svc() 94 inet_ntoa(caller->sin_addr), ntohs(caller->sin_port), in ypproc_domain_2_svc() 109 struct sockaddr_in *caller = svc_getcaller(rqstp->rq_xprt); in ypproc_domain_nonack_2_svc() local 110 int ok = acl_check_host(&caller->sin_addr); in ypproc_domain_nonack_2_svc() 121 inet_ntoa(caller->sin_addr), ntohs(caller->sin_port), TORF(ok), in ypproc_domain_nonack_2_svc() 138 struct sockaddr_in *caller = svc_getcaller(rqstp->rq_xprt); in ypproc_match_2_svc() local [all …]
|
| /openbsd/src/gnu/usr.bin/perl/t/op/ |
| D | caller.t | 15 @c = caller(0); 18 eval { @c = caller(0) }; 22 eval q{ @c = caller(0) }; 26 sub { @c = caller(0) } -> (); 31 sub foo { @c = caller(0) } 39 is +(caller 0)[1], __FILE__, 45 sub f { @c = caller(1) } 97 check_bits( (caller(0))[9], $w, "warnings match caller ($id)"); 120 my @stackinfo = caller(0); 124 sub pb { return (caller(0))[3] } [all …]
|
| D | override.t | 146 BEGIN { package other; *::caller = \&::caller } 147 sub caller() { 42 } 148 caller; # inline the constant 149 is caller, 42, 'constant inlining does not undo "use subs" on keywords';
|
| /openbsd/src/gnu/usr.bin/perl/lib/ |
| D | DBM_Filter.pm | 82 my $caller = (caller(1))[3]; 83 $caller =~ s/^.*:://; 85 croak "$caller: no parameters present" unless @_ ; 99 croak "$caller: Cannot Load DBM Filter '$class': $@" if $@; 110 { croak "$caller: No methods (Filter, Fetch or Store) found in class '$class'" } 113 croak "$caller: Missing method '$need' in class '$class'" ; 116 { croak "$caller: Can't mix Filter with Store and Fetch in class '$class'" } 120 croak "$caller: '${class}::Filter' did not return a hash reference" 130 croak "$caller: not even params" unless @_ % 2 == 0; 142 if ($caller eq 'Filter_Push') [all …]
|
| D | deprecate.pm | 41 my @caller; 42 while (@caller = caller $call_depth++) { 43 last if $caller[7] # use/require 44 and $caller[6] eq $expect_leaf; # the package file 46 unless (@caller) { 56 my ($call_file, $call_line, $callers_bitmask) = @caller[1,2,9];
|
| /openbsd/src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/ |
| D | Debug.pm | 35 my @caller; 40 push @caller, \@c; 50 pop @caller; 51 if ($CPAN::DEBUG{$caller[0][0]} & $CPAN::DEBUG) { 62 if (@caller>1) { 63 $outer = ",[@{$caller[1]}]"; 65 $CPAN::Frontend->myprint("Debug(@{$caller[0]}$outer): $arg\n");
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | ipa-inline.c | 140 if (e->caller->global.inlined_to) in cgraph_clone_inlined_nodes() 141 e->callee->global.inlined_to = e->caller->global.inlined_to; in cgraph_clone_inlined_nodes() 143 e->callee->global.inlined_to = e->caller; in cgraph_clone_inlined_nodes() 176 for (;e && !e->inline_failed; e = e->caller->callers) in cgraph_mark_inline_edge() 178 old_insns = e->caller->global.insns; in cgraph_mark_inline_edge() 179 new_insns = cgraph_estimate_size_after_inlining (1, e->caller, in cgraph_mark_inline_edge() 182 to = e->caller; in cgraph_mark_inline_edge() 198 struct cgraph_node *to = edge->caller; in cgraph_mark_inline() 208 if (e->caller == to && e->inline_failed) in cgraph_mark_inline() 232 growth += (cgraph_estimate_size_after_inlining (1, e->caller, node) in cgraph_estimate_growth() [all …]
|
| D | ipa.c | 64 if (!edge->caller->aux) in cgraph_postorder() 66 if (!edge->caller->callers) in cgraph_postorder() 67 edge->caller->aux = &last; in cgraph_postorder() 69 edge->caller->aux = edge->caller->callers; in cgraph_postorder() 71 node2 = edge->caller; in cgraph_postorder() 177 if (e->caller->aux) in cgraph_remove_unreachable_nodes()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/ubsan_minimal/ |
| D | ubsan_minimal_handlers.cpp | 23 __attribute__((noinline)) static bool report_this_error(uintptr_t caller) { in report_this_error() argument 24 if (caller == 0) in report_this_error() 36 if (p == caller) return false; in report_this_error() 49 __sanitizer::atomic_store_relaxed(&caller_pcs[sz], caller); in report_this_error() 55 uintptr_t caller) { in decorate_msg() argument 59 unsigned nibble = (caller >> shift) & 0xf; in decorate_msg() 101 uintptr_t caller = GET_CALLER_PC(); \ 102 if (!report_this_error(caller)) return; \ 104 decorate_msg(MSG_TMPL_END(msg_buf, msg), caller); \
|
| /openbsd/src/gnu/usr.bin/perl/dist/Filter-Simple/lib/Filter/ |
| D | Simple.pm | 138 my $caller = caller; 141 *{"${caller}::import"} = gen_filter_import($caller,$filter,$terminator); 142 *{"${caller}::unimport"} = gen_filter_unimport($caller); 146 my $caller = caller; 163 *{"${caller}::import"} = 164 gen_filter_import($caller,$multitransform,$terminator); 165 *{"${caller}::unimport"} = gen_filter_unimport($caller);
|
| /openbsd/src/sys/dev/pci/drm/i915/ |
| D | intel_memory_region.c | 39 const void *caller) in __iopagetest() argument 53 &mem->region, &mem->io.start, &offset, caller, in __iopagetest() 63 const void *caller) in iopagetest() argument 77 &mem->io.start, &offset, caller); in iopagetest() 82 err = __iopagetest(mem, va, PAGE_SIZE, val[i], offset, caller); in iopagetest() 86 err = __iopagetest(mem, va, PAGE_SIZE, ~val[i], offset, caller); in iopagetest() 104 const void *caller) in iomemtest() argument 127 err = iopagetest(mem, page, caller); in iomemtest() 132 err = iopagetest(mem, 0, caller); in iomemtest() 136 err = iopagetest(mem, last, caller); in iomemtest() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Hub/ |
| D | Subtest.t | 14 my @caller = caller(0); 16 $TODO{$caller[0]} ||= []; 17 push @{$TODO{$caller[0]}} => [$func, \@args, \@caller]; 21 my $for = caller; 25 my ($func, $args, $caller) = @$test; 27 my ($pkg, $file, $line) = @$caller;
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/ |
| D | use_ok.t | 74 my @caller; 79 @caller = caller; 88 ::is( $caller[0], __PACKAGE__, "caller package preserved" ); 89 ::is( $caller[1], __FILE__, " file" ); 90 ::is( $caller[2], $line, " line" );
|
| /openbsd/src/gnu/usr.bin/perl/t/comp/ |
| D | opsubs.t | 21 my @caller = caller(1); 22 print "# Failed test at $caller[1] line $caller[2]\n"; 91 my @caller = caller; 92 print "# Failed test at $caller[1] line $caller[2]\n";
|
| D | our.t | 15 my @caller = caller(0); 16 print "# Failed test at $caller[1] line $caller[2]\n";
|
| D | multiline.t | 10 my @caller = caller(1); 11 print "# Failed test at $caller[1] line $caller[2]\n";
|
| /openbsd/src/gnu/usr.bin/perl/dist/Carp/lib/ |
| D | Carp.pm | 535 my @caller = $cgc ? $cgc->($i) : caller($i); 536 my $pkg = $caller[0]; 545 elsif (defined $caller[2]) { 654 my $caller = $cgc ? $cgc->($i) : caller($i); 656 if (!defined($caller)) { 657 my @caller = $cgc ? $cgc->($i) : caller($i); 658 if (@caller) { 670 redo if $Internal{$caller}; 671 redo if $CarpInternal{$caller}; 673 redo if trusts( $called, $caller, $cache ); [all …]
|
| /openbsd/src/gnu/usr.bin/perl/t/uni/ |
| D | caller.t | 24 sub { @c = caller(0) } -> (); 29 sub foo { @c = caller(0) } 40 sub f { @c = caller(1) } 68 sub pb { return (caller(0))[3] }
|
| /openbsd/src/gnu/llvm/lldb/examples/summaries/cocoa/ |
| D | Logger.py | 110 caller = inspect.stack()[2] 112 if caller is not None and len(caller) > 3: 113 self.write('Logging from function ' + str(caller)) 118 del caller # needed per Python docs to avoid keeping objects alive longer than we care
|
| /openbsd/src/gnu/usr.bin/perl/dist/Carp/t/ |
| D | Carp.t | 29 # sets CORE::GLOBAL::caller 30 ok !exists $CORE::GLOBAL::{caller}, 31 "Loading doesn't create CORE::GLOBAL::caller"; 345 # check that Carp respects CORE::GLOBAL::caller override after Carp 348 skip "can't safely detect incomplete caller override on perl $]", 6 351 "setting \@DB::args in caller override\n"; 358 local *CORE::GLOBAL::caller = sub { 360 my @c = CORE::caller(@_); 363 if ( !$bodge_job && CORE::caller() eq 'DB' ) { 366 return CORE::caller( ( $_[0] || 0 ) + 1 ); [all …]
|
| /openbsd/src/gnu/usr.bin/perl/t/ |
| D | thread_it.pl | 17 my $caller = (caller)[1]; 19 die "Can't figure out which test to run from filename '$caller'" 20 unless $caller =~ m!((?:op|re)/[-_a-z0-9A-Z]+)_thr\.t\z!;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| D | ScriptedInterface.h | 46 bool CheckStructuredDataObject(llvm::StringRef caller, T obj, Status &error) { in CheckStructuredDataObject() argument 48 return ErrorWithMessage<bool>(caller, in CheckStructuredDataObject() 58 caller, in CheckStructuredDataObject() 66 return ErrorWithMessage<bool>(caller, error.AsCString(), error); in CheckStructuredDataObject()
|
| /openbsd/src/lib/libc/stdlib/ |
| D | malloc.c | 146 void *caller[NUM_FRAMES]; member 179 void *caller; member 197 #define SET_CALLER(x,y) if (DO_STATS) ((x)->caller = (y)) 287 caller(struct dir_info *d) in caller() function 295 memset(&p.caller, 0, sizeof(p.caller)); in caller() 297 p.caller[0] = __builtin_extract_return_addr( in caller() 299 if (p.caller[0] != NULL && level >= 2) in caller() 300 p.caller[1] = __builtin_extract_return_addr( in caller() 302 if (p.caller[1] != NULL && level >= 3) in caller() 303 p.caller[2] = __builtin_extract_return_addr( in caller() [all …]
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| D | genk-timing.py | 58 def updateFunctionCallMap(self, caller, callee): argument 60 if not caller in self.calledFunctionTable: 61 self.calledFunctionTable[caller] = [] 62 if not callee in self.calledFunctionTable[caller]: 63 self.calledFunctionTable[caller].append(callee) 64 if not caller in self.comprehensiveCalledFunctionTable: 65 self.comprehensiveCalledFunctionTable[caller] = [] 66 self.comprehensiveCalledFunctionTable[caller].append(callee)
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| D | genk-timing.py | 63 def updateFunctionCallMap(self, caller, callee): argument 65 if not caller in self.calledFunctionTable: 66 self.calledFunctionTable[caller] = [] 67 if not callee in self.calledFunctionTable[caller]: 68 self.calledFunctionTable[caller].append(callee) 69 if not caller in self.comprehensiveCalledFunctionTable: 70 self.comprehensiveCalledFunctionTable[caller] = [] 71 self.comprehensiveCalledFunctionTable[caller].append(callee)
|