Home
last modified time | relevance | path

Searched refs:DB (Results 1 – 25 of 174) sorted by relevance

1234567

/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDB.t26 local $DB::sub = sub {
31 my $ret = DB::sub;
34 $ret = join(' ', DB::sub(2));
37 ok( defined($DB::ret),'$DB::ret should be defined after successful return');
38 DB::sub;
39 ok( !defined($DB::ret), '... should respect void context' );
40 $DB::sub = '::DESTROY';
41 ok( !defined($DB::ret), '... should return undef for DESTROY()' );
46 ok( ! defined DB::DB(),
48 is( DB::catch(), 1, 'DB::catch() should work' );
[all …]
H A DDB.pm5 package DB; package
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::dbline = (); # actions in current file (keyed by line number)
34 @DB::ret = (); # return value of last sub executed in list context
[all …]
H A DDumpvalue.t105 $DB::signal = $d->{stopDbSignal} = 1;
107 undef $DB::signal;
164 $d->{stopDbSignal} = $DB::signal = 1;
166 undef $DB::signal;
199 is( $out->read, "\$_<foo = 1\n", 'dumped glob for $_<foo correctly (DB)' );
212 is( $d->findsubs(), undef, 'findsubs returns nothing without %DB::sub' );
231 $DB::signal = 1;
234 undef $DB::signal;
H A Ddumpvar.pl124 return if $DB::signal;
205 return if $DB::signal;
241 return if $DB::signal;
342 return if $DB::signal;
374 return if $DB::signal;
418 my $place = $DB::sub{$sub} || (($s = $subs{"$subref"}) && $DB::sub{$s})
419 || (($s = CvGV_name_or_bust($subref)) && $DB::sub{$s})
420 || ($subdump && ($s = findsubs("$subref")) && $DB::sub{$s});
427 return undef unless %DB::sub;
429 while (($name, $loc) = each %DB::sub) {
[all …]
H A DDumpvalue.pm153 return if $DB::signal and $self->{stopDbSignal};
214 return if $DB::signal and $self->{stopDbSignal};
241 return if $DB::signal and $self->{stopDbSignal};
325 return if $DB::signal and $self->{stopDbSignal};
373 my $place = $DB::sub{$sub} || (($s = $subs{"$subref"}) && $DB::sub{$s})
374 || (($s = $self->CvGV_name($subref)) && $DB::sub{$s})
376 && $DB::sub{$s});
384 return undef unless %DB::sub;
386 while (($name, $loc) = each %DB::sub) {
409 return if $DB::signal and $self->{stopDbSignal};
/onnv-gate/usr/src/cmd/sendmail/db/xa/
H A Dxa_db.c36 static int __xa_close __P((DB *, u_int32_t));
37 static int __xa_cursor __P((DB *, DB_TXN *, DBC **, u_int32_t));
38 static int __xa_del __P((DB *, DB_TXN *, DBT *, u_int32_t));
39 static int __xa_fd __P((DB *, int *));
40 static int __xa_get __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
41 static int __xa_put __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
42 static int __xa_stat __P((DB *, void *, void *(*)(size_t), u_int32_t));
43 static int __xa_sync __P((DB *, u_int32_t));
52 DB **dbpp;
54 DB *dbp, *real_dbp;
[all …]
/onnv-gate/usr/src/cmd/sendmail/db/include/
H A Ddb_ext.h4 int __db_close __P((DB *, u_int32_t));
5 int __db_init_wrapper __P((DB *));
6 int __db_cprint __P((DB *));
8 int __db_sync __P((DB *, u_int32_t));
83 int __db_cdelchk __P((const DB *, u_int32_t, int, int));
84 int __db_cgetchk __P((const DB *, DBT *, DBT *, u_int32_t, int));
85 int __db_cputchk __P((const DB *,
87 int __db_closechk __P((const DB *, u_int32_t));
88 int __db_delchk __P((const DB *, DBT *, u_int32_t, int));
89 int __db_getchk __P((const DB *, const DBT *, DBT *, u_int32_t));
[all …]
H A Dbtree_ext.h4 int __bam_cmp __P((DB *, const DBT *,
11 int __bam_cprint __P((DB *));
12 int __bam_ca_delete __P((DB *, db_pgno_t, u_int32_t, int));
13 void __bam_ca_di __P((DB *, db_pgno_t, u_int32_t, int));
14 void __bam_ca_dup __P((DB *,
16 void __bam_ca_rsplit __P((DB *, db_pgno_t, db_pgno_t));
17 void __bam_ca_split __P((DB *,
21 int __bam_delete __P((DB *, DB_TXN *, DBT *, u_int32_t));
26 int __bam_open __P((DB *, DB_INFO *));
27 int __bam_close __P((DB *));
[all …]
H A Dhash_ext.h4 int __ham_open __P((DB *, DB_INFO *));
5 int __ham_close __P((DB *));
99 int __ham_new_page __P((DB *, u_int32_t, u_int32_t, PAGE **));
101 int __ham_put_page __P((DB *, PAGE *, int32_t));
102 int __ham_dirty_page __P((DB *, PAGE *));
103 int __ham_get_page __P((DB *, db_pgno_t, PAGE **));
112 void __ham_dpair __P((DB *, PAGE *, u_int32_t));
129 int __ham_stat __P((DB *, void *, void *(*)(size_t), u_int32_t));
/onnv-gate/usr/src/lib/libsqlite/test/
H A Dmisuse.test29 set ::DB [sqlite db test2.db]
34 sqlite_exec_printf $::DB {SELECT * FROM t1} {}
37 sqlite_exec_printf $::DB {SELECT x_coalesce(NULL,a) AS 'xyz' FROM t1} {}
40 sqlite_create_function $::DB
41 sqlite_exec_printf $::DB {SELECT x_coalesce(NULL,a) AS 'xyz' FROM t1} {}
52 sqlite_exec_printf $::DB {
57 sqlite_exec_printf $::DB {SELECT * FROM t1} {}
69 set ::DB [sqlite db test2.db]
75 sqlite_exec_printf $::DB {SELECT * FROM t1} {}
80 sqlite_create_function $::DB
[all …]
H A Dcapi2.test27 set DB [sqlite db test.db]
29 set VM [sqlite_compile $DB {SELECT name, rowid FROM sqlite_master} TAIL]
75 set VM [sqlite_compile $DB $SQL SQL]
93 set VM [sqlite_compile $DB $SQL SQL]
106 set VM [sqlite_compile $DB $SQL SQL]
114 sqlite_compile $DB {select bogus from sqlite_master} TAIL
120 sqlite_compile $DB {select bogus from } TAIL
126 sqlite_compile $DB {;;;;select bogus from sqlite_master} TAIL
132 sqlite_compile $DB {select bogus from sqlite_master;x;} TAIL
138 sqlite_compile $DB {select bogus from sqlite_master;;;x;} TAIL
[all …]
H A Dpragma.test28 set DB [sqlite db test.db]
114 set ::DB [sqlite db test.db]
142 set ::DB [sqlite db test.db]
161 set ::DB [sqlite db test.db]
175 sqlite_datatypes $::DB {SELECT * FROM sqlite_master}
181 sqlite_datatypes $::DB {SELECT * FROM sqlite_master}
207 sqlite_datatypes $::DB {SELECT * FROM t1}
210 sqlite_datatypes $::DB {
215 sqlite_datatypes $::DB {
223 sqlite_datatypes $::DB {SELECT * FROM v1}
[all …]
/onnv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dextern.h90 int __bt_close __P((DB *));
95 int __bt_delete __P((const DB *, const DBT *, u_int));
97 int __bt_fd __P((const DB *));
99 int __bt_get __P((const DB *, const DBT *, DBT *, u_int));
104 int __bt_put __P((const DB *dbp, DBT *, const DBT *, u_int));
107 int __bt_seq __P((const DB *, DBT *, DBT *, u_int));
111 int __bt_sync __P((const DB *, u_int));
118 int __bt_dnpage __P((DB *, db_pgno_t));
119 void __bt_dpage __P((DB *, PAGE *));
121 int __bt_dump __P((DB *));
[all …]
/onnv-gate/usr/src/common/openssl/crypto/rsa/
H A Drsa_pss.c80 unsigned char *DB = NULL; in RSA_verify_PKCS1_PSS() local
123 DB = OPENSSL_malloc(maskedDBLen); in RSA_verify_PKCS1_PSS()
124 if (!DB) in RSA_verify_PKCS1_PSS()
129 PKCS1_MGF1(DB, maskedDBLen, H, hLen, Hash); in RSA_verify_PKCS1_PSS()
131 DB[i] ^= EM[i]; in RSA_verify_PKCS1_PSS()
133 DB[0] &= 0xFF >> (8 - MSBits); in RSA_verify_PKCS1_PSS()
134 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ; in RSA_verify_PKCS1_PSS()
135 if (DB[i++] != 0x1) in RSA_verify_PKCS1_PSS()
150 EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i); in RSA_verify_PKCS1_PSS()
162 if (DB) in RSA_verify_PKCS1_PSS()
[all …]
/onnv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/
H A Dextern.h71 int __rec_close __P((DB *));
72 int __rec_delete __P((const DB *, const DBT *, u_int));
74 int __rec_fd __P((const DB *));
78 int __rec_get __P((const DB *, const DBT *, DBT *, u_int));
80 int __rec_put __P((const DB *dbp, DBT *, const DBT *, u_int));
83 int __rec_seq __P((const DB *, DBT *, DBT *, u_int));
84 int __rec_sync __P((const DB *, u_int));
/onnv-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_iface.c30 static int __dbt_ferr __P((const DB *, const char *, const DBT *, int));
40 const DB *dbp; in __db_cdelchk()
71 const DB *dbp; in __db_cgetchk()
140 const DB *dbp; in __db_cputchk()
208 const DB *dbp; in __db_closechk()
226 const DB *dbp; in __db_delchk()
258 const DB *dbp; in __db_getchk()
300 const DB *dbp; in __db_joinchk()
318 const DB *dbp; in __db_putchk()
371 const DB *dbp; in __db_statchk()
[all …]
H A Ddb_am.c35 static int __db_cursor __P((DB *, DB_TXN *, DBC **, u_int32_t));
36 static int __db_fd __P((DB *, int *));
37 static int __db_get __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
38 static int __db_put __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
48 DB *dbp; in __db_init_wrapper()
69 DB *dbp; in __db_cursor()
180 DB *dbp;
248 DB *dbp; in __db_cprint()
283 DB *dbp;
312 DB *dbp; in __db_fd()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Deval.t367 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++;
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dperldebtut.pod125 Loading DB routines from perl5db.pl version 1.07
139 DB<1> q
153 DB<1>h
191 DB<2>S str
207 DB<4> v
222 DB<4> v
234 DB<4> l 5
241 DB<5> .
249 DB<6> s
259 DB<7> p $key
[all …]
/onnv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash.c63 static int32_t hash_close __P((DB *));
64 static int32_t hash_delete __P((const DB *, const DBT *, u_int32_t));
65 static int32_t hash_fd __P((const DB *));
66 static int32_t hash_get __P((const DB *, const DBT *, DBT *, u_int32_t));
67 static int32_t hash_put __P((const DB *, DBT *, const DBT *, u_int32_t));
68 static int32_t hash_seq __P((const DB *, DBT *, DBT *, u_int32_t));
69 static int32_t hash_sync __P((const DB *, u_int32_t));
71 static int32_t cursor_get __P((const DB *, CURSOR *, DBT *, DBT *, \
73 static int32_t cursor_delete __P((const DB *, CURSOR *, u_int32_t));
98 extern DB *
[all …]
/onnv-gate/usr/src/cmd/sendmail/libsmdb/
H A Dsmdb1.c26 DB *smdb1_db;
174 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
192 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
206 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
233 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
260 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
283 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
302 DB *db = ((SMDB_DB1_DATABASE *) database->smdb_impl)->smdb1_db;
330 DB *db = db1->smdb1_db;
346 DB *db = db1->smdb1_db;
[all …]
H A Dsmdb2.c27 DB *smdb2_db;
230 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
248 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
262 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
284 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
305 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
329 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
348 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
428 DB *db = ((SMDB_DB2_DATABASE *) database->smdb_impl)->smdb2_db;
459 DB **db;
[all …]
/onnv-gate/usr/src/cmd/sendmail/db/btree/
H A Dbt_curadj.c35 DB *dbp; in __bam_cprint()
67 DB *dbp; in __bam_ca_delete()
118 DB *dbp; in __bam_ca_di()
155 DB *dbp; in __bam_ca_dup()
196 DB *dbp; in __bam_ca_rsplit()
228 DB *dbp; in __bam_ca_split()
/onnv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/
H A DREADME.db24 /usr/lib/krb5/libdb2.so.1 is the DB package that is shipped with MIT
5 Kerberos 1.0. It is *not* Berkeley DB 1.x or Sleepycat DB 2.x and is
/onnv-gate/usr/src/cmd/sendmail/db/
H A Ddb.h88 struct __db; typedef struct __db DB; typedef
448 int (*am_close) __P((DB *));
449 int (*close) __P((DB *, u_int32_t));
450 int (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t));
451 int (*del) __P((DB *, DB_TXN *, DBT *, u_int32_t));
452 int (*fd) __P((DB *, int *));
453 int (*get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
454 int (*join) __P((DB *, DBC **, u_int32_t, DBC **));
455 int (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
456 int (*stat) __P((DB *, void *, void *(*)(size_t), u_int32_t));
[all …]

1234567