OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:USBD_STATUS
(Results
1 - 3
of
3
) sorted by null
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usbdi.h
26
#define USBD_STATUS_CANCELLING ((
USBD_STATUS
) 0x00020000)
27
#define USBD_STATUS_CANCELING ((
USBD_STATUS
) 0x00020000)
28
#define USBD_STATUS_NO_MEMORY ((
USBD_STATUS
) 0x80000100)
29
#define USBD_STATUS_ERROR ((
USBD_STATUS
) 0x80000000)
30
#define USBD_STATUS_REQUEST_FAILED ((
USBD_STATUS
) 0x80000500)
31
#define USBD_STATUS_HALTED ((
USBD_STATUS
) 0xc0000000)
34
#define
USBD_STATUS
(Status) ((ULONG) (Status) & __MSABI_LONG (0x0fffffff))
usb.h
156
typedef LONG
USBD_STATUS
;
158
#define USBD_SUCCESS(Status) ((
USBD_STATUS
) (Status) >= 0)
160
#define USBD_ERROR(Status) ((
USBD_STATUS
) (Status) < 0)
161
#define USBD_STATUS_SUCCESS ((
USBD_STATUS
) 0x00000000)
162
#define USBD_STATUS_PENDING ((
USBD_STATUS
) 0x40000000)
163
#define USBD_STATUS_CRC ((
USBD_STATUS
) 0xc0000001)
164
#define USBD_STATUS_BTSTUFF ((
USBD_STATUS
) 0xc0000002)
165
#define USBD_STATUS_DATA_TOGGLE_MISMATCH ((
USBD_STATUS
) 0xc0000003)
166
#define USBD_STATUS_STALL_PID ((
USBD_STATUS
) 0xc0000004)
167
#define USBD_STATUS_DEV_NOT_RESPONDING ((
USBD_STATUS
) 0xc0000005
[
all
...]
/external/libusb/libusb/os/
windows_usbdk.c
58
typedef int32_t
USBD_STATUS
;
59
#define USBD_SUCCESS(Status) ((
USBD_STATUS
) (Status) >= 0)
61
#define USBD_ERROR(Status) ((
USBD_STATUS
) (Status) < 0)
62
#define USBD_STATUS_STALL_PID ((
USBD_STATUS
) 0xc0000004)
63
#define USBD_STATUS_ENDPOINT_HALTED ((
USBD_STATUS
) 0xc0000030)
64
#define USBD_STATUS_BAD_START_FRAME ((
USBD_STATUS
) 0xc0000a00)
65
#define USBD_STATUS_TIMEOUT ((
USBD_STATUS
) 0xc0006000)
66
#define USBD_STATUS_CANCELED ((
USBD_STATUS
) 0xc0010000)
793
static DWORD usbdk_translate_usbd_status(
USBD_STATUS
UsbdStatus)
840
*io_result = usbdk_translate_usbd_status((
USBD_STATUS
) transfer_priv->request.Result.GenResult.UsbdStatus)
[
all
...]
Completed in 161 milliseconds