• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/BerkeleyDB-21/db/tcl/

Lines Matching defs:subdb

1581 	char *arg, *db, *passwd, *subdb, msg[MSG_SIZE];
1587 db = subdb = NULL;
2214 * there is 1, a db name, if 2 a db and subdb name.
2220 * arrays for the subdb.
2229 (size_t)subdblen + 1, &subdb)) != 0) {
2234 memcpy(subdb, subdbtmp, (size_t)subdblen);
2235 subdb[subdblen] = '\0';
2259 ret = (*dbp)->open(*dbp, txn, db, subdb, type, open_flags, mode);
2263 if (subdb)
2264 __os_free(env, subdb);
2570 char *arg, *db, msg[MSG_SIZE], *passwd, *subdb;
2580 db = passwd = subdb = NULL;
2678 * file names. If there is 1, a db name, if 2 a db and subdb name.
2684 * arrays for the subdb.
2693 &subdb)) != 0) { Tcl_SetResult(interp,
2697 memcpy(subdb, subdbtmp, (size_t)subdblen);
2698 subdb[subdblen] = '\0';
2741 ret = dbenv->dbremove(dbenv, txn, db, subdb, iflags);
2743 ret = dbp->remove(dbp, db, subdb, 0);
2748 if (subdb)
2749 __os_free(env, subdb);
2791 char *arg, *db, msg[MSG_SIZE], *newname, *passwd, *subdb;
2800 db = newname = passwd = subdb = NULL;
2906 * arrays for the subdb.
2915 (size_t)subdblen + 1, &subdb)) != 0) {
2920 memcpy(subdb, subdbtmp, (size_t)subdblen);
2921 subdb[subdblen] = '\0';
2974 ret = dbenv->dbrename(dbenv, txn, db, subdb, newname, iflags);
2976 ret = dbp->rename(dbp, db, subdb, newname, 0);
2980 if (subdb)
2981 __os_free(env, subdb);
3030 char *arg, *db, *errpfx, *passwd, *subdb;
3037 db = errpfx = subdb = NULL;
3170 * file names. If there is 1, a db name, if 2 a db and subdb name.
3176 * arrays for the subdb.
3185 (size_t)subdblen + 1, &subdb)) != 0) {
3190 memcpy(subdb, subdbtmp, (size_t)subdblen);
3191 subdb[subdblen] = '\0';
3224 ret = dbp->verify(dbp, db, subdb, NULL, flags);