Home
last modified time | relevance | path

Searched refs:USB_FUNCTION_ACM (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/drivers/peripheral/usb/hdi_service/include/
H A Dusbd_function.h23 #define USB_FUNCTION_ACM (1 << 0) macro
33 … (USB_FUNCTION_ACM | USB_FUNCTION_ECM | USB_FUNCTION_HDC | USB_FUNCTION_MTP | USB_FUNCTION_PTP | \
66 #define USB_DDK_FUNCTION_SUPPORT (USB_FUNCTION_ACM | USB_FUNCTION_ECM | USB_FUNCTION_MTP | USB_FUNC…
/ohos5.0/drivers/peripheral/usb/hdi_service/src/
H A Dusbd_function.cpp278 if ((ddkFuns & USB_FUNCTION_ACM) != 0) { in SetFunctionToNone()
279 UsbdFunction::SendCmdToService(ACM_SERVICE_NAME, ACM_RELEASE, USB_FUNCTION_ACM); in SetFunctionToNone()
493 if ((funcs & USB_FUNCTION_ACM) != 0) { in UsbdInitDDKFunction()
499 if (SendCmdToService(ACM_SERVICE_NAME, ACM_INIT, USB_FUNCTION_ACM) != 0) { in UsbdInitDDKFunction()
504 currentFuncs_ |= USB_FUNCTION_ACM; in UsbdInitDDKFunction()
517 currentFuncs_ |= USB_FUNCTION_ACM; in UsbdInitDDKFunction()
/ohos5.0/drivers/peripheral/usb/test/unittest/hal/src/
H A Dusbd_function_test.cpp95 auto ret = g_usbInterface->SetCurrentFunctions(USB_FUNCTION_ACM);
115 auto ret = g_usbInterface->SetCurrentFunctions(USB_FUNCTION_ACM);
156 int32_t funcs = USB_FUNCTION_ACM | USB_FUNCTION_ECM;
185 int32_t funcs = USB_FUNCTION_ACM | USB_FUNCTION_HDC;
/ohos5.0/drivers/peripheral/usb/test/benchmarktest/
H A Dusb_benchmark_function_test.cpp90 ret = g_usbInterface->SetCurrentFunctions(USB_FUNCTION_ACM); in BENCHMARK_F()