Home
last modified time | relevance | path

Searched refs:AdminDaemonMap (Results 1 – 6 of 6) sorted by relevance

/developtools/hdc/src/host/
Dserver.cpp311 string HdcServer::AdminDaemonMap(uint8_t opType, const string &connectKey, HDaemonInfo &hDaemonInfo… in AdminDaemonMap() function in Hdc::HdcServer
399 AdminDaemonMap(OP_QUERY, hSession->connectKey, hdiOld); in NotifyInstanceSessionFree()
408 AdminDaemonMap(OP_UPDATE, hSession->connectKey, hdiNew); in NotifyInstanceSessionFree()
506 AdminDaemonMap(OP_QUERY, hSession->connectKey, hdiOld); in ServerSessionHandshake()
521 AdminDaemonMap(OP_UPDATE, hSession->connectKey, hdiNew); in ServerSessionHandshake()
728 hdcServer->AdminDaemonMap(OP_GET_ANY, hSession->connectKey, pDi); in UsbPreConnect()
730 hdcServer->AdminDaemonMap(OP_QUERY, hSession->connectKey, pDi); in UsbPreConnect()
764 hdcServer->AdminDaemonMap(OP_QUERY, hSession->connectKey, pDi); in UartPreConnect()
814 AdminDaemonMap(OP_QUERY, connectKey, hdi); in CreateConnect()
821 AdminDaemonMap(OP_ADD, "", pDi); in CreateConnect()
[all …]
Dserver_for_client.cpp204 ptrServer->AdminDaemonMap(OP_QUERY, hChannel->connectKey, hdi); in SendToDaemon()
240 ptrServer->AdminDaemonMap(OP_ADD, STRING_EMPTY, pDi); in OrderFindTargets()
262 ptrServer->AdminDaemonMap(OP_GET_ANY, target, hdi); in OrderConnecTargetResult()
264 ptrServer->AdminDaemonMap(OP_QUERY, target, hdi); in OrderConnecTargetResult()
337 (reinterpret_cast<HdcServer *>(ptrServer))->AdminDaemonMap(OP_QUERY, connectKey, hdiOld); in CommandRemoveSession()
375 string sRet = ptrServer->AdminDaemonMap(cmd, STRING_EMPTY, hdi); in GetTargetList()
390 ptrServer->AdminDaemonMap(OP_GET_ANY, STRING_EMPTY, hdi); in GetAnyTarget()
409 ptrServer->AdminDaemonMap(OP_WAIT_FOR_ANY, STRING_EMPTY, hdi); in WaitForAny()
687 ptrServer->AdminDaemonMap(OP_QUERY, hChannel->connectKey, hdi); in FindAliveSessionFromDaemonMap()
745 ptrServer->AdminDaemonMap(OP_GET_ONLY, "", hdiOld); in CheckAutoFillTarget()
Dhost_uart.cpp426 server.AdminDaemonMap(OP_REMOVE, connectKey, diNewPtr); in EnumSerialPort()
437 server.AdminDaemonMap(OP_QUERY, connectKey, diOldPtr); in EnumSerialPort()
440 server.AdminDaemonMap(OP_ADD, connectKey, diNewPtr); in EnumSerialPort()
442 server.AdminDaemonMap(OP_UPDATE, connectKey, diNewPtr); in EnumSerialPort()
544 server.AdminDaemonMap(OP_QUERY, port, hdi); in EnumSerialPort()
553 server.AdminDaemonMap(OP_QUERY, port, hdi); in EnumSerialPort()
Dserver.h26 …virtual string AdminDaemonMap(uint8_t opType, const string &connectKey, HDaemonInfo &hDaemonInfoIn…
Dhost_usb.cpp330 pServer->AdminDaemonMap(OP_QUERY, hUSB->serialNumber, pDi); in UpdateUSBDaemonInfo()
332 pServer->AdminDaemonMap(OP_ADD, hUSB->serialNumber, hdiNew); in UpdateUSBDaemonInfo()
334 pServer->AdminDaemonMap(OP_UPDATE, hUSB->serialNumber, hdiNew); in UpdateUSBDaemonInfo()
/developtools/hdc/test/unittest/common/
Dhost_uart_test.cpp45 MOCK_METHOD3(AdminDaemonMap, string(uint8_t, const string &, HDaemonInfo &));
292 EXPECT_CALL(mockServer, AdminDaemonMap).Times(0);
299 EXPECT_CALL(mockServer, AdminDaemonMap).Times(0);
323 EXPECT_CALL(mockServer, AdminDaemonMap(OP_QUERY, "COMX", _))
326 EXPECT_CALL(mockServer, AdminDaemonMap(OP_QUERY, "COMY", _))
355 EXPECT_CALL(mockServer, AdminDaemonMap(OP_QUERY, "COMX", _))
358 EXPECT_CALL(mockServer, AdminDaemonMap(OP_QUERY, "COMY", _))
361 EXPECT_CALL(mockServer, AdminDaemonMap(OP_QUERY, "COMZ", _))
383 AdminDaemonMap(OP_REMOVE, testSerialPortName,
392 EXPECT_CALL(mockServer, AdminDaemonMap(OP_QUERY, testSerialPortName, _))
[all …]