Lines Matching refs:B_GENERAL_ERROR_BASE

13 #define B_GENERAL_ERROR_BASE		INT_MIN
14 #define B_OS_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x1000)
15 #define B_APP_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x2000)
16 #define B_INTERFACE_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x3000)
17 #define B_MEDIA_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x4000)
19 #define B_TRANSLATION_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x4800)
21 #define B_MIDI_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x5000)
22 #define B_STORAGE_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x6000)
23 #define B_POSIX_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x7000)
24 #define B_MAIL_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x8000)
25 #define B_PRINT_ERROR_BASE (B_GENERAL_ERROR_BASE + 0x9000)
26 #define B_DEVICE_ERROR_BASE (B_GENERAL_ERROR_BASE + 0xa000)
29 #define B_ERRORS_END (B_GENERAL_ERROR_BASE + 0xffff)
32 #define B_NO_MEMORY (B_GENERAL_ERROR_BASE + 0)
33 #define B_IO_ERROR (B_GENERAL_ERROR_BASE + 1)
34 #define B_PERMISSION_DENIED (B_GENERAL_ERROR_BASE + 2)
35 #define B_BAD_INDEX (B_GENERAL_ERROR_BASE + 3)
36 #define B_BAD_TYPE (B_GENERAL_ERROR_BASE + 4)
37 #define B_BAD_VALUE (B_GENERAL_ERROR_BASE + 5)
38 #define B_MISMATCHED_VALUES (B_GENERAL_ERROR_BASE + 6)
39 #define B_NAME_NOT_FOUND (B_GENERAL_ERROR_BASE + 7)
40 #define B_NAME_IN_USE (B_GENERAL_ERROR_BASE + 8)
41 #define B_TIMED_OUT (B_GENERAL_ERROR_BASE + 9)
42 #define B_INTERRUPTED (B_GENERAL_ERROR_BASE + 10)
43 #define B_WOULD_BLOCK (B_GENERAL_ERROR_BASE + 11)
44 #define B_CANCELED (B_GENERAL_ERROR_BASE + 12)
45 #define B_NO_INIT (B_GENERAL_ERROR_BASE + 13)
46 #define B_NOT_INITIALIZED (B_GENERAL_ERROR_BASE + 13)
47 #define B_BUSY (B_GENERAL_ERROR_BASE + 14)
48 #define B_NOT_ALLOWED (B_GENERAL_ERROR_BASE + 15)
49 #define B_BAD_DATA (B_GENERAL_ERROR_BASE + 16)
50 #define B_DONT_DO_THAT (B_GENERAL_ERROR_BASE + 17)