Home
last modified time | relevance | path

Searched refs:caller (Results 1 – 25 of 269) sorted by relevance

1234567891011

/onnv-gate/usr/src/cmd/svr4pkg/libinst/
H A Dqreason.c51 static char *qreasonNoZonename(int caller, int retcode, int started);
52 static char *qreasonWithZonename(int caller, int retcode, int started);
89 qreason(int caller, int retcode, int started, int includeZonename) in qreason() argument
92 return (qreasonNoZonename(caller, retcode, started)); in qreason()
95 return (qreasonWithZonename(caller, retcode, started)); in qreason()
105 qreasonNoZonename(int caller, int retcode, int started) in qreasonNoZonename() argument
111 switch (caller) { in qreasonNoZonename()
129 switch (caller) { in qreasonNoZonename()
147 switch (caller) { in qreasonNoZonename()
165 switch (caller) { in qreasonNoZonename()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDBM_Filter.pm82 my $caller = (caller(1))[3];
83 $caller =~ s/^.*:://;
85 croak "$caller: no parameters present" unless @_ ;
98 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 …]
H A DNEXT.pm35 my $caller = (caller(1))[3];
38 my ($caller_class, $caller_method) = $caller =~ m{(.*)::(.*)}g;
40 croak "Can't call $wanted from $caller"
61 $NEXT::SEEN->{$self,*{$caller}{CODE}}++;
97 my $caller = (caller(1))[3];
/onnv-gate/usr/src/cmd/sgs/liblddbg/common/
H A Drelocate.c34 Dbg_reloc_apply_reg(Lm_list *lml, int caller, Half mach, Xword off, Xword value) in Dbg_reloc_apply_reg() argument
46 Elf_reloc_apply_reg(lml, caller, mach, off, value); in Dbg_reloc_apply_reg()
50 Dbg_reloc_apply_val(Lm_list *lml, int caller, Xword off, Xword value) in Dbg_reloc_apply_val() argument
62 Elf_reloc_apply_val(lml, caller, off, value); in Dbg_reloc_apply_val()
66 Dbg_reloc_error(Lm_list *lml, int caller, Half mach, Word type, void *reloc, in Dbg_reloc_error() argument
74 Elf_reloc_entry_1(lml, caller, MSG_INTL(MSG_STR_IN), mach, type, reloc, in Dbg_reloc_error()
211 Dbg_reloc_doact(Lm_list *lml, int caller, Half mach, Word type, Rel_desc *rdesc, in Dbg_reloc_doact() argument
230 Elf_reloc_entry_2(lml, caller, MSG_ORIG(MSG_STR_EMPTY), type, in Dbg_reloc_doact()
294 Dbg_reloc_out(Ofl_desc *ofl, int caller, Word type, void *reloc, in Dbg_reloc_out() argument
302 Elf_reloc_entry_1(ofl->ofl_lml, caller, MSG_ORIG(MSG_STR_EMPTY), in Dbg_reloc_out()
[all …]
/onnv-gate/usr/src/cmd/rm/
H A Drm.c314 rm(const char *entry, struct dlist *caller) in rm() argument
330 if (fstatat(caller->fd, entry, &temp, AT_SYMLINK_NOFOLLOW) != 0) { in rm()
385 faccessat(caller->fd, entry, W_OK|X_OK, AT_EACCESS) != 0 && in rm()
392 if (opendirat(caller->fd, entry, &frame) == -1) { in rm()
428 if (unlinkat(caller->fd, entry, flag) == 0) in rm()
456 if (caller != &top) { in rm()
457 if (checkdir(caller, &frame) != 0) { in rm()
485 if (caller != &top) { in rm()
486 caller->flags &= ~DIR_CANTCLOSE; in rm()
487 entry = &pathbuf[caller->up->pathend + 1]; in rm()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Filter/
H A DSimple.pm21 my $caller = caller;
24 *{"${caller}::import"} = gen_filter_import($caller,$filter,$terminator);
25 *{"${caller}::unimport"} = gen_filter_unimport($caller);
126 my $caller = caller;
143 *{"${caller}::import"} =
144 gen_filter_import($caller,$multitransform,$terminator);
145 *{"${caller}::unimport"} = gen_filter_unimport($caller);
/onnv-gate/usr/src/uts/sun4v/io/
H A Dvsw_switching.c78 void vsw_switch_frame_nop(vsw_t *vswp, mblk_t *mp, int caller,
84 static void vsw_switch_l2_frame_mac_client(vsw_t *vswp, mblk_t *mp, int caller,
86 static void vsw_switch_l2_frame(vsw_t *vswp, mblk_t *mp, int caller,
88 static void vsw_switch_l3_frame(vsw_t *vswp, mblk_t *mp, int caller,
91 int caller, vsw_port_t *port);
93 int caller, vsw_port_t *port);
102 boolean_t vsw_frame_lookup_vid(void *arg, int caller, struct ether_header *ehp,
410 vsw_switch_frame_nop(vsw_t *vswp, mblk_t *mp, int caller, vsw_port_t *port, in vsw_switch_frame_nop() argument
420 vsw_switch_l2_frame_mac_client(vsw_t *vswp, mblk_t *mp, int caller, in vsw_switch_l2_frame_mac_client() argument
432 ASSERT((caller == VSW_VNETPORT) || (caller == VSW_LOCALDEV)); in vsw_switch_l2_frame_mac_client()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dcaller.t16 @c = caller(0);
19 eval { @c = caller(0) };
27 sub { @c = caller(0) } -> ();
32 sub foo { @c = caller(0) }
40 sub f { @c = caller(1) }
/onnv-gate/usr/src/uts/common/sys/
H A Dftrace.h99 extern caddr_t caller(void);
104 ftrace_0(fmt, caller()); \
109 ftrace_1(fmt, d1, caller()); \
114 ftrace_2(fmt, d1, d2, caller()); \
119 ftrace_3(fmt, d1, d2, d3, caller()); \
/onnv-gate/usr/src/cmd/sgs/rtld/amd64/
H A Dcaller.s35 caller()
46 ENTRY(caller)
49 SET_SIZE(caller)
/onnv-gate/usr/src/cmd/sgs/rtld/i386/
H A Dcaller.s35 caller()
46 ENTRY(caller)
49 SET_SIZE(caller)
/onnv-gate/usr/src/uts/common/os/
H A Dftrace.c356 ftrace_0(char *str, caddr_t caller) in ftrace_0() argument
380 r->ftr_caller = caller; in ftrace_0()
390 ftrace_1(char *str, ulong_t arg1, caddr_t caller) in ftrace_1() argument
414 r->ftr_caller = caller; in ftrace_1()
425 ftrace_2(char *str, ulong_t arg1, ulong_t arg2, caddr_t caller) in ftrace_2() argument
449 r->ftr_caller = caller; in ftrace_2()
461 ftrace_3(char *str, ulong_t arg1, ulong_t arg2, ulong_t arg3, caddr_t caller) in ftrace_3() argument
485 r->ftr_caller = caller; in ftrace_3()
499 ulong_t arg3, caddr_t caller) in ftrace_3_notick() argument
520 r->ftr_caller = caller; in ftrace_3_notick()
H A Dprintf.c177 cprintf(fmt, adx, SL_CONSOLE | SL_NOTE, "", "", caller(), 0, 0, 0, in vzprintf()
194 cprintf(fmt, adx, SL_CONSOLE | SL_NOTE, "", "", caller(), 0, 0, 0, in printf()
206 cprintf(fmt, adx, SL_CONSOLE | SL_NOTE, "", "", caller(), 0, 0, 0, in zprintf()
219 "", "", caller(), 0, 0, 0, GLOBAL_ZONEID); in vuprintf()
224 "", "", caller(), 0, 0, 0, getzoneid()); in vuprintf()
249 ce_prefix[ce], ce_suffix[ce], caller(), 0, 0, 0, in vzcmn_err()
270 ce_prefix[ce], ce_suffix[ce], caller(), 0, 0, 0, in cmn_err()
286 ce_suffix[ce], caller(), 0, 0, 0, zoneid); in zcmn_err()
327 cprintf(fmt, adx, sl, "", "", caller(), mid, sid, level, in strlog()
338 cprintf(fmt, adx, sl, "", "", caller(), mid, sid, level, in vstrlog()
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/
H A DSimple.pm15 my $caller = caller;
16 *{$caller.'::ok'} = \&ok;
18 $Test->exported_to($caller);
/onnv-gate/usr/src/lib/libast/common/comp/
H A Dsetpgid.c68 int caller = getpid();
70 if ((pid == 0 || pid == caller) && (pgid == 0 || pgid == caller))
/onnv-gate/usr/src/cmd/hal/tools/
H A Dhal-is-caller-privileged.c100 char *caller = NULL; in main() local
148 caller = strdup (optarg); in main()
166 if (udi == NULL || caller == NULL || privilege == NULL) { in main()
188 caller, in main()
/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dleaky_subr.c545 pc_t caller; in leaky_subr_add_leak() local
558 caller = bt.bt_history[0]; in leaky_subr_add_leak()
562 &caller, depth, addr, addr); in leaky_subr_add_leak()
669 uintptr_t caller; in leaky_subr_dump() local
706 c, &caller); in leaky_subr_dump()
708 if (caller != 0) { in leaky_subr_dump()
710 "%a", caller); in leaky_subr_dump()
762 caller = (lkb->lkb_depth == 0) ? 0 : lkb->lkb_stack[0]; in leaky_subr_dump()
763 if (caller != 0) { in leaky_subr_dump()
764 (void) mdb_snprintf(c, sizeof (c), "%a", caller); in leaky_subr_dump()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Carp/
H A DHeavy.pm179 my $caller = caller($i);
180 return 0 unless defined($caller); # What happened?
181 redo if $Internal{$caller};
183 redo if trusts($called, $caller, $cache);
184 redo if trusts($caller, $called, $cache);
/onnv-gate/usr/src/cmd/abi/appcert/scripts/
H A Dsymcheck.pl1016 my ($app, $caller, $lib, $base, $sym);
1028 ($app, $caller, $lib, $sym) = split(/\|/, $_, 4);
1033 push(@profile, "$lib|$sym|$caller");
1046 push(@profile_short, "$lib|$sym|$caller");
1088 ($lib, $sym, $caller) = split(/\|/, $libsymcaller, 3);
1112 $scoped_list .= "$path_to_object|$caller|$lib|$sym\n";
1151 "$path_to_object|$caller|$lib|$sym\n";
1199 ($lib, $sym, $caller) = split(/\|/, $tmp, 3);
1202 $caller_star{$tag0} = 1 if ($caller eq '*');
1207 if ($caller ne '*DIRECT*') {
[all …]
/onnv-gate/usr/src/cmd/mdb/sparc/v9/libstand/
H A Dsetjmp.s76 stx %sp, [%o0 + JB_SP] ! save caller's sp
91 * val is the value we wish to return to setjmp's caller
98 * sp, fp, and %i7, the caller's return address, are all restored
/onnv-gate/usr/src/cmd/sgs/rtld/sparcv9/
H A Dcaller.s35 caller()
95 ENTRY(caller)
98 SET_SIZE(caller)
/onnv-gate/usr/src/cmd/sgs/rtld/sparc/
H A Dcaller.s35 caller()
95 ENTRY(caller)
98 SET_SIZE(caller)
/onnv-gate/usr/src/lib/libc/i386/gen/
H A Dsetjmp.s56 movl %ebp,12(%eax) / save caller's ebp
67 movl %edx,20(%eax) / save caller's return address
80 movl 16(%edx),%esp / restore caller's esp
/onnv-gate/usr/src/lib/libc/sparcv9/gen/
H A Dsetjmp.s62 stx %sp, [%o0 + JB_SP] ! save caller's sp
75 * val is the value we wish to return to setjmp's caller
82 * sp, fp, and %i7, the caller's return address, are all restored
/onnv-gate/usr/src/lib/libc/sparc/gen/
H A Dsetjmp.s62 st %sp, [%o0 + JB_SP] ! save caller's sp
75 * val is the value we wish to return to setjmp's caller
82 * sp, fp, and %i7, the caller's return address, are all restored

1234567891011