Home
last modified time | relevance | path

Searched refs:notificationBuffer (Results 1 – 17 of 17) sorted by relevance

/drivers/peripheral/usb/sample/host/liteos_test/include/
Dusbhost_sdkraw_speed.h120 uint8_t *notificationBuffer; member
Dusbhost_sdkapi_speed.h122 uint8_t *notificationBuffer; member
Dusbhost_nosdk_speed.h119 uint8_t *notificationBuffer; member
/drivers/peripheral/usb/sample/host/include/
Dusbhost_sdkraw_speed.h125 uint8_t *notificationBuffer; member
Dusbhost_sdkapi_speed.h125 uint8_t *notificationBuffer; member
/drivers/peripheral/usb/test/unittest/host_sdk/
Dusb_host_sdk_if_test.h92 uint8_t *notificationBuffer; member
Dusb_raw_sdk_if_test.h110 uint8_t *notificationBuffer; member
Dusb_host_sdk_if_test.cpp146 dr = reinterpret_cast<struct UsbCdcNotification *>(acm->notificationBuffer); in AcmCtrlIrq()
156 OsalMemFree(acm->notificationBuffer); in AcmCtrlIrq()
160 acm->notificationBuffer = (uint8_t *)OsalMemCalloc(allocSize); in AcmCtrlIrq()
161 if (!acm->notificationBuffer) { in AcmCtrlIrq()
167 …if (memcpy_s(&acm->notificationBuffer[acm->nbIndex], acm->nbSize - acm->nbIndex, req->compInfo.buf… in AcmCtrlIrq()
Dusb_raw_sdk_if_test.cpp247 dr = reinterpret_cast<struct UsbCdcNotification *>(acm->notificationBuffer); in AcmNotifyReqCallback()
253 OsalMemFree(acm->notificationBuffer); in AcmNotifyReqCallback()
257 acm->notificationBuffer = (uint8_t *)OsalMemCalloc(allocSize); in AcmNotifyReqCallback()
258 if (!acm->notificationBuffer) { in AcmNotifyReqCallback()
264 …if (memcpy_s(&acm->notificationBuffer[acm->nbIndex], acm->nbSize - acm->nbIndex, req->buffer, copy… in AcmNotifyReqCallback()
/drivers/peripheral/usb/net/include/
Dcdc_ether.h113 uint8_t *notificationBuffer; member
/drivers/peripheral/usb/serial/include/
Dusb_serial_rawapi.h134 uint8_t *notificationBuffer; member
Dusb_serial.h129 uint8_t *notificationBuffer; member
/drivers/hdf_core/framework/test/unittest/model/usb/host/include/
Dusb_test.h175 uint8_t *notificationBuffer; member
Dusb_raw_test.h245 uint8_t *notificationBuffer; member
/drivers/peripheral/usb/net/src/
Dcdc_ether.c754 dr = (struct UsbCdcNotification *)ecm->notificationBuffer; in EcmCtrlIrq()
760 OsalMemFree(ecm->notificationBuffer); in EcmCtrlIrq()
764 ecm->notificationBuffer = OsalMemCalloc(allocSize); in EcmCtrlIrq()
765 if (!ecm->notificationBuffer) { in EcmCtrlIrq()
772 …&ecm->notificationBuffer[ecm->nbIndex], ecm->nbSize - ecm->nbIndex, req->compInfo.buffer, copySize… in EcmCtrlIrq()
/drivers/peripheral/usb/serial/src/
Dusb_serial_rawapi.c1037 OsalMemFree(acm->notificationBuffer); in AcmNotificationBufferProcess()
1041 acm->notificationBuffer = (uint8_t *)OsalMemCalloc(allocSize); in AcmNotificationBufferProcess()
1042 if (!acm->notificationBuffer) { in AcmNotificationBufferProcess()
1048 …int32_t ret = memcpy_s(&acm->notificationBuffer[acm->nbIndex], acm->nbSize - acm->nbIndex, req->bu… in AcmNotificationBufferProcess()
1084 dr = (struct UsbCdcNotification *)acm->notificationBuffer; in AcmNotifyReqCallback()
Dusb_serial.c1267 OsalMemFree(acm->notificationBuffer); in AcmCtrlIrqCheckSize()
1271 acm->notificationBuffer = OsalMemCalloc(allocSize); in AcmCtrlIrqCheckSize()
1272 if (!acm->notificationBuffer) { in AcmCtrlIrqCheckSize()
1278 …if (memcpy_s(&acm->notificationBuffer[acm->nbIndex], acm->nbSize - acm->nbIndex, req->compInfo.buf… in AcmCtrlIrqCheckSize()
1310 dr = (struct UsbCdcNotification *)acm->notificationBuffer; in AcmCtrlIrq()