Home
last modified time | relevance | path

Searched refs:runShellCommand (Results 1 – 9 of 9) sorted by relevance

/development/tools/winscope/src/trace_collection/adb/
Dadb_device_connection.ts70 const root = await this.runShellCommand('su root id -u');
106 matchingFiles = await this.runShellCommand(
110 matchingFiles = await this.runShellCommand(`su root find ${path}`);
128 const output = await this.runShellCommand('screenrecord --version');
132 const helpText = await this.runShellCommand('screenrecord --help');
149 const output = await this.runShellCommand(
183 const serviceCheck = await this.runShellCommand('service check Wayland');
189 abstract runShellCommand(cmd: string): Promise<string>;
/development/tools/winscope/src/trace_collection/controller/
Dtracing_session.ts44 const output = await device.runShellCommand(this.target.startCmd);
59 await device.runShellCommand(
80 await device.runShellCommand(cmd);
Dperfetto_session_moderator.ts56 await this.device.runShellCommand(`su root rm -f ${this.configFilepath}`);
81 await this.device?.runShellCommand(
187 this.queryResult = await this.device.runShellCommand('perfetto --query');
Dtrace_collection_controller.ts182 await device.runShellCommand(`su root rm -rf ${WINSCOPE_BACKUP_DIR}`);
183 await device.runShellCommand(`su root mkdir ${WINSCOPE_BACKUP_DIR}`);
/development/tools/winscope/src/trace_collection/wdp/
Dwdp_device_connection.ts70 override async runShellCommand(cmd: string): Promise<string> { method in WdpDeviceConnection
91 const output = await this.runShellCommand(target.startCmd);
116 const output = await this.runShellCommand(target.stopCmd);
Dwdp_device_connection_test.ts205 const output = await connection.runShellCommand('test cmd');
215 const output = await connection.runShellCommand('test cmd');
226 const output = await connection.runShellCommand('test cmd');
/development/tools/winscope/src/trace_collection/mock/
Dmock_adb_device_connection.ts50 override async runShellCommand(cmd: string): Promise<string> { method in MockAdbDeviceConnection
/development/tools/winscope/src/trace_collection/winscope_proxy/
Dwinscope_proxy_device_connection_test.ts99 await connection.runShellCommand('');
160 const output = await connection.runShellCommand('test cmd');
178 const output = await connection.runShellCommand('');
191 const output = await connection.runShellCommand('');
Dwinscope_proxy_device_connection.ts56 override async runShellCommand(cmd: string): Promise<string> { method in WinscopeProxyDeviceConnection