Searched refs:hdi (Results 1 – 7 of 7) sorted by relevance
/developtools/integration_verification/tools/deps_guard/rules/NO-Depends-On-HDI/ |
D | README.md | 36 shlib_type = "hdi" 41 同样,非HDI模块不要增加shlib_type="hdi"标识。 45 编译框架上ohos_shared_library模板会对所有的HDI模块(shlib_type为hdi)进行全局符号优化,使得所有的HDI模块默认都不对外暴露符号,减小HDI模块的大小,同时加快HD… 48 # Set version_script for hdi service libraries 49 if (defined(invoker.shlib_type) && invoker.shlib_type == "hdi") { 51 _version_script = rebase_path("//build/templates/cxx/hdi.versionscript") 62 处理方式:参考2.2章节的描述增加shlib_type = "hdi"标识。
|
/developtools/hdc/src/host/ |
D | server_for_client.cpp | 203 HDaemonInfo hdi = nullptr; in SendToDaemon() local 207 ptrServer->AdminDaemonMap(OP_QUERY, hChannel->connectKey, hdi); in SendToDaemon() 208 if (hdi == nullptr) { in SendToDaemon() 212 if (hdi->connStatus != STATUS_CONNECTED) { in SendToDaemon() 216 if (!hdi->hSession) { in SendToDaemon() 220 …if (ptrServer->Send(hdi->hSession->sessionId, hChannel->channelId, commandFlag, bufPtr, bufSize) <… in SendToDaemon() 265 HDaemonInfo hdi = nullptr; in OrderConnecTargetResult() local 269 ptrServer->AdminDaemonMap(OP_GET_ANY, target, hdi); in OrderConnecTargetResult() 271 ptrServer->AdminDaemonMap(OP_QUERY, target, hdi); in OrderConnecTargetResult() 273 if (hdi && hdi->connStatus == STATUS_CONNECTED) { in OrderConnecTargetResult() [all …]
|
D | server.cpp | 222 void HdcServer::BuildDaemonVisableLine(HDaemonInfo hdi, bool fullDisplay, string &out) in BuildDaemonVisableLine() argument 226 if (hdi->connType < CONN_UNKNOWN) { in BuildDaemonVisableLine() 227 sConn = conTypeDetail[hdi->connType]; in BuildDaemonVisableLine() 231 if (hdi->connStatus < STATUS_UNAUTH) { in BuildDaemonVisableLine() 232 … if (hdi->connStatus == STATUS_CONNECTED && hdi->daemonAuthStatus == DAEOMN_UNAUTHORIZED) { in BuildDaemonVisableLine() 235 sStatus = conStatusDetail[hdi->connStatus]; in BuildDaemonVisableLine() 239 string devname = hdi->devName; in BuildDaemonVisableLine() 243 …out = Base::StringFormat("%s\t\t%s\t%s\t%s\n", hdi->connectKey.c_str(), sConn.c_str(), sStatus.c_s… in BuildDaemonVisableLine() 246 if (hdi->connStatus == STATUS_CONNECTED) { in BuildDaemonVisableLine() 247 out = Base::StringFormat("%s", hdi->connectKey.c_str()); in BuildDaemonVisableLine() [all …]
|
D | server.h | 49 void BuildDaemonVisableLine(HDaemonInfo hdi, bool fullDisplay, string &out); 57 void BuildForwardVisableLine(HDaemonInfo hdi, char *out, int sizeOutBuf);
|
D | host_uart.cpp | 544 HDaemonInfo hdi = nullptr; in EnumSerialPort() local 545 server.AdminDaemonMap(OP_QUERY, port, hdi); in EnumSerialPort() 546 if (hdi == nullptr and connectedPorts.find(port) == connectedPorts.end()) { in EnumSerialPort() 553 HDaemonInfo hdi = nullptr; in EnumSerialPort() local 554 server.AdminDaemonMap(OP_QUERY, port, hdi); in EnumSerialPort() 555 if (hdi != nullptr and hdi->hSession == nullptr) { in EnumSerialPort()
|
/developtools/hdc/hdc_rust/src/cffi/host/ |
D | host_usb.cpp | 522 static void BuildDaemonVisableLine(HDaemonInfo hdi, bool fullDisplay, string &out) in OpenDeviceMyNeed() argument 527 switch (hdi->connType) { in OpenDeviceMyNeed() 546 switch (hdi->connStatus) { in OpenDeviceMyNeed() 560 … out = StringFormat("%s\t\t%s\t%s\t%s\n", hdi->connectKey.c_str(), sConn.c_str(), sStatus.c_str(), in OpenDeviceMyNeed() 561 hdi->devName.c_str()); in OpenDeviceMyNeed() 563 if (hdi->connStatus == STATUS_CONNECTED) { in OpenDeviceMyNeed() 564 out = StringFormat("%s\n", hdi->connectKey.c_str()); in OpenDeviceMyNeed() 669 HDaemonInfo hdi = mapDaemon[hDaemonInfoInOut->connectKey]; in OpenDeviceMyNeed() local 670 if (hdi) { in OpenDeviceMyNeed()
|
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/ |
D | elf_file_mgr.py | 26 from .hdi import HdiParser
|