Searched defs:DB (Results 1 - 12 of 12) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Devel/
H A Dswitchd.pm3 package DB; package
4 sub DB { print join(",", caller), ";" } subroutine
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/
H A DDProf.pm144 $DB::sub contains an address of a subroutine. Excessive manipulation
147 $DB::sub = 'current_sub';
149 $addr = $DB::sub + 0;
191 package DB; package
194 # As of perl5.003_20, &DB::sub stub is not needed (some versions
198 # disable DB single-stepping
202 sub DB { subroutine
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dassert.pl19 package DB; package
H A Dsigtrap.pm83 package DB; # To get subroutine args. package
H A DDB.pm5 package DB; package
18 # them right after a C<require DB;>
26 $DB::sub = ''; # name of current subroutine
27 %DB::sub = (); # "filename:fromline-toline" for every known sub
28 $DB::single = 0; # single-step flag (set it to 1 to enable stops in BEGIN/use)
29 $DB::signal = 0; # signal flag (will cause a stop at the next line)
30 $DB::trace = 0; # are we tracing through subroutine calls?
31 @DB::args = (); # arguments of current subroutine or @ARGV array
32 @DB::dbline = (); # list of lines in currently loaded file
33 %DB
87 sub DB { subroutine
[all...]
H A Dperl5db.pl64 The debugger uses this trick a I<lot>. Of particular note is C<DB::eval>,
67 keep C<$@> safe until it C<DB::eval> returns, at which point the previous
247 a C<&DB'DB();> in front of each place that can have a
248 breakpoint. At each subroutine call, it calls C<&DB::sub> with
249 C<$DB::sub> set to the called subroutine. It also inserts a C<BEGIN
253 call to C<&DB::postponed($main::{'_<'.$filename})> is done. C<$filename>
276 Any other positive value causes C<DB::sub> to print return values.
280 The item to be eval'ed by C<DB::eval>. Used to prevent messing with the current
281 contents of C<@_> when C<DB
490 package DB; package
1698 sub DB { subroutine
8582 package DB; # Do not trace this 1; below! package
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Carp/
H A DHeavy.pm19 package DB; package
31 my @args = map {Carp::format_arg($_)} @DB::args;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Deval.t358 # evals that appear in the DB package should see the lexical scope of the
359 # thing outside DB that called them (usually the debugged code), rather
367 sub DB::db2 { $x; eval '$x' } subroutine
368 package DB; package
370 sub DB::db4 { eval '$x' } subroutine
378 print DB::db2() == 2 ? 'ok' : 'not ok', " $test\n"; $test++;
379 print DB::db3() == 3 ? 'ok' : 'not ok', " $test\n"; $test++;
380 print DB::db4() == 3 ? 'ok' : 'not ok', " $test\n"; $test++;
381 print DB::db5() == 3 ? 'ok' : 'not ok', " $test\n"; $test++;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/include/
H A Ddb.h112 } DB; typedef in typeref:struct:__db
171 DB *dbopen __P((const char *, int, int, DBTYPE, const void *));
172 int bt_rseq(const DB*, DBT *, DBT *, void **, u_int); /* XXX kludge */
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_devlink.h91 uint32_t dngl_idx; /* head of DB dangling links */
136 struct db_hdr *hdr; /* DB header */
208 #define MAX_UPDATE_INTERVAL 5 /* Max DB writes before synching with /dev */
253 #define DB(h) (&(h)->db) macro
254 #define DB_HDR(h) (DB(h)->hdr)
256 #define DB_SEG(h, t) (DB(h)->seg_base[t])
257 #define DB_SEG_PROT(h, t) (DB(h)->seg_prot[t])
260 #define DB_RDWR(h) ((DB(h)->flags & OPEN_FLAGS) == OPEN_RDWR)
261 #define DB_RDONLY(h) ((DB(h)->flags & OPEN_FLAGS) == OPEN_RDONLY)
/osnet-11/usr/src/lib/libast/common/comp/
H A Dsetlocale.c231 #define DB ((int)sizeof(wchar_t)*8-1) macro
233 #define DX (DB/DC) /* wchar_t max embedded chars */
234 #define DZ (DB-DX*DC+1) /* wchar_t embedded size bits */
/osnet-11/usr/src/cmd/sendmail/db/
H A Ddb.h30 * space that DB doesn't control, but all of the other solutions are worse.
48 * DB needs basic information about specifically sized types. If they're
76 #define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 2.7.7: (08/20/99)"
88 struct __db; typedef struct __db DB; typedef in typeref:struct:__db
132 * DB run-time interface configuration.
138 #define DB_FUNC_DIRFREE 2 /* DB: free directory list. */
139 #define DB_FUNC_DIRLIST 3 /* DB: create directory list. */
140 #define DB_FUNC_EXISTS 4 /* DB: return if file exists. */
143 #define DB_FUNC_IOINFO 7 /* DB: return file I/O information. */
145 #define DB_FUNC_MAP 9 /* DB
[all...]

Completed in 71 milliseconds