Searched refs:DB_NOTFOUND (Results 1 - 25 of 107) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DOperationStatus.java39 new OperationStatus("NOTFOUND", DbConstants.DB_NOTFOUND);
50 case DbConstants.DB_NOTFOUND:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/cnid/cdb/
H A Dcnid_cdb_update.c45 if (rc != DB_NOTFOUND && rc != DB_SECONDARY_BAD) {
47 if (rc != DB_NOTFOUND) {
68 if (rc != DB_NOTFOUND && rc != DB_SECONDARY_BAD) {
70 if (rc != DB_NOTFOUND) {
H A Dcnid_cdb_resolve.c33 if (rc != DB_NOTFOUND) {
H A Dcnid_cdb_lookup.c57 if (rc != DB_NOTFOUND) {
75 if (rc != DB_NOTFOUND) {
H A Dcnid_cdb_get.c39 if (rc != DB_NOTFOUND) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/txn/
H A Dtxn_rec.c87 info, argp->txnp->txnid)) != DB_NOTFOUND && ret != 0)
106 &status, 0)) == DB_NOTFOUND) {
166 * The return value here is either a DB_NOTFOUND or it is
216 ret = DB_NOTFOUND;
319 if (ret != 0 && ret != DB_NOTFOUND)
321 if (t_ret != 0 && t_ret != DB_NOTFOUND) {
330 if (ret == DB_NOTFOUND ||
332 if (t_ret == DB_NOTFOUND ||
338 if (ret == DB_NOTFOUND)
378 info, argp->child, &c_stat)) == DB_NOTFOUND)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Dhash.t61 ok 15, ($status = $db->db_get("some key", $value)) == DB_NOTFOUND ;
62 ok 16, $status eq $DB_errors{'DB_NOTFOUND'} ;
63 ok 17, $db->status() == DB_NOTFOUND ;
64 ok 18, $db->status() eq $DB_errors{'DB_NOTFOUND'};
85 ok 26, $db->db_get($k, $v, DB_GET_BOTH) == DB_NOTFOUND ;
88 ok 27, $db->db_get($k, $v, DB_GET_BOTH) == DB_NOTFOUND ;
167 ok 42, $cursor->status() == DB_NOTFOUND ;
168 ok 43, $cursor->status() eq $DB_errors{'DB_NOTFOUND'} ;
184 ok 46, $status == DB_NOTFOUND ;
185 ok 47, $status eq $DB_errors{'DB_NOTFOUND'} ;
[all...]
H A Dbtree.t60 ok 15, ($status = $db->db_get("some key", $value)) == DB_NOTFOUND ;
61 ok 16, $db->status() == DB_NOTFOUND ;
62 ok 17, $db->status() eq $DB_errors{'DB_NOTFOUND'} ;
84 ok 25, $db->db_get($k, $v, DB_GET_BOTH) == DB_NOTFOUND ;
87 ok 26, $db->db_get($k, $v, DB_GET_BOTH) == DB_NOTFOUND ;
151 ok 36, $cursor->status() == DB_NOTFOUND ;
152 ok 37, $cursor->status() eq $DB_errors{'DB_NOTFOUND'};
168 ok 40, $status == DB_NOTFOUND ;
169 ok 41, $status eq $DB_errors{'DB_NOTFOUND'};
179 ok 47, $cursor->c_get($k, $v, DB_GET_BOTH) == DB_NOTFOUND ;
[all...]
H A Djoin.t154 ok 21, $cursor1->status() == DB_NOTFOUND ;
179 ok 28, $cursor1->status() == DB_NOTFOUND ;
207 ok 35, $cursor1->status() == DB_NOTFOUND ;
H A Dqueue.t77 ok $db->db_get(7, $value) == DB_NOTFOUND ;
78 ok $db->status() == DB_NOTFOUND ;
79 ok $db->status() eq $DB_errors{'DB_NOTFOUND'} ;
169 ok $cursor->status() == DB_NOTFOUND ;
170 ok $cursor->status() eq $DB_errors{'DB_NOTFOUND'} ;
186 ok $status == DB_NOTFOUND ;
187 ok $status eq $DB_errors{'DB_NOTFOUND'} ;
213 ok $cursor->status() == DB_NOTFOUND ;
226 ok ((tied @array)->status() == DB_NOTFOUND) ;
299 ok $cursor->c_get($k, $v, DB_FIRST) == DB_NOTFOUND ;
[all...]
H A Drecno.t64 ok 18, ($status = $db->db_get(7, $value)) == DB_NOTFOUND ;
65 ok 19, $db->status() == DB_NOTFOUND ;
66 ok 20, $db->status() eq $DB_errors{'DB_NOTFOUND'} ;
152 ok 36, $cursor->status() == DB_NOTFOUND ;
153 ok 37, $cursor->status() eq $DB_errors{'DB_NOTFOUND'} ;
169 ok 40, $status == DB_NOTFOUND ;
170 ok 41, $status eq $DB_errors{'DB_NOTFOUND'} ;
196 ok 48, $cursor->status() == DB_NOTFOUND ;
209 ok 56, (tied @array)->status() == DB_NOTFOUND ;
214 ok 60, (tied @array)->status() == DB_NOTFOUND ;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/btree/
H A Dbt_recno.c140 DB_MAX_RECORDS, 0)) != 0 && ret == DB_NOTFOUND)
173 if (ret == 0 || ret == DB_NOTFOUND)
225 ret = DB_NOTFOUND;
358 return (DB_NOTFOUND);
398 return (DB_NOTFOUND);
410 ret = DB_NOTFOUND;
420 DB_MAX_RECORDS, 0)) != 0) && ret != DB_NOTFOUND)
425 ret = DB_NOTFOUND;
437 * data, as recnos don't have dups. return DB_NOTFOUND.
443 ret = DB_NOTFOUND;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/rep/
H A Drep_log.c81 if (ret == DB_NOTFOUND && F_ISSET(rep, REP_F_MASTER))
91 * the end of its log. Return the DB_NOTFOUND if the client
109 * If we got DB_NOTFOUND it could be because the LSN we were
113 if (ret == DB_NOTFOUND) {
116 * If we still get DB_NOTFOUND the client gave us a
123 if (ret == DB_NOTFOUND && F_ISSET(rep, REP_F_MASTER)) {
193 if (ret == DB_NOTFOUND || ret == DB_REP_UNAVAIL)
431 } else if (ret == DB_NOTFOUND) {
440 if (ret == DB_NOTFOUND) {
445 * just return the DB_NOTFOUND
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am/
H A Djoin.cs65 if (ret == DB_NOTFOUND)
H A Dcurget.cs67 if (ret != DB_NOTFOUND) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dbm/
H A Ddbm.c293 if (ret == DB_NOTFOUND)
328 if (ret == DB_NOTFOUND)
363 if (ret == DB_NOTFOUND)
394 if (ret == DB_NOTFOUND)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/hsearch/
H A Dhsearch.c119 * The only possible DB error is DB_NOTFOUND, and it can't
126 if (ret != DB_NOTFOUND)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr015/
H A DTestLogc.cpp82 if (ret != DB_NOTFOUND) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr025/
H A DTestMulti.cpp54 } else if(err!=DB_NOTFOUND)
122 } else if(err!=DB_NOTFOUND)
180 } else if(err!=DB_NOTFOUND)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_dispatch.c176 if (ret == DB_NOTFOUND)
227 if (ret == DB_NOTFOUND)
601 * txnid list. This returns DB_NOTFOUND if the item isn't in the
618 return (DB_NOTFOUND);
627 * Returns DB_NOTFOUND if no such entry exists.
645 return (DB_NOTFOUND);
650 if (ret == DB_NOTFOUND && add_ok) {
671 * the list pointer is not initialized we return DB_NOTFOUND. If the
694 return (DB_NOTFOUND);
738 return (DB_NOTFOUND);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/env/
H A Denv_recover.c215 if (ret == DB_NOTFOUND)
237 if (ret == DB_NOTFOUND)
260 if (ret == DB_NOTFOUND)
349 if (ret == DB_NOTFOUND) {
411 if (ret == DB_NOTFOUND) {
462 if (ret == DB_NOTFOUND)
543 if (ret == DB_NOTFOUND)
745 * done. Break with DB_NOTFOUND.
748 ret = DB_NOTFOUND;
763 (ret == 0 || ret == DB_NOTFOUND))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am_conf/
H A Dlogrec.cs94 if (ret != DB_NOTFOUND)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/log/
H A Dlog_archive.c164 * A return of DB_NOTFOUND means the checkpoint LSN
169 if (ret == DB_NOTFOUND)
278 * No need to check for a return value of DB_NOTFOUND;
287 * If the LSN has not been filled in return DB_NOTFOUND
291 ret = DB_NOTFOUND;
340 if (ret != DB_NOTFOUND)
436 if (ret == DB_NOTFOUND)
H A Dlog_get.c306 * the passed-in structure after DB_LOGC->get fails with DB_NOTFOUND.
454 ret = DB_NOTFOUND;
462 ret = DB_NOTFOUND;
555 * return EOF/DB_NOTFOUND.
600 ret = DB_NOTFOUND;
736 return (DB_NOTFOUND);
820 return (DB_NOTFOUND);
855 return (DB_NOTFOUND);
860 return (DB_NOTFOUND);
862 return (DB_NOTFOUND);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dbreg/
H A Ddbreg_rec.c262 != DB_NOTFOUND && ret != 0)
264 if (ret == DB_NOTFOUND || status != TXN_COMMIT)

Completed in 154 milliseconds

12345