Home
last modified time | relevance | path

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

/developtools/hdc/src/host/
Dserver.cpp763 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in CreatConnectUart() local
764 if (waitTimeDoCmd == nullptr) { in CreatConnectUart()
768 uv_timer_init(&loopMain, waitTimeDoCmd); in CreatConnectUart()
769 waitTimeDoCmd->data = hSession; in CreatConnectUart()
770 uv_timer_start(waitTimeDoCmd, UartPreConnect, UV_TIMEOUT, UV_REPEAT); in CreatConnectUart()
823 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in CreateConnect() local
824 if (waitTimeDoCmd == nullptr) { in CreateConnect()
829 uv_timer_init(&loopMain, waitTimeDoCmd); in CreateConnect()
830 waitTimeDoCmd->data = hSession; in CreateConnect()
831 uv_timer_start(waitTimeDoCmd, UsbPreConnect, 10, 100); in CreateConnect()
Dclient.h72 uv_timer_t waitTimeDoCmd; variable
Dhost_usb.cpp167 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in DetectMyNeed() local
168 if (waitTimeDoCmd == nullptr) { in DetectMyNeed()
174 uv_timer_init(&hdcServer->loopMain, waitTimeDoCmd); in DetectMyNeed()
175 waitTimeDoCmd->data = hSession; in DetectMyNeed()
176 uv_timer_start(waitTimeDoCmd, hdcServer->UsbPreConnect, 0, DEVICE_CHECK_INTERVAL); in DetectMyNeed()
Dhost_uart.cpp590 uv_timer_t *waitTimeDoCmd = new(std::nothrow) uv_timer_t; in EnumSerialPort() local
591 if (waitTimeDoCmd == nullptr) { in EnumSerialPort()
596 uv_timer_init(&server.loopMain, waitTimeDoCmd); in EnumSerialPort()
597 waitTimeDoCmd->data = hSession; in EnumSerialPort()
598 if (externInterface.UvTimerStart(waitTimeDoCmd, server.UartPreConnect, UV_TIMEOUT, UV_REPEAT) != in EnumSerialPort()
Dclient.cpp334 uv_timer_init(loopMain, &waitTimeDoCmd); in ExecuteCommand()
335 waitTimeDoCmd.data = this; in ExecuteCommand()
336 uv_timer_start(&waitTimeDoCmd, CommandWorker, 10, 10); in ExecuteCommand()