Searched refs:DB_KEYEMPTY (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DOperationStatus.java34 new OperationStatus("KEYEMPTY", DbConstants.DB_KEYEMPTY);
48 case DbConstants.DB_KEYEMPTY:
H A DCursor.java952 errCode != DbConstants.DB_KEYEMPTY)
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/
H A Dex_btrec.c163 if (ret != DB_NOTFOUND && ret != DB_KEYEMPTY)
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/
H A DBtRecExample.cpp171 if (ret != DB_NOTFOUND && ret != DB_KEYEMPTY) {
/macosx-10.9.5/BerkeleyDB-21/db/btree/
H A Dbt_recno.c26 * return DB_KEYEMPTY if they're explicitly requested.. If not re-numbering
29 * or "prev", and return DB_KEYEMPTY if they're explicitly requested.
219 return (DB_KEYEMPTY);
250 ret = DB_KEYEMPTY;
348 return (DB_KEYEMPTY);
529 ret = DB_KEYEMPTY;
1118 case DB_KEYEMPTY:
H A Dbt_cursor.c698 return (DB_KEYEMPTY);
822 ret = DB_KEYEMPTY;
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/internal/
H A DDbConstants.java60 int DB_KEYEMPTY = -30996; field in interface:DbConstants
/macosx-10.9.5/BerkeleyDB-21/db/build_brew/
H A Ddb_int.h321 #define DB_RETOK_DBCDEL(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
323 #define DB_RETOK_DBCGET(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
/macosx-10.9.5/BerkeleyDB-21/db/build_s60/
H A Ddb_int.h320 #define DB_RETOK_DBCDEL(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
322 #define DB_RETOK_DBCGET(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/
H A Ddb_int.h323 #define DB_RETOK_DBCDEL(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
325 #define DB_RETOK_DBCGET(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
/macosx-10.9.5/BerkeleyDB-21/db/build_wince/
H A Ddb_int.h320 #define DB_RETOK_DBCDEL(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
322 #define DB_RETOK_DBCGET(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
/macosx-10.9.5/BerkeleyDB-21/db/build_windows/
H A Ddb_int.h320 #define DB_RETOK_DBCDEL(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
322 #define DB_RETOK_DBCGET(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
/macosx-10.9.5/BerkeleyDB-21/db/db/
H A Ddb_cam.c1067 * The DB_KEYEMPTY return needs special handling -- if the
1071 if (ret == DB_KEYEMPTY)
1100 if (ret == DB_KEYEMPTY || ret == DB_NOTFOUND) {
1233 ret == DB_KEYEMPTY) {
1248 ret == DB_KEYEMPTY)
1366 if (ret != DB_NOTFOUND && ret != DB_KEYEMPTY)
1376 if (ret != DB_NOTFOUND && ret != DB_KEYEMPTY)
1429 if (ret == DB_KEYEMPTY || ret == DB_NOTFOUND) {
H A Ddb_am.c897 if (ret == DB_NOTFOUND || ret == DB_KEYEMPTY)
942 } else if (ret != DB_NOTFOUND && ret != DB_KEYEMPTY)
/macosx-10.9.5/BerkeleyDB-21/db/dbinc/
H A Ddb_int.in319 #define DB_RETOK_DBCDEL(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
321 #define DB_RETOK_DBCGET(ret) ((ret) == 0 || (ret) == DB_KEYEMPTY || \
/macosx-10.9.5/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Dqueue.t73 ok $db->db_get(2, $value) == DB_KEYEMPTY ;
74 ok $db->status() == DB_KEYEMPTY ;
75 ok $db->status() eq $DB_errors{'DB_KEYEMPTY'} ;
H A Drecno.t60 ok 15, ($status = $db->db_get(1, $value)) == DB_KEYEMPTY ;
61 ok 16, $db->status() == DB_KEYEMPTY ;
62 ok 17, $db->status() eq $DB_errors{'DB_KEYEMPTY'} ;
/macosx-10.9.5/BerkeleyDB-21/db/common/
H A Ddb_err.c254 case DB_KEYEMPTY:
255 return ("DB_KEYEMPTY: Non-existent key/data pair");
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Ddict_db.c163 case DB_KEYEMPTY: /* get, others? */
/macosx-10.9.5/BerkeleyDB-21/db/hash/
H A Dhash.c476 ret = DB_KEYEMPTY;
561 ret = DB_KEYEMPTY;
/macosx-10.9.5/BerkeleyDB-21/db/perl/BerkeleyDB/
H A Dmkconsts186 DB_KEYEMPTY => DEFINE,
H A DBerkeleyDB.pm191 DB_KEYEMPTY
H A Dconstants.h694 DB_KEYEMPTY DB_KEYEXIST DB_KEYFIRST DB_LOCKDOWN DB_LOCK_GET DB_LOCK_PUT
1025 if (memEQ(name, "DB_KEYEMPTY", 11)) {
1027 #ifdef DB_KEYEMPTY
1028 *iv_return = DB_KEYEMPTY;
5505 DB_JOIN_ITEM DB_JOIN_NOSORT DB_KEYEMPTY DB_KEYEXIST DB_KEYFIRST
/macosx-10.9.5/BerkeleyDB-21/db/sequence/
H A Dsequence.c244 if ((ret != DB_NOTFOUND && ret != DB_KEYEMPTY) ||
/macosx-10.9.5/BerkeleyDB-21/db/php_db4/
H A Ddb4.cpp597 REGISTER_LONG_CONSTANT("DB_KEYEMPTY", DB_KEYEMPTY, CONST_CS | CONST_PERSISTENT);
1663 if(ret != DB_KEYEMPTY) {

Completed in 300 milliseconds

12