dat 326 gtags/gtags.c const char *dat = 0; dat 338 gtags/gtags.c for (dat = dbop_first(dbop, NULL, NULL, 0); dat != NULL; dat = dbop_next(dbop)) { dat 342 gtags/gtags.c printf("%s\t%s\t%s\n", dbop->lastkey, dat, flag); dat 344 gtags/gtags.c printf("%s\t%s\n", dbop->lastkey, dat); dat 331 libutil/dbop.c DBT key, dat; dat 337 libutil/dbop.c status = (*db->get)(db, &key, &dat, 0); dat 338 libutil/dbop.c dbop->lastdat = (char *)dat.data; dat 339 libutil/dbop.c dbop->lastsize = dat.size; dat 348 libutil/dbop.c return (dat.data); dat 361 libutil/dbop.c DBT key, dat; dat 379 libutil/dbop.c dat.data = (char *)data; dat 380 libutil/dbop.c dat.size = strlen(data)+1; dat 382 libutil/dbop.c status = (*db->put)(db, &key, &dat, 0); dat 405 libutil/dbop.c DBT key, dat; dat 415 libutil/dbop.c dat.data = (char *)data; dat 416 libutil/dbop.c dat.size = length; dat 418 libutil/dbop.c status = (*db->put)(db, &key, &dat, 0); dat 457 libutil/dbop.c dbop_update(DBOP *dbop, const char *key, const char *dat) dat 459 libutil/dbop.c dbop_put(dbop, key, dat); dat 478 libutil/dbop.c DBT key, dat; dat 496 libutil/dbop.c for (status = (*db->seq)(db, &key, &dat, R_CURSOR); dat 498 libutil/dbop.c status = (*db->seq)(db, &key, &dat, R_NEXT)) { dat 512 libutil/dbop.c for (status = (*db->seq)(db, &key, &dat, R_FIRST); dat 514 libutil/dbop.c status = (*db->seq)(db, &key, &dat, R_NEXT)) { dat 523 libutil/dbop.c dbop->lastdat = (char *)dat.data; dat 524 libutil/dbop.c dbop->lastsize = dat.size; dat 540 libutil/dbop.c return ((char *)dat.data); dat 555 libutil/dbop.c DBT key, dat; dat 562 libutil/dbop.c while ((status = (*db->seq)(db, &key, &dat, R_NEXT)) == RET_SUCCESS) { dat 563 libutil/dbop.c assert(dat.data != NULL); dat 568 libutil/dbop.c else if (ismeta(dat.data)) dat 578 libutil/dbop.c dbop->lastdat = (char *)dat.data; dat 579 libutil/dbop.c dbop->lastsize = dat.size; dat 591 libutil/dbop.c return (flags & DBOP_KEY) ? (char *)key.data : (char *)dat.data; dat 630 libutil/dbop.c const char *dat = dbop_lastdat(dbop, &size); dat 637 libutil/dbop.c if (dat) { dat 638 libutil/dbop.c int i = strlen(dat) + 1; dat 640 libutil/dbop.c flag = dat + i;