Home
last modified time | relevance | path

Searched refs:childShell (Results 1 – 4 of 4) sorted by relevance

/developtools/hdc/src/common/
Dasync_cmd.cpp33 if (childShell != nullptr) { in ~AsyncCmd()
34 delete childShell; in ~AsyncCmd()
35 childShell = nullptr; in ~AsyncCmd()
41 if (childShell != nullptr && !childShell->ReadyForRelease()) { in ReadyForRelease()
49 if (childShell != nullptr) { in ReadyForRelease()
50 delete childShell; in ReadyForRelease()
51 childShell = nullptr; in ReadyForRelease()
60 if (childShell != nullptr) { in DoRelease()
61 childShell->StopWorkOnThread(false, nullptr); in DoRelease()
263childShell = new(std::nothrow) HdcFileDescriptor(loop, fd, this, ChildReadCallback, FinishShellPro… in ExecuteCommand()
[all …]
Dasync_cmd.h55 HdcFileDescriptor *childShell = nullptr; variable
/developtools/hdc/src/daemon/
Dshell.cpp39 childShell = nullptr; in HdcShell()
58 if (!childShell->ReadyForRelease()) { in ReadyForRelease()
62 delete childShell; in ReadyForRelease()
63 childShell = nullptr; in ReadyForRelease()
76 if (childShell) { in StopTask()
77 childShell->StopWorkOnThread(false, nullptr); in StopTask()
126 int ret = childShell->Write(payload, payloadSize); in CommandDispatch()
298childShell = new(std::nothrow) HdcFileDescriptor(loopTask, fdPTY, this, ChildReadCallback, FinishS… in StartShell()
299 if (childShell == nullptr) { in StartShell()
304 if (!childShell->StartWorkOnThread()) { in StartShell()
Dshell.h38 HdcFileDescriptor *childShell; variable