Searched refs:ep (Results 1 - 3 of 3) sorted by relevance

/device/google/accessory/arduino/USB_Host_Shield/
H A DUsb.h131 EP_RECORD* getDevTableEntry( byte addr, byte ep );
133 byte ctrlReq( byte addr, byte ep, byte bmReqType, byte bRequest, byte wValLo, byte wValHi, unsigned int wInd, unsigned int nbytes, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
135 byte getDevDescr( byte addr, byte ep, unsigned int nbytes, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
136 byte getConfDescr( byte addr, byte ep, unsigned int nbytes, byte conf, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
137 byte getStrDescr( byte addr, byte ep, unsigned int nbytes, byte index, unsigned int langid, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
138 byte setAddr( byte oldaddr, byte ep, byte newaddr, unsigned int nak_limit = USB_NAK_LIMIT );
139 byte setConf( byte addr, byte ep, byte conf_value, unsigned int nak_limit = USB_NAK_LIMIT );
141 byte setProto( byte addr, byte ep, byte interface, byte protocol, unsigned int nak_limit = USB_NAK_LIMIT );
142 byte getProto( byte addr, byte ep, byte interface, char* dataptr, unsigned int nak_limit = USB_NAK_LIMIT );
143 byte getReportDescr( byte addr, byte ep, unsigne
161 getDevDescr( byte addr, byte ep, unsigned int nbytes, char* dataptr, unsigned int nak_limit ) argument
165 getConfDescr( byte addr, byte ep, unsigned int nbytes, byte conf, char* dataptr, unsigned int nak_limit ) argument
169 getStrDescr( byte addr, byte ep, unsigned int nbytes, byte index, unsigned int langid, char* dataptr, unsigned int nak_limit ) argument
173 setAddr( byte oldaddr, byte ep, byte newaddr, unsigned int nak_limit ) argument
177 setConf( byte addr, byte ep, byte conf_value, unsigned int nak_limit ) argument
181 setProto( byte addr, byte ep, byte interface, byte protocol, unsigned int nak_limit ) argument
184 getProto( byte addr, byte ep, byte interface, char* dataptr, unsigned int nak_limit ) argument
188 getReportDescr( byte addr, byte ep, unsigned int nbytes, char* dataptr, unsigned int nak_limit ) argument
191 setReport( byte addr, byte ep, unsigned int nbytes, byte interface, byte report_type, byte report_id, char* dataptr, unsigned int nak_limit ) argument
194 getReport( byte addr, byte ep, unsigned int nbytes, byte interface, byte report_type, byte report_id, char* dataptr, unsigned int nak_limit ) argument
198 getIdle( byte addr, byte ep, byte interface, byte reportID, char* dataptr, unsigned int nak_limit ) argument
201 setIdle( byte addr, byte ep, byte interface, byte reportID, byte duration, unsigned int nak_limit ) argument
[all...]
H A DUsb.cpp54 devtable[ 0 ].epinfo = &dev0ep; //set single ep for uninitialized device
67 EP_RECORD* USB::getDevTableEntry( byte addr, byte ep )
71 ptr += ep;
86 byte USB::ctrlReq( byte addr, byte ep, byte bmReqType, byte bRequest, byte wValLo, byte wValHi, unsigned int wInd, unsigned int nbytes, char* dataptr, unsigned int nak_limit ) argument
104 rcode = dispatchPkt( tokSETUP, ep, nak_limit ); //dispatch packet
113 rcode = ctrlData( addr, ep, nbytes, dataptr, direction );
120 rcode = ctrlStatus( ep, direction ); //status stage
125 byte USB::ctrlStatus( byte ep, boolean direction, unsigned int nak_limit ) argument
129 rcode = dispatchPkt( tokOUTHS, ep, nak_limit );
132 rcode = dispatchPkt( tokINHS, ep, nak_limi
137 ctrlData( byte addr, byte ep, unsigned int nbytes, char* dataptr, boolean direction, unsigned int nak_limit ) argument
155 inTransfer( byte addr, byte ep, unsigned int nbytes, char* data, unsigned int nak_limit ) argument
191 newInTransfer( byte addr, byte ep, unsigned int nbytes, char* data, unsigned int nak_limit ) argument
231 outTransfer( byte addr, byte ep, unsigned int nbytes, char* data, unsigned int nak_limit ) argument
292 dispatchPkt( byte token, byte ep, unsigned int nak_limit ) argument
[all...]
/device/google/accessory/arduino/AndroidAccessory/
H A DAndroidAccessory.cpp148 EP_RECORD *ep; local
162 ep = inEp;
164 ep = outEp;
166 ep = NULL;
168 if (ep) {
169 ep->epAddr = epDesc->bEndpointAddress & 0x7f;
170 ep->Attr = epDesc->bmAttributes;
171 ep->MaxPktSize = epDesc->wMaxPacketSize;
172 ep->sndToggle = bmSNDTOG0;
173 ep
[all...]

Completed in 6 milliseconds