Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dasync_cmd.cpp31 if (childShell != nullptr) { in ~AsyncCmd()
32 delete childShell; in ~AsyncCmd()
33 childShell = nullptr; in ~AsyncCmd()
40 if (childShell != nullptr && !childShell->ReadyForRelease()) { in ReadyForRelease()
46 if (childShell != nullptr) { in ReadyForRelease()
47 delete childShell; in ReadyForRelease()
48 childShell = nullptr; in ReadyForRelease()
57 if (childShell != nullptr) { in DoRelease()
58 childShell->StopWorkOnThread(false, nullptr); in DoRelease()
203childShell = new(std::nothrow) HdcFileDescriptor(loop, fd, this, ChildReadCallback, FinishShellPro… in ExecuteCommand()
[all …]
Dasync_cmd.h52 HdcFileDescriptor *childShell = nullptr; variable
/developtools/hdc/src/daemon/
Dshell.cpp38 childShell = nullptr; in HdcShell()
55 if (!childShell->ReadyForRelease()) { in ReadyForRelease()
58 delete childShell; in ReadyForRelease()
59 childShell = nullptr; in ReadyForRelease()
71 if (childShell) { in StopTask()
72 childShell->StopWorkOnThread(false, nullptr); in StopTask()
121 childShell->Write(payload, payloadSize); in CommandDispatch()
273childShell = new(std::nothrow) HdcFileDescriptor(loopTask, fdPTY, this, ChildReadCallback, FinishS… in StartShell()
274 if (childShell == nullptr) { in StartShell()
279 if (!childShell->StartWorkOnThread()) { in StartShell()
Dshell.h38 HdcFileDescriptor *childShell; variable