Searched refs:CMDSTR_SHELL (Results 1 – 8 of 8) sorted by relevance
/developtools/smartperf_host/ide/src/hdc/hdcclient/ |
D | FormatCommand.ts | 17 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/ |
D | ConstantType.ts | 23 export const CMDSTR_SHELL: string = 'shell'; constant
|
/developtools/hdc/src/host/ |
D | translate.cpp | 328 } 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()
|
D | ext_client.cpp | 80 } 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()
|
D | main.cpp | 57 registerCommand.push_back(CMDSTR_SHELL); in IsRegisterCommand()
|
D | client.cpp | 480 if (command == CMDSTR_SHELL) { in BindLocalStd()
|
/developtools/hdc/src/test/ |
D | ut_command.cpp | 80 TestRunClient(debugServerPort, debugConnectKey, CMDSTR_SHELL.c_str()); in TestTaskCommand()
|
/developtools/hdc/src/common/ |
D | define.h | 128 const string CMDSTR_SHELL = "shell"; variable
|