Home
last modified time | relevance | path

Searched refs:waitTimeDoCmd (Results 1 – 5 of 5) sorted by relevance

/developtools/hdc/src/host/
Dserver.cpp783 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in CreatConnectUart() local
784 if (waitTimeDoCmd == nullptr) { in CreatConnectUart()
788 uv_timer_init(&loopMain, waitTimeDoCmd); in CreatConnectUart()
789 waitTimeDoCmd->data = hSession; in CreatConnectUart()
790 uv_timer_start(waitTimeDoCmd, UartPreConnect, UV_TIMEOUT, UV_REPEAT); in CreatConnectUart()
839 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in CreateConnect() local
840 if (waitTimeDoCmd == nullptr) { in CreateConnect()
844 uv_timer_init(&loopMain, waitTimeDoCmd); in CreateConnect()
845 waitTimeDoCmd->data = hSession; in CreateConnect()
846 uv_timer_start(waitTimeDoCmd, UsbPreConnect, 10, 100); in CreateConnect()
Dclient.h72 uv_timer_t waitTimeDoCmd; variable
Dhost_usb.cpp162 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in DetectMyNeed() local
163 if (waitTimeDoCmd == nullptr) { in DetectMyNeed()
168 uv_timer_init(&hdcServer->loopMain, waitTimeDoCmd); in DetectMyNeed()
169 waitTimeDoCmd->data = hSession; in DetectMyNeed()
170 uv_timer_start(waitTimeDoCmd, hdcServer->UsbPreConnect, 0, DEVICE_CHECK_INTERVAL); in DetectMyNeed()
Dhost_uart.cpp585 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in EnumSerialPort() local
586 if (waitTimeDoCmd == nullptr) { in EnumSerialPort()
590 uv_timer_init(&server.loopMain, waitTimeDoCmd); in EnumSerialPort()
591 waitTimeDoCmd->data = hSession; in EnumSerialPort()
592 if (externInterface.UvTimerStart(waitTimeDoCmd, server.UartPreConnect, UV_TIMEOUT, UV_REPEAT) != in EnumSerialPort()
Dclient.cpp332 uv_timer_init(loopMain, &waitTimeDoCmd); in ExecuteCommand()
333 waitTimeDoCmd.data = this; in ExecuteCommand()
334 uv_timer_start(&waitTimeDoCmd, CommandWorker, 10, 10); in ExecuteCommand()