Home
last modified time | relevance | path

Searched refs:tchdbseekwrite (Results 1 – 2 of 2) sorted by relevance

/dports/databases/tokyocabinet/tokyocabinet-1.4.48/
H A Dtchdb.c126 static bool tchdbseekwrite(TCHDB *hdb, off_t off, const void *buf, size_t size);
2241 if(!tchdbseekwrite(hdb, hdb->msiz, buf, wp - buf)){ in tchdbsavefbp()
2634 if(!tchdbseekwrite(hdb, off, rbuf, wp - rbuf)) return false; in tchdbwritefb()
2754 if(!tchdbseekwrite(hdb, rec->off, rbuf, rec->rsiz)){ in tchdbwriterec()
2769 if(!tchdbseekwrite(hdb, entoff, &llnum, sizeof(uint64_t))) return false; in tchdbwriterec()
2773 if(!tchdbseekwrite(hdb, entoff, &lnum, sizeof(uint32_t))) return false; in tchdbwriterec()
2912 if(!tchdbseekwrite(hdb, toff, &llnum, sizeof(uint64_t))) return false; in tchdbremoverec()
2917 if(!tchdbseekwrite(hdb, toff, &lnum, sizeof(uint32_t))) return false; in tchdbremoverec()
2928 if(!tchdbseekwrite(hdb, entoff, &lnum, sizeof(uint32_t))) return false; in tchdbremoverec()
3500 if(!tchdbseekwrite(hdb, hdb->msiz, hbuf, 2)) err = true; in tchdbopenimpl()
[all …]
H A DChangeLog113 * tchdb.c (tchdbseekwrite): a bug related to emulation of the UBC was fixed.