Home
last modified time | relevance | path

Searched refs:HdcClient (Results 1 – 12 of 12) sorted by relevance

/developtools/smartperf_host/ide/test/hdc/hdcclient/
DHdcClient.test.ts17 import { HdcClient } from '../../../dist/hdc/hdcclient/HdcClient.js';
21 let hdcClient = new HdcClient();
25 let hdcClient = new HdcClient();
29 let hdcClient = new HdcClient();
33 let hdcClient = new HdcClient();
37 let hdcClient = new HdcClient();
42 let hdcClient = new HdcClient();
47 let hdcClient = new HdcClient();
51 let hdcClient = new HdcClient();
/developtools/hdc/src/host/
Dclient.cpp28 HdcClient::HdcClient(const bool serverOrClient, const string &addrString, uv_loop_t *loopMainIn, bo… in HdcClient() function in Hdc::HdcClient
39 HdcClient::~HdcClient() in ~HdcClient()
49 void HdcClient::NotifyInstanceChannelFree(HChannel hChannel) in NotifyInstanceChannelFree()
57 uint32_t HdcClient::GetLastPID() in GetLastPID()
73 bool HdcClient::StartKillServer(const char *cmd, bool startOrKill) in StartKillServer()
113 void HdcClient::DoCtrlServiceWork(uv_check_t *handle) in DoCtrlServiceWork()
115 HdcClient *thisClass = (HdcClient *)handle->data; in DoCtrlServiceWork()
133 int HdcClient::CtrlServiceWork(const char *commandIn) in CtrlServiceWork()
143 string HdcClient::AutoConnectKey(string &doCommand, const string &preConnectKey) const in AutoConnectKey()
198 string HdcClient::GetHilogPath() in GetHilogPath()
[all …]
Dclient.h26 class HdcClient : public HdcChannelBase {
28HdcClient(const bool serverOrClient, const string &addrString, uv_loop_t *loopMainIn, bool checkVe…
29 virtual ~HdcClient();
Dmain.cpp203 HdcClient client(false, serverListenString, &loopMain, commands == CMDSTR_CHECK_SERVER); in RunClientMode()
/developtools/profiler/host/smartperf/ide/src/hdc/
DHdcDeviceManager.ts16 import { HdcClient } from './hdcclient/HdcClient.js';
26 private static clientList: Map<string, HdcClient> = new Map();
27 private static currentHdcClient: HdcClient;
72 let hdcClient = new HdcClient(usbChannel, connectDevice);
/developtools/smartperf_host/ide/src/hdc/
DHdcDeviceManager.ts16 import { HdcClient } from './hdcclient/HdcClient.js';
26 private static clientList: Map<string, HdcClient> = new Map();
27 private static currentHdcClient: HdcClient;
72 let hdcClient = new HdcClient(usbChannel, connectDevice);
/developtools/profiler/host/smartperf/ide/src/hdc/hdcclient/
DHdcStream.ts17 import { HdcClient } from './HdcClient.js';
30 private hdcClient: HdcClient;
33 constructor(hdcClient: HdcClient, isStopCmd: boolean) {
DHdcClient.ts31 export class HdcClient implements DataListener { class
/developtools/smartperf_host/ide/src/hdc/hdcclient/
DHdcStream.ts17 import { HdcClient } from './HdcClient.js';
30 private hdcClient: HdcClient;
33 constructor(hdcClient: HdcClient, isStopCmd: boolean) {
DHdcClient.ts31 export class HdcClient implements DataListener { class
/developtools/hdc/src/test/
Dut_common.h21 using Hdc::HdcClient;
Dut_command.cpp32 HdcClient client(false, debugServerPort, &loopMain); in TestRunClient()