Lines Matching refs:MasterSM
212 class MasterSM : public BaseSM {
214 MasterSM(const std::wstring& path, HANDLE channel, bool dump_to_disk)
217 create_callback_(this, &MasterSM::DoCreateEntryComplete)),
219 write_callback_(this, &MasterSM::DoReadDataComplete)) {
221 virtual ~MasterSM() {
269 net::CompletionCallbackImpl<MasterSM> create_callback_;
270 net::CompletionCallbackImpl<MasterSM> write_callback_;
273 void MasterSM::OnIOCompleted(MessageLoopForIO::IOContext* context,
318 bool MasterSM::DoInit() {
355 void MasterSM::SendGetPrevEntry() {
364 void MasterSM::DoGetEntry() {
383 void MasterSM::DoGetKey(int bytes_read) {
407 void MasterSM::DoCreateEntryComplete(int result) {
428 void MasterSM::DoGetUseTimes() {
441 void MasterSM::SendGetDataSize() {
451 void MasterSM::DoGetDataSize() {
467 void MasterSM::CloseEntry() {
476 void MasterSM::SendReadData() {
497 void MasterSM::DoReadData(int bytes_read) {
530 void MasterSM::DoReadDataComplete(int ret) {
540 void MasterSM::SendQuit() {
550 void MasterSM::DoEnd() {
555 void MasterSM::Fail() {
903 MasterSM master(output_path, pipe, copy_to_text);