Lines Matching refs:data
66 * Used to signify direction of data for USBEndpoint is OUT, host to device
71 * Used to signify direction of data for USBEndpoint is IN, device to host
110 #define WRITE_PARCEL_NO_RET(parcel, type, data) \
112 if (!(parcel).Write##type(data)) { \
113 USB_HILOGE(MODULE_COMMON, "%{public}s write " #data " failed", __func__); \
118 #define WRITE_PARCEL_AND_RETURN_FALSE_WHEN_FAIL(type, parcel, data) \
120 if (!(parcel).Write##type(data)) { \
121 USB_HILOGE(MODULE_COMMON, "%{public}s write " #data " failed", __func__); \
134 #define WRITE_PARCEL_WITH_RET(parcel, type, data, retval) \
136 if (!(parcel).Write##type(data)) { \
137 USB_HILOGE(MODULE_COMMON, "%{public}s write " #data " failed", __func__); \