summaryrefslogtreecommitdiff
path: root/include/iprt/err.mac
blob: 39ac4e91e5173100f5acfb3c743d321873ee528d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
%define VINF_SUCCESS    0
%define VERR_GENERAL_FAILURE    (-1)
%define VERR_INVALID_PARAMETER    (-2)
%define VWRN_INVALID_PARAMETER    2
%define VERR_INVALID_MAGIC    (-3)
%define VWRN_INVALID_MAGIC    3
%define VERR_INVALID_HANDLE    (-4)
%define VWRN_INVALID_HANDLE    4
%define VERR_LOCK_FAILED    (-5)
%define VERR_INVALID_POINTER    (-6)
%define VERR_IDT_FAILED    (-7)
%define VERR_NO_MEMORY    (-8)
%define VERR_ALREADY_LOADED    (-9)
%define VERR_PERMISSION_DENIED    (-10)
%define VINF_PERMISSION_DENIED    10
%define VERR_VERSION_MISMATCH    (-11)
%define VERR_NOT_IMPLEMENTED    (-12)
%define VERR_INVALID_FLAGS    (-13)
%define VERR_NOT_EQUAL    (-18)
%define VERR_NOT_SYMLINK    (-19)
%define VERR_NO_TMP_MEMORY    (-20)
%define VERR_INVALID_FMODE    (-21)
%define VERR_WRONG_ORDER    (-22)
%define VERR_NO_TLS_FOR_SELF    (-23)
%define VERR_FAILED_TO_SET_SELF_TLS    (-24)
%define VERR_NO_CONT_MEMORY    (-26)
%define VERR_NO_PAGE_MEMORY    (-27)
%define VINF_ALREADY_INITIALIZED    28
%define VERR_THREAD_IS_DEAD    (-29)
%define VERR_THREAD_NOT_WAITABLE    (-30)
%define VERR_PAGE_TABLE_NOT_PRESENT    (-31)
%define VERR_INVALID_CONTEXT    (-32)
%define VERR_TIMER_BUSY    (-33)
%define VERR_ADDRESS_CONFLICT    (-34)
%define VERR_UNRESOLVED_ERROR    (-35)
%define VERR_INVALID_FUNCTION    (-36)
%define VERR_NOT_SUPPORTED    (-37)
%define VINF_NOT_SUPPORTED    37
%define VERR_ACCESS_DENIED    (-38)
%define VERR_INTERRUPTED    (-39)
%define VINF_INTERRUPTED    39
%define VERR_TIMEOUT    (-40)
%define VINF_TIMEOUT    40
%define VERR_BUFFER_OVERFLOW    (-41)
%define VINF_BUFFER_OVERFLOW    41
%define VERR_TOO_MUCH_DATA    (-42)
%define VERR_MAX_THRDS_REACHED    (-43)
%define VERR_MAX_PROCS_REACHED    (-44)
%define VERR_SIGNAL_REFUSED    (-45)
%define VERR_SIGNAL_PENDING    (-46)
%define VERR_SIGNAL_INVALID    (-47)
%define VERR_STATE_CHANGED    (-48)
%define VWRN_STATE_CHANGED    48
%define VERR_INVALID_UUID_FORMAT    (-49)
%define VERR_PROCESS_NOT_FOUND    (-50)
%define VERR_PROCESS_RUNNING    (-51)
%define VERR_TRY_AGAIN    (-52)
%define VINF_TRY_AGAIN    52
%define VERR_PARSE_ERROR    (-53)
%define VERR_OUT_OF_RANGE    (-54)
%define VERR_NUMBER_TOO_BIG    (-55)
%define VWRN_NUMBER_TOO_BIG    55
%define VERR_NO_DIGITS    (-56)
%define VWRN_NO_DIGITS    56
%define VERR_NEGATIVE_UNSIGNED    (-57)
%define VWRN_NEGATIVE_UNSIGNED    57
%define VERR_NO_TRANSLATION    (-58)
%define VWRN_NO_TRANSLATION    58
%define VERR_CODE_POINT_ENDIAN_INDICATOR    (-59)
%define VERR_CODE_POINT_SURROGATE    (-60)
%define VERR_INVALID_UTF8_ENCODING    (-61)
%define VERR_INVALID_UTF16_ENCODING    (-62)
%define VERR_CANT_RECODE_AS_UTF16    (-63)
%define VERR_NO_STR_MEMORY    (-64)
%define VERR_NO_UTF16_MEMORY    (-65)
%define VERR_NO_CODE_POINT_MEMORY    (-66)
%define VERR_MEMORY_BUSY    (-67)
%define VERR_TIMER_ACTIVE    (-68)
%define VERR_TIMER_SUSPENDED    (-69)
%define VERR_CANCELLED    (-70)
%define VERR_MEMOBJ_INIT_FAILED    (-71)
%define VERR_NO_LOW_MEMORY    (-72)
%define VERR_NO_PHYS_MEMORY    (-73)
%define VERR_ADDRESS_TOO_BIG    (-74)
%define VERR_MAP_FAILED    (-75)
%define VERR_TRAILING_CHARS    (-76)
%define VWRN_TRAILING_CHARS    76
%define VERR_TRAILING_SPACES    (-77)
%define VWRN_TRAILING_SPACES    77
%define VERR_NOT_FOUND    (-78)
%define VWRN_NOT_FOUND    78
%define VERR_INVALID_STATE    (-79)
%define VWRN_INVALID_STATE    79
%define VERR_OUT_OF_RESOURCES    (-80)
%define VWRN_OUT_OF_RESOURCES    80
%define VERR_NO_MORE_HANDLES    (-81)
%define VERR_PREEMPT_DISABLED    (-82)
%define VERR_END_OF_STRING    (-83)
%define VINF_END_OF_STRING    83
%define VERR_PAGE_COUNT_OUT_OF_RANGE    (-84)
%define VERR_OBJECT_DESTROYED    (-85)
%define VINF_OBJECT_DESTROYED    85
%define VERR_DANGLING_OBJECTS    (-86)
%define VWRN_DANGLING_OBJECTS    86
%define VERR_INVALID_BASE64_ENCODING    (-87)
%define VERR_CALLBACK_RETURN    (-88)
%define VINF_CALLBACK_RETURN    88
%define VERR_AUTHENTICATION_FAILURE    (-89)
%define VERR_NOT_POWER_OF_TWO    (-90)
%define VERR_IGNORED    (-91)
%define VERR_CONCURRENT_ACCESS    (-92)
%define VERR_CALLER_NO_REFERENCE    (-93)
%define VERR_NO_CHANGE    (-95)
%define VINF_NO_CHANGE    95
%define VERR_NO_EXEC_MEMORY    (-96)
%define VERR_UNSUPPORTED_ALIGNMENT    (-97)
%define VINF_UNSUPPORTED_ALIGNMENT    97
%define VERR_DUPLICATE    (-98)
%define VERR_MISSING    (-99)
%define VERR_UNEXPECTED_EXCEPTION    (-22400)
%define VERR_BUFFER_UNDERFLOW    (-22401)
%define VINF_BUFFER_UNDERFLOW    22401
%define VERR_UNEVEN_INPUT    (-22402)
%define VERR_NOT_AVAILABLE    (-22403)
%define VERR_PROC_DETACH_NOT_SUPPORTED    (-22404)
%define VERR_ACCOUNT_RESTRICTED    (-22405)
%define VINF_ACCOUNT_RESTRICTED    22405
%define VERR_FILE_IO_ERROR    (-100)
%define VERR_OPEN_FAILED    (-101)
%define VERR_FILE_NOT_FOUND    (-102)
%define VERR_PATH_NOT_FOUND    (-103)
%define VERR_INVALID_NAME    (-104)
%define VERR_ALREADY_EXISTS    (-105)
%define VWRN_ALREADY_EXISTS    105
%define VERR_TOO_MANY_OPEN_FILES    (-106)
%define VERR_SEEK    (-107)
%define VERR_NEGATIVE_SEEK    (-108)
%define VERR_SEEK_ON_DEVICE    (-109)
%define VERR_EOF    (-110)
%define VINF_EOF    110
%define VERR_READ_ERROR    (-111)
%define VERR_WRITE_ERROR    (-112)
%define VERR_WRITE_PROTECT    (-113)
%define VERR_SHARING_VIOLATION    (-114)
%define VERR_FILE_LOCK_FAILED    (-115)
%define VERR_FILE_LOCK_VIOLATION    (-116)
%define VERR_CANT_CREATE    (-117)
%define VERR_CANT_DELETE_DIRECTORY    (-118)
%define VERR_NOT_SAME_DEVICE    (-119)
%define VERR_FILENAME_TOO_LONG    (-120)
%define VERR_MEDIA_NOT_PRESENT    (-121)
%define VERR_MEDIA_NOT_RECOGNIZED    (-122)
%define VERR_FILE_NOT_LOCKED    (-123)
%define VERR_FILE_LOCK_LOST    (-124)
%define VERR_DIR_NOT_EMPTY    (-125)
%define VERR_NOT_A_DIRECTORY    (-126)
%define VERR_IS_A_DIRECTORY    (-127)
%define VERR_FILE_TOO_BIG    (-128)
%define VERR_FILE_AIO_NO_REQUEST    (-129)
%define VERR_FILE_AIO_IN_PROGRESS    (-130)
%define VERR_FILE_AIO_COMPLETED    (-131)
%define VERR_FILE_AIO_BUSY    (-132)
%define VERR_FILE_AIO_LIMIT_EXCEEDED    (-133)
%define VERR_FILE_AIO_CANCELED    (-134)
%define VERR_FILE_AIO_NOT_SUBMITTED    (-135)
%define VERR_FILE_AIO_NOT_PREPARED    (-136)
%define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES    (-137)
%define VERR_RESOURCE_BUSY    (-138)
%define VERR_NOT_A_FILE    (-139)
%define VERR_IS_A_FILE    (-140)
%define VERR_UNEXPECTED_FS_OBJ_TYPE    (-141)
%define VERR_PATH_DOES_NOT_START_WITH_ROOT    (-142)
%define VERR_PATH_IS_RELATIVE    (-143)
%define VERR_PATH_IS_NOT_RELATIVE    (-144)
%define VERR_PATH_ZERO_LENGTH    (-145)
%define VERR_DISK_IO_ERROR    (-150)
%define VERR_INVALID_DRIVE    (-151)
%define VERR_DISK_FULL    (-152)
%define VERR_DISK_CHANGE    (-153)
%define VERR_DRIVE_LOCKED    (-154)
%define VERR_DISK_INVALID_FORMAT    (-155)
%define VERR_TOO_MANY_SYMLINKS    (-156)
%define VERR_NS_SYMLINK_SET_TIME    (-157)
%define VERR_NS_SYMLINK_CHANGE_OWNER    (-158)
%define VERR_SEARCH_ERROR    (-200)
%define VERR_NO_MORE_FILES    (-201)
%define VERR_NO_MORE_SEARCH_HANDLES    (-202)
%define VWRN_NO_DIRENT_INFO    203
%define VERR_INTERNAL_ERROR    (-225)
%define VERR_INTERNAL_ERROR_2    (-226)
%define VERR_INTERNAL_ERROR_3    (-227)
%define VERR_INTERNAL_ERROR_4    (-228)
%define VERR_INTERNAL_ERROR_5    (-229)
%define VERR_IPE_UNEXPECTED_STATUS    (-230)
%define VERR_IPE_UNEXPECTED_INFO_STATUS    (-231)
%define VERR_IPE_UNEXPECTED_ERROR_STATUS    (-232)
%define VERR_IPE_UNINITIALIZED_STATUS    (-233)
%define VERR_IPE_NOT_REACHED_DEFAULT_CASE    (-234)
%define VERR_DEV_IO_ERROR    (-250)
%define VERR_IO_BAD_UNIT    (-251)
%define VERR_IO_NOT_READY    (-252)
%define VERR_IO_BAD_COMMAND    (-253)
%define VERR_IO_CRC    (-254)
%define VERR_IO_BAD_LENGTH    (-255)
%define VERR_IO_SECTOR_NOT_FOUND    (-256)
%define VERR_IO_GEN_FAILURE    (-257)
%define VERR_PIPE_IO_ERROR    (-300)
%define VERR_BROKEN_PIPE    (-301)
%define VERR_BAD_PIPE    (-302)
%define VERR_PIPE_BUSY    (-303)
%define VERR_NO_DATA    (-304)
%define VERR_PIPE_NOT_CONNECTED    (-305)
%define VERR_MORE_DATA    (-306)
%define VERR_PIPE_NOT_READ    (-307)
%define VERR_PIPE_NOT_WRITE    (-308)
%define VERR_SEM_ERROR    (-350)
%define VERR_TOO_MANY_SEMAPHORES    (-351)
%define VERR_EXCL_SEM_ALREADY_OWNED    (-352)
%define VERR_SEM_IS_SET    (-353)
%define VERR_TOO_MANY_SEM_REQUESTS    (-354)
%define VERR_NOT_OWNER    (-355)
%define VERR_TOO_MANY_OPENS    (-356)
%define VERR_TOO_MANY_POSTS    (-357)
%define VERR_ALREADY_POSTED    (-358)
%define VERR_ALREADY_RESET    (-359)
%define VERR_SEM_BUSY    (-360)
%define VERR_SEM_OWNER_DIED    (-361)
%define VERR_SEM_NOT_FOUND    (-362)
%define VERR_SEM_DESTROYED    (-363)
%define VERR_SEM_NESTED    (-364)
%define VINF_SEM_NESTED    (364)
%define VERR_DEADLOCK    (-365)
%define VERR_SEM_OUT_OF_TURN    (-366)
%define VERR_SEM_BAD_CONTEXT    (-367)
%define VINF_SEM_BAD_CONTEXT    (367)
%define VERR_SEM_LV_WRONG_ORDER    (-368)
%define VERR_SEM_LV_WRONG_RELEASE_ORDER    (-369)
%define VERR_SEM_LV_NESTED    (-370)
%define VERR_SEM_LV_INVALID_PARAMETER    (-371)
%define VERR_SEM_LV_DEADLOCK    (-372)
%define VERR_SEM_LV_EXISTING_DEADLOCK    (-373)
%define VERR_SEM_LV_NOT_OWNER    (-374)
%define VERR_SEM_LV_ILLEGAL_UPGRADE    (-375)
%define VERR_SEM_LV_NOT_SIGNALLER    (-376)
%define VERR_SEM_LV_INTERNAL_ERROR    (-377)
%define VERR_NET_IO_ERROR    (-400)
%define VERR_NET_OUT_OF_RESOURCES    (-401)
%define VERR_NET_HOST_NOT_FOUND    (-402)
%define VERR_NET_PATH_NOT_FOUND    (-403)
%define VERR_NET_PRINT_ERROR    (-404)
%define VERR_NET_NO_NETWORK    (-405)
%define VERR_NET_NOT_UNIQUE_NAME    (-406)
%define VERR_NET_IN_PROGRESS    (-436)
%define VERR_NET_ALREADY_IN_PROGRESS    (-437)
%define VERR_NET_NOT_SOCKET    (-438)
%define VERR_NET_DEST_ADDRESS_REQUIRED    (-439)
%define VERR_NET_MSG_SIZE    (-440)
%define VERR_NET_PROTOCOL_TYPE    (-441)
%define VERR_NET_PROTOCOL_NOT_AVAILABLE    (-442)
%define VERR_NET_PROTOCOL_NOT_SUPPORTED    (-443)
%define VERR_NET_SOCKET_TYPE_NOT_SUPPORTED    (-444)
%define VERR_NET_OPERATION_NOT_SUPPORTED    (-445)
%define VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED    (-446)
%define VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED    (-447)
%define VERR_NET_ADDRESS_IN_USE    (-448)
%define VERR_NET_ADDRESS_NOT_AVAILABLE    (-449)
%define VERR_NET_DOWN    (-450)
%define VERR_NET_UNREACHABLE    (-451)
%define VERR_NET_CONNECTION_RESET    (-452)
%define VERR_NET_CONNECTION_ABORTED    (-453)
%define VERR_NET_CONNECTION_RESET_BY_PEER    (-454)
%define VERR_NET_NO_BUFFER_SPACE    (-455)
%define VERR_NET_ALREADY_CONNECTED    (-456)
%define VERR_NET_NOT_CONNECTED    (-457)
%define VERR_NET_SHUTDOWN    (-458)
%define VERR_NET_TOO_MANY_REFERENCES    (-459)
%define VERR_NET_CONNECTION_TIMED_OUT    (-460)
%define VERR_NET_CONNECTION_REFUSED    (-461)
%define VERR_NET_HOST_DOWN    (-464)
%define VERR_NET_HOST_UNREACHABLE    (-465)
%define VERR_NET_PROTOCOL_ERROR    (-466)
%define VERR_NET_INCOMPLETE_TX_PACKET    (-467)
%define VERR_TCP_SERVER_STOP    (-500)
%define VINF_TCP_SERVER_STOP    500
%define VERR_TCP_SERVER_SHUTDOWN    (-501)
%define VERR_TCP_SERVER_DESTROYED    (-502)
%define VINF_TCP_SERVER_NO_CLIENT    503
%define VERR_UDP_SERVER_STOP    (-520)
%define VINF_UDP_SERVER_STOP    520
%define VERR_UDP_SERVER_SHUTDOWN    (-521)
%define VERR_UDP_SERVER_DESTROYED    (-522)
%define VINF_UDP_SERVER_NO_CLIENT    523
%define VERR_L4_INVALID_DS_OFFSET    (-550)
%define VERR_IPC    (-551)
%define VERR_RESOURCE_IN_USE    (-552)
%define VERR_IPC_PROCESS_NOT_FOUND    (-553)
%define VERR_IPC_RECEIVE_TIMEOUT    (-554)
%define VERR_IPC_SEND_TIMEOUT    (-555)
%define VERR_IPC_RECEIVE_CANCELLED    (-556)
%define VERR_IPC_SEND_CANCELLED    (-557)
%define VERR_IPC_RECEIVE_ABORTED    (-558)
%define VERR_IPC_SEND_ABORTED    (-559)
%define VERR_IPC_RECEIVE_MAP_FAILED    (-560)
%define VERR_IPC_SEND_MAP_FAILED    (-561)
%define VERR_IPC_RECEIVE_SEND_PF_TIMEOUT    (-562)
%define VERR_IPC_SEND_SEND_PF_TIMEOUT    (-563)
%define VINF_IPC_RECEIVE_MSG_CUT    564
%define VINF_IPC_SEND_MSG_CUT    565
%define VERR_L4_DS_MANAGER_NOT_FOUND    (-566)
%define VERR_INVALID_EXE_SIGNATURE    (-600)
%define VERR_ELF_EXE_NOT_SUPPORTED    (-601)
%define VERR_PE_EXE_NOT_SUPPORTED    (-602)
%define VERR_LX_EXE_NOT_SUPPORTED    (-603)
%define VERR_LE_EXE_NOT_SUPPORTED    (-604)
%define VERR_NE_EXE_NOT_SUPPORTED    (-605)
%define VERR_MZ_EXE_NOT_SUPPORTED    (-606)
%define VERR_AOUT_EXE_NOT_SUPPORTED    (-607)
%define VERR_BAD_EXE_FORMAT    (-608)
%define VERR_SYMBOL_NOT_FOUND    (-609)
%define VERR_MODULE_NOT_FOUND    (-610)
%define VERR_SYMBOL_VALUE_TOO_BIG    (-611)
%define VERR_IMAGE_TOO_BIG    (-612)
%define VERR_IMAGE_BASE_TOO_HIGH    (-614)
%define VERR_LDR_ARCH_MISMATCH    (-615)
%define VERR_LDR_MISMATCH_NATIVE    (-616)
%define VERR_LDR_IMPORTED_SYMBOL_NOT_FOUND    (-617)
%define VERR_LDR_GENERAL_FAILURE    (-618)
%define VERR_LDR_IMAGE_HASH    (-619)
%define VERR_LDRPE_DELAY_IMPORT    (-620)
%define VERR_LDRPE_CERT_MALFORMED    (-621)
%define VERR_LDRPE_CERT_UNSUPPORTED    (-622)
%define VERR_LDRPE_GLOBALPTR    (-623)
%define VERR_LDRPE_TLS    (-624)
%define VERR_LDRPE_COM_DESCRIPTOR    (-625)
%define VERR_LDRPE_LOAD_CONFIG_SIZE    (-626)
%define VERR_LDRPE_LOCK_PREFIX_TABLE    (-627)
%define VERR_LDRELF_ODD_ENDIAN    (-630)
%define VERR_LDRELF_DYN    (-631)
%define VERR_LDRELF_EXEC    (-632)
%define VERR_LDRELF_MACHINE    (-633)
%define VERR_LDRELF_VERSION    (-634)
%define VERR_LDRELF_MULTIPLE_SYMTABS    (-635)
%define VERR_LDRELF_RELOCATION_NOT_SUPPORTED    (-636)
%define VERR_LDRELF_INVALID_SYMBOL_INDEX    (-637)
%define VERR_LDRELF_INVALID_SYMBOL_NAME_OFFSET    (-638)
%define VERR_LDRELF_INVALID_RELOCATION_OFFSET    (-639)
%define VERR_LDRELF_NO_SYMBOL_OR_NO_STRING_TABS    (-640)
%define VERR_LDR_INVALID_LINK_ADDRESS    (-647)
%define VERR_LDR_INVALID_RVA    (-648)
%define VERR_LDR_INVALID_SEG_OFFSET    (-649)
%define VERR_DBG_NO_LINE_NUMBERS    (-650)
%define VERR_DBG_NO_SYMBOLS    (-651)
%define VERR_DBG_INVALID_ADDRESS    (-652)
%define VERR_DBG_INVALID_SEGMENT_INDEX    (-653)
%define VERR_DBG_INVALID_SEGMENT_OFFSET    (-654)
%define VERR_DBG_INVALID_RVA    (-655)
%define VERR_DBG_SPECIAL_SEGMENT    (-656)
%define VERR_DBG_ADDRESS_CONFLICT    (-657)
%define VERR_DBG_DUPLICATE_SYMBOL    (-658)
%define VERR_DBG_SEGMENT_INDEX_CONFLICT    (-659)
%define VERR_DBG_LINE_NOT_FOUND    (-660)
%define VERR_DBG_SYMBOL_NAME_OUT_OF_RANGE    (-661)
%define VERR_DBG_FILE_NAME_OUT_OF_RANGE    (-662)
%define VERR_DBG_SEGMENT_NAME_OUT_OF_RANGE    (-663)
%define VERR_DBG_ADDRESS_WRAP    (-664)
%define VERR_DBG_NOT_NM_MAP_FILE    (-665)
%define VERR_DBG_NOT_LINUX_KALLSYMS    (-666)
%define VERR_DBG_NO_MATCHING_INTERPRETER    (-667)
%define VERR_DWARF_BAD_LINE_NUMBER_HEADER    (-668)
%define VERR_DWARF_UNEXPECTED_END    (-669)
%define VERR_DWARF_LEB_OVERFLOW    (-670)
%define VERR_DWARF_BAD_LNE    (-671)
%define VERR_DWARF_BAD_STRING    (-672)
%define VERR_DWARF_BAD_POS    (-673)
%define VERR_DWARF_BAD_INFO    (-674)
%define VERR_DWARF_BAD_ABBREV    (-675)
%define VERR_DWARF_ABBREV_NOT_FOUND    (-676)
%define VERR_DWARF_UNKNOWN_FORM    (-677)
%define VERR_DWARF_UNEXPECTED_FORM    (-678)
%define VERR_DWARF_TODO    (-679)
%define VERR_DWARF_UNKNOWN_LOC_OPCODE    (-680)
%define VERR_DWARF_STACK_OVERFLOW    (-681)
%define VERR_DWARF_STACK_UNDERFLOW    (-682)
%define VERR_DWARF_IPE    (-683)
%define VERR_DBG_CFG_INVALID_VALUE    (-684)
%define VERR_DBG_CFG_NOT_UINT_PROP    (-685)
%define VERR_DBG_DEFERRED_LOAD_FAILED    (-686)
%define VERR_DBG_TODO    (-687)
%define VERR_DBG_FILE_MISMATCH    (-688)
%define VERR_DBG_MOD_IPE    (-689)
%define VINF_DBG_ADJUSTED_SYM_SIZE    690
%define VERR_CV_BAD_FORMAT    (-691)
%define VERR_CV_TODO    (-692)
%define VERR_CV_IPE    (-693)
%define VERR_RT_REQUEST_INVALID_TYPE    (-700)
%define VERR_RT_REQUEST_STATE    (-701)
%define VERR_RT_REQUEST_INVALID_PACKAGE    (-702)
%define VERR_RT_REQUEST_STATUS_STILL_PENDING    (-703)
%define VERR_RT_REQUEST_STATUS_FREED    (-704)
%define VERR_ENV_VAR_NOT_FOUND    (-750)
%define VINF_ENV_VAR_NOT_FOUND    (750)
%define VWRN_ENV_NOT_FULLY_TRANSLATED    (751)
%define VERR_CPU_OFFLINE    (-800)
%define VERR_CPU_NOT_FOUND    (-801)
%define VERR_GETOPT_UNKNOWN_OPTION    (-825)
%define VERR_GETOPT_REQUIRED_ARGUMENT_MISSING    (-826)
%define VERR_GETOPT_INVALID_ARGUMENT_FORMAT    (-827)
%define VINF_GETOPT_NOT_OPTION    828
%define VERR_GETOPT_INDEX_MISSING    (-829)
%define VERR_CACHE_FULL    (-850)
%define VERR_CACHE_EMPTY    (-851)
%define VERR_MEM_CACHE_MAX_SIZE    (-855)
%define VERR_S3_ACCESS_DENIED    (-875)
%define VERR_S3_NOT_FOUND    (-876)
%define VERR_S3_BUCKET_ALREADY_EXISTS    (-877)
%define VERR_S3_BUCKET_NOT_EMPTY    (-878)
%define VERR_S3_CANCELED    (-879)
%define VERR_HTTP_INIT_FAILED    (-885)
%define VERR_HTTP_NOT_FOUND    (-886)
%define VERR_HTTP_ACCESS_DENIED    (-887)
%define VERR_HTTP_BAD_REQUEST    (-888)
%define VERR_HTTP_COULDNT_CONNECT    (-889)
%define VERR_HTTP_SSL_CONNECT_ERROR    (-890)
%define VERR_HTTP_CACERT_WRONG_FORMAT    (-891)
%define VERR_HTTP_CACERT_CANNOT_AUTHENTICATE    (-892)
%define VERR_HTTP_ABORTED    (-893)
%define VERR_MANIFEST_UNSUPPORTED_DIGEST_TYPE    (-900)
%define VERR_MANIFEST_WRONG_FILE_FORMAT    (-901)
%define VERR_MANIFEST_DIGEST_MISMATCH    (-902)
%define VERR_MANIFEST_FILE_MISMATCH    (-903)
%define VERR_MANIFEST_ATTR_NOT_FOUND    (-904)
%define VERR_MANIFEST_ATTR_TYPE_MISMATCH    (-905)
%define VERR_MANIFEST_ATTR_TYPE_NOT_FOUND    (-906)
%define VERR_TAR_CHKSUM_MISMATCH    (-925)
%define VERR_TAR_END_OF_FILE    (-926)
%define VERR_TAR_UNEXPECTED_EOS    (-927)
%define VERR_TAR_EOS_MORE_INPUT    (-928)
%define VERR_TAR_BAD_NUM_FIELD    (-929)
%define VERR_TAR_BAD_NUM_FIELD_TERM    (-930)
%define VERR_TAR_BASE_256_NOT_SUPPORTED    (-931)
%define VERR_TAR_NUM_VALUE_TOO_LARGE    (-932)
%define VERR_TAR_DEV_VALUE_TOO_LARGE    (-933)
%define VERR_TAR_BAD_MODE_FIELD    (-934)
%define VERR_TAR_MODE_WITH_TYPE    (-935)
%define VERR_TAR_SIZE_NOT_ZERO    (-936)
%define VERR_TAR_UNKNOWN_TYPE_FLAG    (-937)
%define VERR_TAR_ZERO_HEADER    (-938)
%define VERR_TAR_NOT_USTAR_V00    (-939)
%define VERR_TAR_EMPTY_NAME    (-940)
%define VERR_TAR_NON_DIR_ENDS_WITH_SLASH    (-941)
%define VERR_TAR_UNSUPPORTED_PAX_TYPE    (-942)
%define VERR_TAR_UNSUPPORTED_SOLARIS_HDR_TYPE    (-943)
%define VERR_TAR_UNSUPPORTED_GNU_HDR_TYPE    (-944)
%define VERR_TAR_BAD_CHKSUM_FIELD    (-945)
%define VERR_TAR_MALFORMED_GNU_LONGXXXX    (-946)
%define VERR_TAR_NAME_TOO_LONG    (-947)
%define VINF_TAR_DIR_PATH    (948)
%define VERR_POLL_HANDLE_NOT_POLLABLE    (-950)
%define VERR_POLL_HANDLE_ID_EXISTS    (-951)
%define VERR_POLL_HANDLE_ID_NOT_FOUND    (-952)
%define VERR_POLL_SET_IS_FULL    (-953)
%define VERR_ZIP_ERROR    (-22000)
%define VERR_ZIP_CORRUPTED    (-22001)
%define VERR_ZIP_NO_MEMORY    (-22002)
%define VERR_ZIP_UNSUPPORTED_VERSION    (-22003)
%define VERR_ZIP_UNSUPPORTED_METHOD    (-22004)
%define VERR_ZIP_BAD_HEADER    (-22005)
%define VERR_VFS_CHAIN_NO_PREFIX    (-22100)
%define VERR_VFS_CHAIN_EMPTY    (-22101)
%define VERR_VFS_CHAIN_EXPECTED_ELEMENT    (-22102)
%define VERR_VFS_CHAIN_UNKNOWN_TYPE    (-22103)
%define VERR_VFS_CHAIN_EXPECTED_LEFT_PARENTHESES    (-22104)
%define VERR_VFS_CHAIN_EXPECTED_RIGHT_PARENTHESES    (-22105)
%define VERR_VFS_CHAIN_EXPECTED_PROVIDER_NAME    (-22106)
%define VERR_VFS_CHAIN_EXPECTED_ACTION    (-22107)
%define VERR_VFS_CHAIN_MULTIPLE_ACTIONS    (-22108)
%define VERR_VFS_CHAIN_NO_ACTION    (-22109)
%define VERR_VFS_CHAIN_EXPECTED_PIPE    (-22110)
%define VERR_VFS_CHAIN_UNEXPECTED_ACTION_TYPE    (-22111)
%define VERR_DVM_MAP_EMPTY    (-22200)
%define VERR_DVM_MAP_NO_VOLUME    (-22201)
%define VERR_LOG_REVISION_MISMATCH    (-22300)
%define VERR_SYS_CANNOT_POWER_OFF    (-22500)
%define VINF_SYS_MAY_POWER_OFF    (22501)
%define VERR_SYS_SHUTDOWN_FAILED    (-22502)
%define VERR_FILESYSTEM_CORRUPT    (-22600)
%define VERR_XAR_WRONG_MAGIC    (-22700)
%define VERR_XAR_BAD_HDR_SIZE    (-22701)
%define VERR_XAR_UNSUPPORTED_VERSION    (-22702)
%define VERR_XAR_UNSUPPORTED_HASH_FUNCTION    (-22703)
%define VERR_XAR_TOC_TOO_SMALL    (-22704)
%define VERR_XAR_TOC_TOO_BIG    (-22705)
%define VERR_XAR_TOC_TOO_BIG_COMPRESSED    (-22706)
%define VERR_XAR_TOC_UNCOMP_SIZE_MISMATCH    (-22707)
%define VERR_XAR_TOC_STRLEN_MISMATCH    (-22708)
%define VERR_XAR_TOC_UTF8_ENCODING    (-22709)
%define VERR_XAR_TOC_XML_PARSE_ERROR    (-22710)
%define VERR_XML_TOC_ELEMENT_MISSING    (-22711)
%define VERR_XML_TOC_ELEMENT_HAS_SIBLINGS    (-22712)
%define VERR_XAR_TOC_DIGEST_MISMATCH    (-22713)
%define VERR_XAR_BAD_CHECKSUM_ELEMENT    (-22714)
%define VERR_XAR_HASH_FUNCTION_MISMATCH    (-22715)
%define VERR_XAR_BAD_DIGEST_LENGTH    (-22716)
%define VERR_XAR_NOT_STREAMBLE_ELEMENT_ORDER    (-22717)
%define VERR_XAR_MISSING_OFFSET_ELEMENT    (-22718)
%define VERR_XAR_BAD_OFFSET_ELEMENT    (-22719)
%define VERR_XAR_MISSING_SIZE_ELEMENT    (-22720)
%define VERR_XAR_BAD_SIZE_ELEMENT    (-22721)
%define VERR_XAR_MISSING_LENGTH_ELEMENT    (-22722)
%define VERR_XAR_BAD_LENGTH_ELEMENT    (-22723)
%define VERR_XAR_BAD_FILE_ELEMENT    (-22724)
%define VERR_XAR_MISSING_DATA_ELEMENT    (-22725)
%define VERR_XAR_UNKNOWN_FILE_TYPE    (-22726)
%define VERR_XAR_NO_ENCODING    (-22727)
%define VERR_XAR_BAD_FILE_TIMESTAMP    (-22728)
%define VERR_XAR_BAD_FILE_MODE    (-22729)
%define VERR_XAR_BAD_FILE_UID    (-22730)
%define VERR_XAR_BAD_FILE_GID    (-22731)
%define VERR_XAR_BAD_FILE_DEVICE_NO    (-22732)
%define VERR_XAR_BAD_FILE_INODE    (-22733)
%define VERR_XAR_INVALID_FILE_NAME    (-22734)
%define VERR_XAR_EXTRACTED_HASH_MISMATCH    (-22735)
%define VERR_XAR_EXTRACTED_SIZE_EXCEEDED    (-22736)
%define VERR_XAR_ARCHIVED_HASH_MISMATCH    (-22737)
%define VERR_XAR_UNUSED_ARCHIVED_DATA    (-22738)
%define VERR_XAR_ARCHIVED_AND_EXTRACTED_SIZES_MISMATCH    (-22739)