Lines Matching refs:write_context
215 WriteContext write_context; in WriteImpl() local
232 status = PreprocessWrite(write_options, &need_log_sync, &write_context); in WriteImpl()
467 WriteContext write_context; in PipelinedWriteImpl() local
482 w.status = PreprocessWrite(write_options, &need_log_sync, &write_context); in PipelinedWriteImpl()
681 WriteContext write_context; in WriteImplWALOnly() local
690 status = PreprocessWrite(write_options, &need_log_sync, &write_context); in WriteImplWALOnly()
870 WriteContext* write_context) { in PreprocessWrite() argument
872 assert(write_context != nullptr && need_log_sync != nullptr); in PreprocessWrite()
886 status = SwitchWAL(write_context); in PreprocessWrite()
896 status = HandleWriteBufferFull(write_context); in PreprocessWrite()
900 status = TrimMemtableHistory(write_context); in PreprocessWrite()
905 status = ScheduleFlushes(write_context); in PreprocessWrite()
1216 Status DBImpl::SwitchWAL(WriteContext* write_context) { in SwitchWAL() argument
1218 assert(write_context != nullptr); in SwitchWAL()
1286 status = SwitchMemtable(cfd, write_context); in SwitchWAL()
1311 Status DBImpl::HandleWriteBufferFull(WriteContext* write_context) { in HandleWriteBufferFull() argument
1313 assert(write_context != nullptr); in HandleWriteBufferFull()
1365 status = SwitchMemtable(cfd, write_context); in HandleWriteBufferFull()