Searched refs:notificationBuffer (Results 1 – 17 of 17) sorted by relevance
/drivers/peripheral/usb/sample/host/liteos_test/include/ |
D | usbhost_sdkraw_speed.h | 120 uint8_t *notificationBuffer; member
|
D | usbhost_sdkapi_speed.h | 122 uint8_t *notificationBuffer; member
|
D | usbhost_nosdk_speed.h | 119 uint8_t *notificationBuffer; member
|
/drivers/peripheral/usb/sample/host/include/ |
D | usbhost_sdkraw_speed.h | 125 uint8_t *notificationBuffer; member
|
D | usbhost_sdkapi_speed.h | 125 uint8_t *notificationBuffer; member
|
/drivers/peripheral/usb/test/unittest/host_sdk/ |
D | usb_host_sdk_if_test.h | 92 uint8_t *notificationBuffer; member
|
D | usb_raw_sdk_if_test.h | 110 uint8_t *notificationBuffer; member
|
D | usb_host_sdk_if_test.cpp | 146 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()
|
D | usb_raw_sdk_if_test.cpp | 247 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/ |
D | cdc_ether.h | 113 uint8_t *notificationBuffer; member
|
/drivers/peripheral/usb/serial/include/ |
D | usb_serial_rawapi.h | 134 uint8_t *notificationBuffer; member
|
D | usb_serial.h | 129 uint8_t *notificationBuffer; member
|
/drivers/hdf_core/framework/test/unittest/model/usb/host/include/ |
D | usb_test.h | 175 uint8_t *notificationBuffer; member
|
D | usb_raw_test.h | 245 uint8_t *notificationBuffer; member
|
/drivers/peripheral/usb/net/src/ |
D | cdc_ether.c | 754 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/ |
D | usb_serial_rawapi.c | 1037 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()
|
D | usb_serial.c | 1267 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()
|