Lines Matching refs:notifyEp
212 acm->notifyEp = OsalMemAlloc(sizeof(struct UsbEndpoint));
213 if (acm->notifyEp == NULL) {
218 acm->notifyEp->addr = interface->altsetting->endPoint[0].endpointDescriptor.bEndpointAddress;
219 acm->notifyEp->interval = interface->altsetting->endPoint[0].endpointDescriptor.bInterval;
220 acm->notifyEp->maxPacketSize = interface->altsetting->endPoint[0].endpointDescriptor.wMaxPacketSize;
270 if (acm->notifyEp) {
271 OsalMemFree(acm->notifyEp);
272 acm->notifyEp = NULL;
1202 if ((acm == NULL) || (acm->notifyEp == NULL)) {
1203 HDF_LOGE("%{public}s: acm or notifyEp is NULL", __func__);
1206 uint32_t size = acm->notifyEp->maxPacketSize;
1215 fillRequestData.endPoint = acm->notifyEp->addr;