Home
last modified time | relevance | path

Searched refs:clientCwd (Results 1 – 10 of 10) sorted by relevance

/developtools/smartperf_host/ide/src/hdc/message/
DTransferConfig.ts42 clientCwd: string,
57 this._clientCwd = clientCwd;
142 get clientCwd(): string { method in TransferConfig
146 set clientCwd(value: string) { method in TransferConfig
/developtools/smartperf_host/ide/test/hdc/message/
DTransferConfig.test.ts115 expect(transferConfig.clientCwd).toBeUndefined();
119 transferConfig.clientCwd = true;
120 expect(transferConfig.clientCwd).toBeTruthy();
/developtools/hdc/hdc_rust/src/cffi/
Dserial_struct.cpp77 .clientCwd = string(value.clientCwd), in SerializeTransferConfig()
198 .clientCwd = StringToHeapPtr(tc.clientCwd), in ParseTransferConfig()
Dserial_struct.h67 string clientCwd; member
118 const char* clientCwd; member
192 Field<field11, &BaseStruct::TransferConfig::clientCwd>("clientCwd"),
/developtools/hdc/src/host/
Dhost_app.cpp42 context->transferConfig.clientCwd = argv[i + 1]; in BeginInstall()
52 ExtractRelativePath(context->transferConfig.clientCwd, path); in BeginInstall()
/developtools/smartperf_host/ide/test/hdc/common/
DSerialize.test.ts50 clientCwd: 1,
/developtools/hdc/src/common/
Dfile.cpp92 context->transferConfig.clientCwd = argv[i + 1]; in SetMasterParameters()
116 ExtractRelativePath(context->transferConfig.clientCwd, context->localPath); in SetMasterParameters()
272 childRet = SmartSlavePath(stat.clientCwd, ctxNow.localPath, stat.optionalName.c_str()); in SlaveCheck()
Dtransfer.h35 string clientCwd; member
Dserial_struct.h50 … Field<field11, &Hdc::HdcTransferBase::TransferConfig::clientCwd>("clientCwd"),
/developtools/smartperf_host/ide/src/hdc/common/
DSerialize.ts67 let clientCwdValue = this.serializeToString(11, transferConfig.clientCwd);