Home
last modified time | relevance | path

Searched refs:changes_buf (Results 1 – 5 of 5) sorted by relevance

/dports/databases/xapian-core12/xapian-core-1.2.25/backends/flint/
H A Dflint_btreebase.cc304 string changes_buf; in write_to_file() local
305 changes_buf += F_pack_uint(1u); // Indicate the item is a base file. in write_to_file()
306 changes_buf += F_pack_string(tablename); in write_to_file()
307 changes_buf += base_letter; // The base file letter. in write_to_file()
308 changes_buf += F_pack_uint(buf.size()); in write_to_file()
309 io_write(changes_fd, changes_buf.data(), changes_buf.size()); in write_to_file()
/dports/databases/xapian-core/xapian-core-1.4.18/backends/chert/
H A Dchert_btreebase.cc314 string changes_buf; in write_to_file() local
315 pack_uint(changes_buf, 1u); // Indicate the item is a base file. in write_to_file()
316 pack_string(changes_buf, tablename); in write_to_file()
317 changes_buf += base_letter; // The base file letter. in write_to_file()
318 pack_uint(changes_buf, buf.size()); in write_to_file()
319 io_write(changes_fd, changes_buf.data(), changes_buf.size()); in write_to_file()
/dports/databases/xapian-core12/xapian-core-1.2.25/backends/brass/
H A Dbrass_btreebase.cc323 string changes_buf; in write_to_file() local
324 pack_uint(changes_buf, 1u); // Indicate the item is a base file. in write_to_file()
325 pack_string(changes_buf, tablename); in write_to_file()
326 changes_buf += base_letter; // The base file letter. in write_to_file()
327 pack_uint(changes_buf, buf.size()); in write_to_file()
328 io_write(changes_fd, changes_buf.data(), changes_buf.size()); in write_to_file()
/dports/databases/xapian-core12/xapian-core-1.2.25/backends/chert/
H A Dchert_btreebase.cc328 string changes_buf; in write_to_file() local
329 pack_uint(changes_buf, 1u); // Indicate the item is a base file. in write_to_file()
330 pack_string(changes_buf, tablename); in write_to_file()
331 changes_buf += base_letter; // The base file letter. in write_to_file()
332 pack_uint(changes_buf, buf.size()); in write_to_file()
333 io_write(changes_fd, changes_buf.data(), changes_buf.size()); in write_to_file()
/dports/databases/xapian-core/xapian-core-1.4.18/backends/glass/
H A Dglass_version.cc315 string changes_buf; in write() local
316 changes_buf += '\xfe'; in write()
317 pack_uint(changes_buf, new_rev); in write()
318 pack_uint(changes_buf, s.size()); in write()
319 changes->write_block(changes_buf); in write()