Lines Matching refs:B_GENERAL_ERROR_BASE

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