Home
last modified time | relevance | path

Searched refs:CMDSTR_SHELL (Results 1 – 8 of 8) sorted by relevance

/developtools/smartperf_host/ide/src/hdc/hdcclient/
DFormatCommand.ts17 import { CMDSTR_FILE_RECV, CMDSTR_FILE_SEND, CMDSTR_SHELL } from '../common/ConstantType';
34 if (cmd.startsWith(CMDSTR_SHELL + ' ')) {
36 formatCommand.parameters = cmd.substring((CMDSTR_SHELL + ' ').length);
37 } else if (cmd.startsWith(CMDSTR_SHELL)) {
/developtools/smartperf_host/ide/src/hdc/common/
DConstantType.ts23 export const CMDSTR_SHELL: string = 'shell'; constant
/developtools/hdc/src/host/
Dtranslate.cpp328 } else if (!strncmp(input.c_str(), (CMDSTR_SHELL + " ").c_str(), CMDSTR_SHELL.size() + 1)) { in String2FormatCommand()
330 outCmd->parameters = input.c_str() + CMDSTR_SHELL.size() + 1; in String2FormatCommand()
331 } else if (!strcmp(input.c_str(), CMDSTR_SHELL.c_str())) { in String2FormatCommand()
Dext_client.cpp80 } else if (!strncmp(command.c_str(), CMDSTR_SHELL.c_str(), CMDSTR_SHELL.size())) { in ExecuteCommand()
97 } else if (!strncmp(command.c_str(), (CMDSTR_SHELL + " ").c_str(), CMDSTR_SHELL.size() + 1) || in ExecuteCommand()
Dmain.cpp57 registerCommand.push_back(CMDSTR_SHELL); in IsRegisterCommand()
Dclient.cpp480 if (command == CMDSTR_SHELL) { in BindLocalStd()
/developtools/hdc/src/test/
Dut_command.cpp80 TestRunClient(debugServerPort, debugConnectKey, CMDSTR_SHELL.c_str()); in TestTaskCommand()
/developtools/hdc/src/common/
Ddefine.h128 const string CMDSTR_SHELL = "shell"; variable