Lines Matching refs:SlaveSM
563 class SlaveSM : public BaseSM {
565 SlaveSM(const std::wstring& path, HANDLE channel);
566 virtual ~SlaveSM();
595 net::CompletionCallbackImpl<SlaveSM> read_callback_;
596 net::CompletionCallbackImpl<SlaveSM> next_callback_;
600 SlaveSM::SlaveSM(const std::wstring& path, HANDLE channel)
603 read_callback_(this, &SlaveSM::DoReadDataComplete)),
605 next_callback_(this, &SlaveSM::DoGetEntryComplete)) {
621 SlaveSM::~SlaveSM() {
626 void SlaveSM::OnIOCompleted(MessageLoopForIO::IOContext* context,
679 bool SlaveSM::DoInit() {
689 void SlaveSM::DoGetNextEntry() {
704 void SlaveSM::DoGetPrevEntry() {
725 int32 SlaveSM::GetEntryFromList() {
749 void SlaveSM::DoGetEntryComplete(int result) {
761 void SlaveSM::DoCloseEntry() {
777 void SlaveSM::DoGetKey() {
799 void SlaveSM::DoGetUseTimes() {
814 void SlaveSM::DoGetDataSize() {
831 void SlaveSM::DoReadData() {
858 void SlaveSM::DoReadDataComplete(int ret) {
866 void SlaveSM::DoEnd() {
871 void SlaveSM::Fail() {
923 SlaveSM slave(input_path, pipe);