lldb 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +43 -4
  3. data/README.md +86 -2
  4. data/Rakefile +36 -0
  5. data/bindings/constants.yml +137 -0
  6. data/bindings/surface.yml +3072 -0
  7. data/ext/lldb/discovery.rb +101 -0
  8. data/ext/lldb/extconf.rb +206 -88
  9. data/ext/lldb/lldb_wrapper.cpp +7934 -877
  10. data/ext/lldb/lldb_wrapper.h +596 -333
  11. data/lib/lldb/address.rb +81 -0
  12. data/lib/lldb/api_support.rb +23 -6
  13. data/lib/lldb/attach_info.rb +122 -0
  14. data/lib/lldb/block.rb +121 -0
  15. data/lib/lldb/breakpoint.rb +11 -6
  16. data/lib/lldb/breakpoint_location.rb +20 -5
  17. data/lib/lldb/broadcaster.rb +79 -0
  18. data/lib/lldb/command_interpreter.rb +9 -4
  19. data/lib/lldb/command_return_object.rb +24 -5
  20. data/lib/lldb/compile_unit.rb +64 -0
  21. data/lib/lldb/context.rb +81 -0
  22. data/lib/lldb/debugger.rb +55 -12
  23. data/lib/lldb/error.rb +50 -3
  24. data/lib/lldb/event.rb +109 -0
  25. data/lib/lldb/expression_options.rb +124 -0
  26. data/lib/lldb/ffi_bindings.rb +313 -31
  27. data/lib/lldb/file_spec.rb +90 -0
  28. data/lib/lldb/file_spec_list.rb +78 -0
  29. data/lib/lldb/frame.rb +109 -17
  30. data/lib/lldb/function.rb +121 -0
  31. data/lib/lldb/instruction.rb +83 -0
  32. data/lib/lldb/instruction_list.rb +68 -0
  33. data/lib/lldb/launch_info.rb +145 -19
  34. data/lib/lldb/line_entry.rb +75 -0
  35. data/lib/lldb/listener.rb +96 -0
  36. data/lib/lldb/memory_region_info.rb +8 -3
  37. data/lib/lldb/module.rb +46 -5
  38. data/lib/lldb/native.rb +36 -0
  39. data/lib/lldb/native_buffer.rb +32 -0
  40. data/lib/lldb/native_handle.rb +60 -0
  41. data/lib/lldb/native_lifecycle.rb +64 -0
  42. data/lib/lldb/native_string_array.rb +34 -0
  43. data/lib/lldb/process.rb +102 -40
  44. data/lib/lldb/symbol.rb +117 -0
  45. data/lib/lldb/symbol_context.rb +9 -4
  46. data/lib/lldb/target.rb +69 -67
  47. data/lib/lldb/thread.rb +51 -18
  48. data/lib/lldb/type.rb +40 -3
  49. data/lib/lldb/type_member.rb +67 -0
  50. data/lib/lldb/types.rb +69 -4
  51. data/lib/lldb/value.rb +27 -17
  52. data/lib/lldb/value_list.rb +9 -5
  53. data/lib/lldb/version.rb +1 -1
  54. data/lib/lldb/watchpoint.rb +26 -9
  55. data/lib/lldb.rb +78 -10
  56. data/lldb.gemspec +4 -1
  57. data/rbs_collection.yaml +1 -1
  58. data/script/check_bindings +259 -0
  59. data/script/guard_c_exports +139 -0
  60. data/sig/lldb/ffi_bindings.rbs +247 -21
  61. data/sig/lldb/weak_ref.rbs +7 -0
  62. metadata +30 -6
  63. data/ext/lldb/Makefile +0 -24
  64. data/ext/lldb/liblldb_wrapper.dylib +0 -0
  65. data/ext/lldb/lldb_wrapper.o +0 -0
  66. data/ext/lldb/mkmf.log +0 -24
@@ -0,0 +1,3072 @@
1
+ version: 1
2
+
3
+ entries:
4
+ lldb_breakpoint_destroy:
5
+ classification: public
6
+ reason: This LLDB C ABI function is part of the audited public binding surface.
7
+ exception_guard:
8
+ kind: error_boundary
9
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
10
+ lldb_breakpoint_find_location_by_id:
11
+ classification: public
12
+ reason: This LLDB C ABI function is part of the audited public binding surface.
13
+ exception_guard:
14
+ kind: error_boundary
15
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
16
+ lldb_breakpoint_get_auto_continue:
17
+ classification: public
18
+ reason: This LLDB C ABI function is part of the audited public binding surface.
19
+ exception_guard:
20
+ kind: error_boundary
21
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
22
+ lldb_breakpoint_get_condition:
23
+ classification: public
24
+ reason: This LLDB C ABI function is part of the audited public binding surface.
25
+ exception_guard:
26
+ kind: error_boundary
27
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
28
+ lldb_breakpoint_get_hit_count:
29
+ classification: public
30
+ reason: This LLDB C ABI function is part of the audited public binding surface.
31
+ exception_guard:
32
+ kind: error_boundary
33
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
34
+ lldb_breakpoint_get_id:
35
+ classification: public
36
+ reason: This LLDB C ABI function is part of the audited public binding surface.
37
+ exception_guard:
38
+ kind: error_boundary
39
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
40
+ lldb_breakpoint_get_ignore_count:
41
+ classification: public
42
+ reason: This LLDB C ABI function is part of the audited public binding surface.
43
+ exception_guard:
44
+ kind: error_boundary
45
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
46
+ lldb_breakpoint_get_location_at_index:
47
+ classification: public
48
+ reason: This LLDB C ABI function is part of the audited public binding surface.
49
+ exception_guard:
50
+ kind: error_boundary
51
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
52
+ lldb_breakpoint_get_num_locations:
53
+ classification: public
54
+ reason: This LLDB C ABI function is part of the audited public binding surface.
55
+ exception_guard:
56
+ kind: error_boundary
57
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
58
+ lldb_breakpoint_get_thread_id:
59
+ classification: public
60
+ reason: This LLDB C ABI function is part of the audited public binding surface.
61
+ exception_guard:
62
+ kind: error_boundary
63
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
64
+ lldb_breakpoint_get_thread_index:
65
+ classification: public
66
+ reason: This LLDB C ABI function is part of the audited public binding surface.
67
+ exception_guard:
68
+ kind: error_boundary
69
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
70
+ lldb_breakpoint_get_thread_name:
71
+ classification: public
72
+ reason: This LLDB C ABI function is part of the audited public binding surface.
73
+ exception_guard:
74
+ kind: error_boundary
75
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
76
+ lldb_breakpoint_is_enabled:
77
+ classification: public
78
+ reason: This LLDB C ABI function is part of the audited public binding surface.
79
+ exception_guard:
80
+ kind: error_boundary
81
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
82
+ lldb_breakpoint_is_hardware:
83
+ classification: public
84
+ reason: This LLDB C ABI function is part of the audited public binding surface.
85
+ exception_guard:
86
+ kind: error_boundary
87
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
88
+ lldb_breakpoint_is_one_shot:
89
+ classification: public
90
+ reason: This LLDB C ABI function is part of the audited public binding surface.
91
+ exception_guard:
92
+ kind: error_boundary
93
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
94
+ lldb_breakpoint_is_valid:
95
+ classification: public
96
+ reason: This LLDB C ABI function is part of the audited public binding surface.
97
+ exception_guard:
98
+ kind: error_boundary
99
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
100
+ lldb_breakpoint_location_destroy:
101
+ classification: public
102
+ reason: This LLDB C ABI function is part of the audited public binding surface.
103
+ exception_guard:
104
+ kind: error_boundary
105
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
106
+ lldb_breakpoint_location_get_breakpoint:
107
+ classification: public
108
+ reason: This LLDB C ABI function is part of the audited public binding surface.
109
+ exception_guard:
110
+ kind: error_boundary
111
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
112
+ lldb_breakpoint_location_get_condition:
113
+ classification: public
114
+ reason: This LLDB C ABI function is part of the audited public binding surface.
115
+ exception_guard:
116
+ kind: error_boundary
117
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
118
+ lldb_breakpoint_location_get_hit_count:
119
+ classification: public
120
+ reason: This LLDB C ABI function is part of the audited public binding surface.
121
+ exception_guard:
122
+ kind: error_boundary
123
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
124
+ lldb_breakpoint_location_get_id:
125
+ classification: public
126
+ reason: This LLDB C ABI function is part of the audited public binding surface.
127
+ exception_guard:
128
+ kind: error_boundary
129
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
130
+ lldb_breakpoint_location_get_ignore_count:
131
+ classification: public
132
+ reason: This LLDB C ABI function is part of the audited public binding surface.
133
+ exception_guard:
134
+ kind: error_boundary
135
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
136
+ lldb_breakpoint_location_get_load_address:
137
+ classification: public
138
+ reason: This LLDB C ABI function is part of the audited public binding surface.
139
+ exception_guard:
140
+ kind: error_boundary
141
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
142
+ lldb_breakpoint_location_is_enabled:
143
+ classification: public
144
+ reason: This LLDB C ABI function is part of the audited public binding surface.
145
+ exception_guard:
146
+ kind: error_boundary
147
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
148
+ lldb_breakpoint_location_is_valid:
149
+ classification: public
150
+ reason: This LLDB C ABI function is part of the audited public binding surface.
151
+ exception_guard:
152
+ kind: error_boundary
153
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
154
+ lldb_breakpoint_location_set_condition:
155
+ classification: public
156
+ reason: This LLDB C ABI function is part of the audited public binding surface.
157
+ exception_guard:
158
+ kind: error_boundary
159
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
160
+ lldb_breakpoint_location_set_enabled:
161
+ classification: public
162
+ reason: This LLDB C ABI function is part of the audited public binding surface.
163
+ exception_guard:
164
+ kind: error_boundary
165
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
166
+ lldb_breakpoint_location_set_ignore_count:
167
+ classification: public
168
+ reason: This LLDB C ABI function is part of the audited public binding surface.
169
+ exception_guard:
170
+ kind: error_boundary
171
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
172
+ lldb_breakpoint_set_auto_continue:
173
+ classification: public
174
+ reason: This LLDB C ABI function is part of the audited public binding surface.
175
+ exception_guard:
176
+ kind: error_boundary
177
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
178
+ lldb_breakpoint_set_condition:
179
+ classification: public
180
+ reason: This LLDB C ABI function is part of the audited public binding surface.
181
+ exception_guard:
182
+ kind: error_boundary
183
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
184
+ lldb_breakpoint_set_enabled:
185
+ classification: public
186
+ reason: This LLDB C ABI function is part of the audited public binding surface.
187
+ exception_guard:
188
+ kind: error_boundary
189
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
190
+ lldb_breakpoint_set_ignore_count:
191
+ classification: public
192
+ reason: This LLDB C ABI function is part of the audited public binding surface.
193
+ exception_guard:
194
+ kind: error_boundary
195
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
196
+ lldb_breakpoint_set_one_shot:
197
+ classification: public
198
+ reason: This LLDB C ABI function is part of the audited public binding surface.
199
+ exception_guard:
200
+ kind: error_boundary
201
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
202
+ lldb_breakpoint_set_thread_id:
203
+ classification: public
204
+ reason: This LLDB C ABI function is part of the audited public binding surface.
205
+ exception_guard:
206
+ kind: error_boundary
207
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
208
+ lldb_breakpoint_set_thread_index:
209
+ classification: public
210
+ reason: This LLDB C ABI function is part of the audited public binding surface.
211
+ exception_guard:
212
+ kind: error_boundary
213
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
214
+ lldb_breakpoint_set_thread_name:
215
+ classification: public
216
+ reason: This LLDB C ABI function is part of the audited public binding surface.
217
+ exception_guard:
218
+ kind: error_boundary
219
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
220
+ lldb_command_interpreter_alias_exists:
221
+ classification: public
222
+ reason: This LLDB C ABI function is part of the audited public binding surface.
223
+ exception_guard:
224
+ kind: error_boundary
225
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
226
+ lldb_command_interpreter_command_exists:
227
+ classification: public
228
+ reason: This LLDB C ABI function is part of the audited public binding surface.
229
+ exception_guard:
230
+ kind: error_boundary
231
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
232
+ lldb_command_interpreter_destroy:
233
+ classification: public
234
+ reason: This LLDB C ABI function is part of the audited public binding surface.
235
+ exception_guard:
236
+ kind: error_boundary
237
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
238
+ lldb_command_interpreter_handle_command:
239
+ classification: public
240
+ reason: This LLDB C ABI function is part of the audited public binding surface.
241
+ exception_guard:
242
+ kind: error_boundary
243
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
244
+ lldb_command_interpreter_is_valid:
245
+ classification: public
246
+ reason: This LLDB C ABI function is part of the audited public binding surface.
247
+ exception_guard:
248
+ kind: error_boundary
249
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
250
+ lldb_command_return_object_clear:
251
+ classification: public
252
+ reason: This LLDB C ABI function is part of the audited public binding surface.
253
+ exception_guard:
254
+ kind: error_boundary
255
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
256
+ lldb_command_return_object_create:
257
+ classification: public
258
+ reason: This LLDB C ABI function is part of the audited public binding surface.
259
+ exception_guard:
260
+ kind: error_boundary
261
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
262
+ lldb_command_return_object_destroy:
263
+ classification: public
264
+ reason: This LLDB C ABI function is part of the audited public binding surface.
265
+ exception_guard:
266
+ kind: error_boundary
267
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
268
+ lldb_command_return_object_get_error:
269
+ classification: public
270
+ reason: This LLDB C ABI function is part of the audited public binding surface.
271
+ exception_guard:
272
+ kind: error_boundary
273
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
274
+ lldb_command_return_object_get_output:
275
+ classification: public
276
+ reason: This LLDB C ABI function is part of the audited public binding surface.
277
+ exception_guard:
278
+ kind: error_boundary
279
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
280
+ lldb_command_return_object_get_status:
281
+ classification: public
282
+ reason: This LLDB C ABI function is part of the audited public binding surface.
283
+ exception_guard:
284
+ kind: error_boundary
285
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
286
+ lldb_command_return_object_has_result:
287
+ classification: public
288
+ reason: This LLDB C ABI function is part of the audited public binding surface.
289
+ exception_guard:
290
+ kind: error_boundary
291
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
292
+ lldb_command_return_object_is_valid:
293
+ classification: public
294
+ reason: This LLDB C ABI function is part of the audited public binding surface.
295
+ exception_guard:
296
+ kind: error_boundary
297
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
298
+ lldb_command_return_object_succeeded:
299
+ classification: public
300
+ reason: This LLDB C ABI function is part of the audited public binding surface.
301
+ exception_guard:
302
+ kind: error_boundary
303
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
304
+ lldb_debugger_create:
305
+ classification: public
306
+ reason: This LLDB C ABI function is part of the audited public binding surface.
307
+ exception_guard:
308
+ kind: error_boundary
309
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
310
+ lldb_debugger_create_target:
311
+ classification: public
312
+ reason: This LLDB C ABI function is part of the audited public binding surface.
313
+ exception_guard:
314
+ kind: error_boundary
315
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
316
+ lldb_debugger_create_target_simple:
317
+ classification: public
318
+ reason: This LLDB C ABI function is part of the audited public binding surface.
319
+ exception_guard:
320
+ kind: error_boundary
321
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
322
+ lldb_debugger_delete_target:
323
+ classification: public
324
+ reason: This LLDB C ABI function is part of the audited public binding surface.
325
+ exception_guard:
326
+ kind: error_boundary
327
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
328
+ lldb_debugger_destroy:
329
+ classification: public
330
+ reason: This LLDB C ABI function is part of the audited public binding surface.
331
+ exception_guard:
332
+ kind: error_boundary
333
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
334
+ lldb_debugger_find_target_with_process_id:
335
+ classification: public
336
+ reason: This LLDB C ABI function is part of the audited public binding surface.
337
+ exception_guard:
338
+ kind: error_boundary
339
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
340
+ lldb_debugger_get_async:
341
+ classification: public
342
+ reason: This LLDB C ABI function is part of the audited public binding surface.
343
+ exception_guard:
344
+ kind: error_boundary
345
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
346
+ lldb_debugger_get_command_interpreter:
347
+ classification: public
348
+ reason: This LLDB C ABI function is part of the audited public binding surface.
349
+ exception_guard:
350
+ kind: error_boundary
351
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
352
+ lldb_debugger_get_num_targets:
353
+ classification: public
354
+ reason: This LLDB C ABI function is part of the audited public binding surface.
355
+ exception_guard:
356
+ kind: error_boundary
357
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
358
+ lldb_debugger_get_selected_target:
359
+ classification: public
360
+ reason: This LLDB C ABI function is part of the audited public binding surface.
361
+ exception_guard:
362
+ kind: error_boundary
363
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
364
+ lldb_debugger_get_target_at_index:
365
+ classification: public
366
+ reason: This LLDB C ABI function is part of the audited public binding surface.
367
+ exception_guard:
368
+ kind: error_boundary
369
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
370
+ lldb_debugger_get_version_string:
371
+ classification: public
372
+ reason: This LLDB C ABI function is part of the audited public binding surface.
373
+ exception_guard:
374
+ kind: error_boundary
375
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
376
+ lldb_debugger_handle_command:
377
+ classification: public
378
+ reason: This LLDB C ABI function is part of the audited public binding surface.
379
+ exception_guard:
380
+ kind: error_boundary
381
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
382
+ lldb_debugger_is_valid:
383
+ classification: public
384
+ reason: This LLDB C ABI function is part of the audited public binding surface.
385
+ exception_guard:
386
+ kind: error_boundary
387
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
388
+ lldb_debugger_set_async:
389
+ classification: public
390
+ reason: This LLDB C ABI function is part of the audited public binding surface.
391
+ exception_guard:
392
+ kind: error_boundary
393
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
394
+ lldb_debugger_set_selected_target:
395
+ classification: public
396
+ reason: This LLDB C ABI function is part of the audited public binding surface.
397
+ exception_guard:
398
+ kind: error_boundary
399
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
400
+ lldb_error_clear:
401
+ classification: public
402
+ reason: This LLDB C ABI function is part of the audited public binding surface.
403
+ exception_guard:
404
+ kind: error_boundary
405
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
406
+ lldb_error_create:
407
+ classification: public
408
+ reason: This LLDB C ABI function is part of the audited public binding surface.
409
+ exception_guard:
410
+ kind: error_boundary
411
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
412
+ lldb_error_destroy:
413
+ classification: public
414
+ reason: This LLDB C ABI function is part of the audited public binding surface.
415
+ exception_guard:
416
+ kind: error_boundary
417
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
418
+ lldb_error_fail:
419
+ classification: public
420
+ reason: This LLDB C ABI function is part of the audited public binding surface.
421
+ exception_guard:
422
+ kind: error_boundary
423
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
424
+ lldb_error_get_cstring:
425
+ classification: public
426
+ reason: This LLDB C ABI function is part of the audited public binding surface.
427
+ exception_guard:
428
+ kind: error_boundary
429
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
430
+ lldb_error_get_error:
431
+ classification: public
432
+ reason: This LLDB C ABI function is part of the audited public binding surface.
433
+ exception_guard:
434
+ kind: error_boundary
435
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
436
+ lldb_error_get_type:
437
+ classification: public
438
+ reason: This LLDB C ABI function is part of the audited public binding surface.
439
+ exception_guard:
440
+ kind: error_boundary
441
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
442
+ lldb_error_set_error_string:
443
+ classification: public
444
+ reason: This LLDB C ABI function is part of the audited public binding surface.
445
+ exception_guard:
446
+ kind: error_boundary
447
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
448
+ lldb_error_success:
449
+ classification: public
450
+ reason: This LLDB C ABI function is part of the audited public binding surface.
451
+ exception_guard:
452
+ kind: error_boundary
453
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
454
+ lldb_file_spec_create:
455
+ classification: public
456
+ reason: This LLDB C ABI function is part of the audited public binding surface.
457
+ exception_guard:
458
+ kind: error_boundary
459
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
460
+ lldb_file_spec_destroy:
461
+ classification: public
462
+ reason: This LLDB C ABI function is part of the audited public binding surface.
463
+ exception_guard:
464
+ kind: error_boundary
465
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
466
+ lldb_file_spec_exists:
467
+ classification: public
468
+ reason: This LLDB C ABI function is part of the audited public binding surface.
469
+ exception_guard:
470
+ kind: error_boundary
471
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
472
+ lldb_file_spec_get_directory:
473
+ classification: public
474
+ reason: This LLDB C ABI function is part of the audited public binding surface.
475
+ exception_guard:
476
+ kind: error_boundary
477
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
478
+ lldb_file_spec_get_filename:
479
+ classification: public
480
+ reason: This LLDB C ABI function is part of the audited public binding surface.
481
+ exception_guard:
482
+ kind: error_boundary
483
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
484
+ lldb_file_spec_get_path:
485
+ classification: public
486
+ reason: This LLDB C ABI function is part of the audited public binding surface.
487
+ exception_guard:
488
+ kind: error_boundary
489
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
490
+ lldb_file_spec_is_valid:
491
+ classification: public
492
+ reason: This LLDB C ABI function is part of the audited public binding surface.
493
+ exception_guard:
494
+ kind: error_boundary
495
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
496
+ lldb_file_spec_set_directory:
497
+ classification: public
498
+ reason: This LLDB C ABI function is part of the audited public binding surface.
499
+ exception_guard:
500
+ kind: error_boundary
501
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
502
+ lldb_file_spec_set_filename:
503
+ classification: public
504
+ reason: This LLDB C ABI function is part of the audited public binding surface.
505
+ exception_guard:
506
+ kind: error_boundary
507
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
508
+ lldb_frame_destroy:
509
+ classification: public
510
+ reason: This LLDB C ABI function is part of the audited public binding surface.
511
+ exception_guard:
512
+ kind: error_boundary
513
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
514
+ lldb_frame_disassemble:
515
+ classification: public
516
+ reason: This LLDB C ABI function is part of the audited public binding surface.
517
+ exception_guard:
518
+ kind: error_boundary
519
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
520
+ lldb_frame_evaluate_expression:
521
+ classification: public
522
+ reason: This LLDB C ABI function is part of the audited public binding surface.
523
+ exception_guard:
524
+ kind: error_boundary
525
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
526
+ lldb_frame_find_variable:
527
+ classification: public
528
+ reason: This LLDB C ABI function is part of the audited public binding surface.
529
+ exception_guard:
530
+ kind: error_boundary
531
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
532
+ lldb_frame_get_column:
533
+ classification: public
534
+ reason: This LLDB C ABI function is part of the audited public binding surface.
535
+ exception_guard:
536
+ kind: error_boundary
537
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
538
+ lldb_frame_get_display_function_name:
539
+ classification: public
540
+ reason: This LLDB C ABI function is part of the audited public binding surface.
541
+ exception_guard:
542
+ kind: error_boundary
543
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
544
+ lldb_frame_get_file_path:
545
+ classification: public
546
+ reason: This LLDB C ABI function is part of the audited public binding surface.
547
+ exception_guard:
548
+ kind: error_boundary
549
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
550
+ lldb_frame_get_file_spec:
551
+ classification: public
552
+ reason: This LLDB C ABI function is part of the audited public binding surface.
553
+ exception_guard:
554
+ kind: error_boundary
555
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
556
+ lldb_frame_get_fp:
557
+ classification: public
558
+ reason: This LLDB C ABI function is part of the audited public binding surface.
559
+ exception_guard:
560
+ kind: error_boundary
561
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
562
+ lldb_frame_get_frame_id:
563
+ classification: public
564
+ reason: This LLDB C ABI function is part of the audited public binding surface.
565
+ exception_guard:
566
+ kind: error_boundary
567
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
568
+ lldb_frame_get_function_name:
569
+ classification: public
570
+ reason: This LLDB C ABI function is part of the audited public binding surface.
571
+ exception_guard:
572
+ kind: error_boundary
573
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
574
+ lldb_frame_get_line:
575
+ classification: public
576
+ reason: This LLDB C ABI function is part of the audited public binding surface.
577
+ exception_guard:
578
+ kind: error_boundary
579
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
580
+ lldb_frame_get_module:
581
+ classification: public
582
+ reason: This LLDB C ABI function is part of the audited public binding surface.
583
+ exception_guard:
584
+ kind: error_boundary
585
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
586
+ lldb_frame_get_pc:
587
+ classification: public
588
+ reason: This LLDB C ABI function is part of the audited public binding surface.
589
+ exception_guard:
590
+ kind: error_boundary
591
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
592
+ lldb_frame_get_registers:
593
+ classification: public
594
+ reason: This LLDB C ABI function is part of the audited public binding surface.
595
+ exception_guard:
596
+ kind: error_boundary
597
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
598
+ lldb_frame_get_sp:
599
+ classification: public
600
+ reason: This LLDB C ABI function is part of the audited public binding surface.
601
+ exception_guard:
602
+ kind: error_boundary
603
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
604
+ lldb_frame_get_symbol_context:
605
+ classification: public
606
+ reason: This LLDB C ABI function is part of the audited public binding surface.
607
+ exception_guard:
608
+ kind: error_boundary
609
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
610
+ lldb_frame_get_thread:
611
+ classification: public
612
+ reason: This LLDB C ABI function is part of the audited public binding surface.
613
+ exception_guard:
614
+ kind: error_boundary
615
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
616
+ lldb_frame_get_value_for_variable_path:
617
+ classification: public
618
+ reason: This LLDB C ABI function is part of the audited public binding surface.
619
+ exception_guard:
620
+ kind: error_boundary
621
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
622
+ lldb_frame_get_variables:
623
+ classification: public
624
+ reason: This LLDB C ABI function is part of the audited public binding surface.
625
+ exception_guard:
626
+ kind: error_boundary
627
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
628
+ lldb_frame_is_inlined:
629
+ classification: public
630
+ reason: This LLDB C ABI function is part of the audited public binding surface.
631
+ exception_guard:
632
+ kind: error_boundary
633
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
634
+ lldb_frame_is_valid:
635
+ classification: public
636
+ reason: This LLDB C ABI function is part of the audited public binding surface.
637
+ exception_guard:
638
+ kind: error_boundary
639
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
640
+ lldb_frame_set_pc:
641
+ classification: public
642
+ reason: This LLDB C ABI function is part of the audited public binding surface.
643
+ exception_guard:
644
+ kind: error_boundary
645
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
646
+ lldb_initialize:
647
+ classification: metadata
648
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
649
+ exception_guard:
650
+ kind: error_boundary
651
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
652
+ lldb_launch_info_create:
653
+ classification: public
654
+ reason: This LLDB C ABI function is part of the audited public binding surface.
655
+ exception_guard:
656
+ kind: error_boundary
657
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
658
+ lldb_launch_info_destroy:
659
+ classification: public
660
+ reason: This LLDB C ABI function is part of the audited public binding surface.
661
+ exception_guard:
662
+ kind: error_boundary
663
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
664
+ lldb_launch_info_get_launch_flags:
665
+ classification: public
666
+ reason: This LLDB C ABI function is part of the audited public binding surface.
667
+ exception_guard:
668
+ kind: error_boundary
669
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
670
+ lldb_launch_info_set_environment_entries:
671
+ classification: public
672
+ reason: This LLDB C ABI function is part of the audited public binding surface.
673
+ exception_guard:
674
+ kind: error_boundary
675
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
676
+ lldb_launch_info_set_launch_flags:
677
+ classification: public
678
+ reason: This LLDB C ABI function is part of the audited public binding surface.
679
+ exception_guard:
680
+ kind: error_boundary
681
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
682
+ lldb_launch_info_set_working_directory:
683
+ classification: public
684
+ reason: This LLDB C ABI function is part of the audited public binding surface.
685
+ exception_guard:
686
+ kind: error_boundary
687
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
688
+ lldb_memory_region_info_destroy:
689
+ classification: public
690
+ reason: This LLDB C ABI function is part of the audited public binding surface.
691
+ exception_guard:
692
+ kind: error_boundary
693
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
694
+ lldb_memory_region_info_get_name:
695
+ classification: public
696
+ reason: This LLDB C ABI function is part of the audited public binding surface.
697
+ exception_guard:
698
+ kind: error_boundary
699
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
700
+ lldb_memory_region_info_get_region_base:
701
+ classification: public
702
+ reason: This LLDB C ABI function is part of the audited public binding surface.
703
+ exception_guard:
704
+ kind: error_boundary
705
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
706
+ lldb_memory_region_info_get_region_end:
707
+ classification: public
708
+ reason: This LLDB C ABI function is part of the audited public binding surface.
709
+ exception_guard:
710
+ kind: error_boundary
711
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
712
+ lldb_memory_region_info_is_executable:
713
+ classification: public
714
+ reason: This LLDB C ABI function is part of the audited public binding surface.
715
+ exception_guard:
716
+ kind: error_boundary
717
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
718
+ lldb_memory_region_info_is_mapped:
719
+ classification: public
720
+ reason: This LLDB C ABI function is part of the audited public binding surface.
721
+ exception_guard:
722
+ kind: error_boundary
723
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
724
+ lldb_memory_region_info_is_readable:
725
+ classification: public
726
+ reason: This LLDB C ABI function is part of the audited public binding surface.
727
+ exception_guard:
728
+ kind: error_boundary
729
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
730
+ lldb_memory_region_info_is_writable:
731
+ classification: public
732
+ reason: This LLDB C ABI function is part of the audited public binding surface.
733
+ exception_guard:
734
+ kind: error_boundary
735
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
736
+ lldb_module_destroy:
737
+ classification: public
738
+ reason: This LLDB C ABI function is part of the audited public binding surface.
739
+ exception_guard:
740
+ kind: error_boundary
741
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
742
+ lldb_module_get_file:
743
+ classification: public
744
+ reason: This LLDB C ABI function is part of the audited public binding surface.
745
+ exception_guard:
746
+ kind: error_boundary
747
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
748
+ lldb_module_get_file_path:
749
+ classification: public
750
+ reason: This LLDB C ABI function is part of the audited public binding surface.
751
+ exception_guard:
752
+ kind: error_boundary
753
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
754
+ lldb_module_get_num_symbols:
755
+ classification: public
756
+ reason: This LLDB C ABI function is part of the audited public binding surface.
757
+ exception_guard:
758
+ kind: error_boundary
759
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
760
+ lldb_module_get_platform_file:
761
+ classification: public
762
+ reason: This LLDB C ABI function is part of the audited public binding surface.
763
+ exception_guard:
764
+ kind: error_boundary
765
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
766
+ lldb_module_get_platform_file_path:
767
+ classification: public
768
+ reason: This LLDB C ABI function is part of the audited public binding surface.
769
+ exception_guard:
770
+ kind: error_boundary
771
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
772
+ lldb_module_is_valid:
773
+ classification: public
774
+ reason: This LLDB C ABI function is part of the audited public binding surface.
775
+ exception_guard:
776
+ kind: error_boundary
777
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
778
+ lldb_process_allocate_memory:
779
+ classification: public
780
+ reason: This LLDB C ABI function is part of the audited public binding surface.
781
+ exception_guard:
782
+ kind: error_boundary
783
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
784
+ lldb_process_continue:
785
+ classification: public
786
+ reason: This LLDB C ABI function is part of the audited public binding surface.
787
+ exception_guard:
788
+ kind: error_boundary
789
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
790
+ lldb_process_deallocate_memory:
791
+ classification: public
792
+ reason: This LLDB C ABI function is part of the audited public binding surface.
793
+ exception_guard:
794
+ kind: error_boundary
795
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
796
+ lldb_process_destroy:
797
+ classification: public
798
+ reason: This LLDB C ABI function is part of the audited public binding surface.
799
+ exception_guard:
800
+ kind: error_boundary
801
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
802
+ lldb_process_destroy_process:
803
+ classification: public
804
+ reason: This LLDB C ABI function is part of the audited public binding surface.
805
+ exception_guard:
806
+ kind: error_boundary
807
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
808
+ lldb_process_detach:
809
+ classification: public
810
+ reason: This LLDB C ABI function is part of the audited public binding surface.
811
+ exception_guard:
812
+ kind: error_boundary
813
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
814
+ lldb_process_get_exit_description:
815
+ classification: public
816
+ reason: This LLDB C ABI function is part of the audited public binding surface.
817
+ exception_guard:
818
+ kind: error_boundary
819
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
820
+ lldb_process_get_exit_status:
821
+ classification: public
822
+ reason: This LLDB C ABI function is part of the audited public binding surface.
823
+ exception_guard:
824
+ kind: error_boundary
825
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
826
+ lldb_process_get_memory_region_info:
827
+ classification: public
828
+ reason: This LLDB C ABI function is part of the audited public binding surface.
829
+ exception_guard:
830
+ kind: error_boundary
831
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
832
+ lldb_process_get_num_supported_hardware_watchpoints:
833
+ classification: public
834
+ reason: This LLDB C ABI function is part of the audited public binding surface.
835
+ exception_guard:
836
+ kind: error_boundary
837
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
838
+ lldb_process_get_num_threads:
839
+ classification: public
840
+ reason: This LLDB C ABI function is part of the audited public binding surface.
841
+ exception_guard:
842
+ kind: error_boundary
843
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
844
+ lldb_process_get_process_id:
845
+ classification: public
846
+ reason: This LLDB C ABI function is part of the audited public binding surface.
847
+ exception_guard:
848
+ kind: error_boundary
849
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
850
+ lldb_process_get_selected_thread:
851
+ classification: public
852
+ reason: This LLDB C ABI function is part of the audited public binding surface.
853
+ exception_guard:
854
+ kind: error_boundary
855
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
856
+ lldb_process_get_state:
857
+ classification: public
858
+ reason: This LLDB C ABI function is part of the audited public binding surface.
859
+ exception_guard:
860
+ kind: error_boundary
861
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
862
+ lldb_process_get_stderr:
863
+ classification: public
864
+ reason: This LLDB C ABI function is part of the audited public binding surface.
865
+ exception_guard:
866
+ kind: error_boundary
867
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
868
+ lldb_process_get_stdout:
869
+ classification: public
870
+ reason: This LLDB C ABI function is part of the audited public binding surface.
871
+ exception_guard:
872
+ kind: error_boundary
873
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
874
+ lldb_process_get_thread_at_index:
875
+ classification: public
876
+ reason: This LLDB C ABI function is part of the audited public binding surface.
877
+ exception_guard:
878
+ kind: error_boundary
879
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
880
+ lldb_process_get_thread_by_id:
881
+ classification: public
882
+ reason: This LLDB C ABI function is part of the audited public binding surface.
883
+ exception_guard:
884
+ kind: error_boundary
885
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
886
+ lldb_process_get_thread_by_index_id:
887
+ classification: public
888
+ reason: This LLDB C ABI function is part of the audited public binding surface.
889
+ exception_guard:
890
+ kind: error_boundary
891
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
892
+ lldb_process_get_unique_id:
893
+ classification: public
894
+ reason: This LLDB C ABI function is part of the audited public binding surface.
895
+ exception_guard:
896
+ kind: error_boundary
897
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
898
+ lldb_process_is_valid:
899
+ classification: public
900
+ reason: This LLDB C ABI function is part of the audited public binding surface.
901
+ exception_guard:
902
+ kind: error_boundary
903
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
904
+ lldb_process_kill:
905
+ classification: public
906
+ reason: This LLDB C ABI function is part of the audited public binding surface.
907
+ exception_guard:
908
+ kind: error_boundary
909
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
910
+ lldb_process_put_stdin:
911
+ classification: public
912
+ reason: This LLDB C ABI function is part of the audited public binding surface.
913
+ exception_guard:
914
+ kind: error_boundary
915
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
916
+ lldb_process_read_cstring_from_memory:
917
+ classification: public
918
+ reason: This LLDB C ABI function is part of the audited public binding surface.
919
+ exception_guard:
920
+ kind: error_boundary
921
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
922
+ lldb_process_read_memory:
923
+ classification: public
924
+ reason: This LLDB C ABI function is part of the audited public binding surface.
925
+ exception_guard:
926
+ kind: error_boundary
927
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
928
+ lldb_process_send_async_interrupt:
929
+ classification: public
930
+ reason: This LLDB C ABI function is part of the audited public binding surface.
931
+ exception_guard:
932
+ kind: error_boundary
933
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
934
+ lldb_process_set_selected_thread_by_id:
935
+ classification: public
936
+ reason: This LLDB C ABI function is part of the audited public binding surface.
937
+ exception_guard:
938
+ kind: error_boundary
939
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
940
+ lldb_process_set_selected_thread_by_index_id:
941
+ classification: public
942
+ reason: This LLDB C ABI function is part of the audited public binding surface.
943
+ exception_guard:
944
+ kind: error_boundary
945
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
946
+ lldb_process_signal:
947
+ classification: public
948
+ reason: This LLDB C ABI function is part of the audited public binding surface.
949
+ exception_guard:
950
+ kind: error_boundary
951
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
952
+ lldb_process_stop:
953
+ classification: public
954
+ reason: This LLDB C ABI function is part of the audited public binding surface.
955
+ exception_guard:
956
+ kind: error_boundary
957
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
958
+ lldb_process_write_memory:
959
+ classification: public
960
+ reason: This LLDB C ABI function is part of the audited public binding surface.
961
+ exception_guard:
962
+ kind: error_boundary
963
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
964
+ lldb_symbol_context_destroy:
965
+ classification: public
966
+ reason: This LLDB C ABI function is part of the audited public binding surface.
967
+ exception_guard:
968
+ kind: error_boundary
969
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
970
+ lldb_symbol_context_get_function_name:
971
+ classification: public
972
+ reason: This LLDB C ABI function is part of the audited public binding surface.
973
+ exception_guard:
974
+ kind: error_boundary
975
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
976
+ lldb_symbol_context_get_module:
977
+ classification: public
978
+ reason: This LLDB C ABI function is part of the audited public binding surface.
979
+ exception_guard:
980
+ kind: error_boundary
981
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
982
+ lldb_symbol_context_is_valid:
983
+ classification: public
984
+ reason: This LLDB C ABI function is part of the audited public binding surface.
985
+ exception_guard:
986
+ kind: error_boundary
987
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
988
+ lldb_target_attach_to_process_with_id:
989
+ classification: public
990
+ reason: This LLDB C ABI function is part of the audited public binding surface.
991
+ exception_guard:
992
+ kind: error_boundary
993
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
994
+ lldb_target_attach_to_process_with_name:
995
+ classification: public
996
+ reason: This LLDB C ABI function is part of the audited public binding surface.
997
+ exception_guard:
998
+ kind: error_boundary
999
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1000
+ lldb_target_breakpoint_create_by_address:
1001
+ classification: public
1002
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1003
+ exception_guard:
1004
+ kind: error_boundary
1005
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1006
+ lldb_target_breakpoint_create_by_location:
1007
+ classification: public
1008
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1009
+ exception_guard:
1010
+ kind: error_boundary
1011
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1012
+ lldb_target_breakpoint_create_by_name:
1013
+ classification: public
1014
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1015
+ exception_guard:
1016
+ kind: error_boundary
1017
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1018
+ lldb_target_breakpoint_create_by_regex:
1019
+ classification: public
1020
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1021
+ exception_guard:
1022
+ kind: error_boundary
1023
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1024
+ lldb_target_breakpoint_create_by_source_regex:
1025
+ classification: public
1026
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1027
+ exception_guard:
1028
+ kind: error_boundary
1029
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1030
+ lldb_target_delete_all_breakpoints:
1031
+ classification: public
1032
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1033
+ exception_guard:
1034
+ kind: error_boundary
1035
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1036
+ lldb_target_delete_all_watchpoints:
1037
+ classification: public
1038
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1039
+ exception_guard:
1040
+ kind: error_boundary
1041
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1042
+ lldb_target_delete_breakpoint:
1043
+ classification: public
1044
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1045
+ exception_guard:
1046
+ kind: error_boundary
1047
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1048
+ lldb_target_delete_watchpoint:
1049
+ classification: public
1050
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1051
+ exception_guard:
1052
+ kind: error_boundary
1053
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1054
+ lldb_target_destroy:
1055
+ classification: public
1056
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1057
+ exception_guard:
1058
+ kind: error_boundary
1059
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1060
+ lldb_target_disable_all_breakpoints:
1061
+ classification: public
1062
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1063
+ exception_guard:
1064
+ kind: error_boundary
1065
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1066
+ lldb_target_enable_all_breakpoints:
1067
+ classification: public
1068
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1069
+ exception_guard:
1070
+ kind: error_boundary
1071
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1072
+ lldb_target_evaluate_expression:
1073
+ classification: public
1074
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1075
+ exception_guard:
1076
+ kind: error_boundary
1077
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1078
+ lldb_target_find_breakpoint_by_id:
1079
+ classification: public
1080
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1081
+ exception_guard:
1082
+ kind: error_boundary
1083
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1084
+ lldb_target_find_watchpoint_by_id:
1085
+ classification: public
1086
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1087
+ exception_guard:
1088
+ kind: error_boundary
1089
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1090
+ lldb_target_get_address_byte_size:
1091
+ classification: public
1092
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1093
+ exception_guard:
1094
+ kind: error_boundary
1095
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1096
+ lldb_target_get_breakpoint_at_index:
1097
+ classification: public
1098
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1099
+ exception_guard:
1100
+ kind: error_boundary
1101
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1102
+ lldb_target_get_executable_file:
1103
+ classification: public
1104
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1105
+ exception_guard:
1106
+ kind: error_boundary
1107
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1108
+ lldb_target_get_executable_path:
1109
+ classification: public
1110
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1111
+ exception_guard:
1112
+ kind: error_boundary
1113
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1114
+ lldb_target_get_module_at_index:
1115
+ classification: public
1116
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1117
+ exception_guard:
1118
+ kind: error_boundary
1119
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1120
+ lldb_target_get_num_breakpoints:
1121
+ classification: public
1122
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1123
+ exception_guard:
1124
+ kind: error_boundary
1125
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1126
+ lldb_target_get_num_modules:
1127
+ classification: public
1128
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1129
+ exception_guard:
1130
+ kind: error_boundary
1131
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1132
+ lldb_target_get_num_watchpoints:
1133
+ classification: public
1134
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1135
+ exception_guard:
1136
+ kind: error_boundary
1137
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1138
+ lldb_target_get_process:
1139
+ classification: public
1140
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1141
+ exception_guard:
1142
+ kind: error_boundary
1143
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1144
+ lldb_target_get_triple:
1145
+ classification: public
1146
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1147
+ exception_guard:
1148
+ kind: error_boundary
1149
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1150
+ lldb_target_get_watchpoint_at_index:
1151
+ classification: public
1152
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1153
+ exception_guard:
1154
+ kind: error_boundary
1155
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1156
+ lldb_target_is_valid:
1157
+ classification: public
1158
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1159
+ exception_guard:
1160
+ kind: error_boundary
1161
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1162
+ lldb_target_launch:
1163
+ classification: public
1164
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1165
+ exception_guard:
1166
+ kind: error_boundary
1167
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1168
+ lldb_target_launch_simple:
1169
+ classification: public
1170
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1171
+ exception_guard:
1172
+ kind: error_boundary
1173
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1174
+ lldb_target_read_memory:
1175
+ classification: public
1176
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1177
+ exception_guard:
1178
+ kind: error_boundary
1179
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1180
+ lldb_target_watch_address:
1181
+ classification: public
1182
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1183
+ exception_guard:
1184
+ kind: error_boundary
1185
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1186
+ lldb_terminate:
1187
+ classification: metadata
1188
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1189
+ exception_guard:
1190
+ kind: error_boundary
1191
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1192
+ lldb_thread_destroy:
1193
+ classification: public
1194
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1195
+ exception_guard:
1196
+ kind: error_boundary
1197
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1198
+ lldb_thread_get_frame_at_index:
1199
+ classification: public
1200
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1201
+ exception_guard:
1202
+ kind: error_boundary
1203
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1204
+ lldb_thread_get_index_id:
1205
+ classification: public
1206
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1207
+ exception_guard:
1208
+ kind: error_boundary
1209
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1210
+ lldb_thread_get_name:
1211
+ classification: public
1212
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1213
+ exception_guard:
1214
+ kind: error_boundary
1215
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1216
+ lldb_thread_get_num_frames:
1217
+ classification: public
1218
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1219
+ exception_guard:
1220
+ kind: error_boundary
1221
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1222
+ lldb_thread_get_process:
1223
+ classification: public
1224
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1225
+ exception_guard:
1226
+ kind: error_boundary
1227
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1228
+ lldb_thread_get_queue_name:
1229
+ classification: public
1230
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1231
+ exception_guard:
1232
+ kind: error_boundary
1233
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1234
+ lldb_thread_get_selected_frame:
1235
+ classification: public
1236
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1237
+ exception_guard:
1238
+ kind: error_boundary
1239
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1240
+ lldb_thread_get_stop_description:
1241
+ classification: public
1242
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1243
+ exception_guard:
1244
+ kind: error_boundary
1245
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1246
+ lldb_thread_get_stop_reason:
1247
+ classification: public
1248
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1249
+ exception_guard:
1250
+ kind: error_boundary
1251
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1252
+ lldb_thread_get_stop_reason_data_at_index:
1253
+ classification: public
1254
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1255
+ exception_guard:
1256
+ kind: error_boundary
1257
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1258
+ lldb_thread_get_stop_reason_data_count:
1259
+ classification: public
1260
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1261
+ exception_guard:
1262
+ kind: error_boundary
1263
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1264
+ lldb_thread_get_thread_id:
1265
+ classification: public
1266
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1267
+ exception_guard:
1268
+ kind: error_boundary
1269
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1270
+ lldb_thread_is_stopped:
1271
+ classification: public
1272
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1273
+ exception_guard:
1274
+ kind: error_boundary
1275
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1276
+ lldb_thread_is_suspended:
1277
+ classification: public
1278
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1279
+ exception_guard:
1280
+ kind: error_boundary
1281
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1282
+ lldb_thread_is_valid:
1283
+ classification: public
1284
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1285
+ exception_guard:
1286
+ kind: error_boundary
1287
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1288
+ lldb_thread_resume:
1289
+ classification: public
1290
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1291
+ exception_guard:
1292
+ kind: error_boundary
1293
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1294
+ lldb_thread_run_to_address:
1295
+ classification: public
1296
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1297
+ exception_guard:
1298
+ kind: error_boundary
1299
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1300
+ lldb_thread_set_selected_frame:
1301
+ classification: public
1302
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1303
+ exception_guard:
1304
+ kind: error_boundary
1305
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1306
+ lldb_thread_step_instruction:
1307
+ classification: public
1308
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1309
+ exception_guard:
1310
+ kind: error_boundary
1311
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1312
+ lldb_thread_step_into:
1313
+ classification: public
1314
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1315
+ exception_guard:
1316
+ kind: error_boundary
1317
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1318
+ lldb_thread_step_out:
1319
+ classification: public
1320
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1321
+ exception_guard:
1322
+ kind: error_boundary
1323
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1324
+ lldb_thread_step_over:
1325
+ classification: public
1326
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1327
+ exception_guard:
1328
+ kind: error_boundary
1329
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1330
+ lldb_thread_suspend:
1331
+ classification: public
1332
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1333
+ exception_guard:
1334
+ kind: error_boundary
1335
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1336
+ lldb_type_destroy:
1337
+ classification: public
1338
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1339
+ exception_guard:
1340
+ kind: error_boundary
1341
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1342
+ lldb_type_get_array_element_type:
1343
+ classification: public
1344
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1345
+ exception_guard:
1346
+ kind: error_boundary
1347
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1348
+ lldb_type_get_array_size:
1349
+ classification: public
1350
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1351
+ exception_guard:
1352
+ kind: error_boundary
1353
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1354
+ lldb_type_get_basic_type:
1355
+ classification: public
1356
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1357
+ exception_guard:
1358
+ kind: error_boundary
1359
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1360
+ lldb_type_get_byte_size:
1361
+ classification: public
1362
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1363
+ exception_guard:
1364
+ kind: error_boundary
1365
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1366
+ lldb_type_get_canonical_type:
1367
+ classification: public
1368
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1369
+ exception_guard:
1370
+ kind: error_boundary
1371
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1372
+ lldb_type_get_dereferenced_type:
1373
+ classification: public
1374
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1375
+ exception_guard:
1376
+ kind: error_boundary
1377
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1378
+ lldb_type_get_display_type_name:
1379
+ classification: public
1380
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1381
+ exception_guard:
1382
+ kind: error_boundary
1383
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1384
+ lldb_type_get_name:
1385
+ classification: public
1386
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1387
+ exception_guard:
1388
+ kind: error_boundary
1389
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1390
+ lldb_type_get_num_direct_base_classes:
1391
+ classification: public
1392
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1393
+ exception_guard:
1394
+ kind: error_boundary
1395
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1396
+ lldb_type_get_num_fields:
1397
+ classification: public
1398
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1399
+ exception_guard:
1400
+ kind: error_boundary
1401
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1402
+ lldb_type_get_num_virtual_base_classes:
1403
+ classification: public
1404
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1405
+ exception_guard:
1406
+ kind: error_boundary
1407
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1408
+ lldb_type_get_pointee_type:
1409
+ classification: public
1410
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1411
+ exception_guard:
1412
+ kind: error_boundary
1413
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1414
+ lldb_type_get_pointer_type:
1415
+ classification: public
1416
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1417
+ exception_guard:
1418
+ kind: error_boundary
1419
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1420
+ lldb_type_get_reference_type:
1421
+ classification: public
1422
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1423
+ exception_guard:
1424
+ kind: error_boundary
1425
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1426
+ lldb_type_get_unqualified_type:
1427
+ classification: public
1428
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1429
+ exception_guard:
1430
+ kind: error_boundary
1431
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1432
+ lldb_type_is_array_type:
1433
+ classification: public
1434
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1435
+ exception_guard:
1436
+ kind: error_boundary
1437
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1438
+ lldb_type_is_function_type:
1439
+ classification: public
1440
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1441
+ exception_guard:
1442
+ kind: error_boundary
1443
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1444
+ lldb_type_is_pointer_type:
1445
+ classification: public
1446
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1447
+ exception_guard:
1448
+ kind: error_boundary
1449
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1450
+ lldb_type_is_polymorphic_class:
1451
+ classification: public
1452
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1453
+ exception_guard:
1454
+ kind: error_boundary
1455
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1456
+ lldb_type_is_reference_type:
1457
+ classification: public
1458
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1459
+ exception_guard:
1460
+ kind: error_boundary
1461
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1462
+ lldb_type_is_typedef_type:
1463
+ classification: public
1464
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1465
+ exception_guard:
1466
+ kind: error_boundary
1467
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1468
+ lldb_type_is_valid:
1469
+ classification: public
1470
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1471
+ exception_guard:
1472
+ kind: error_boundary
1473
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1474
+ lldb_type_is_vector_type:
1475
+ classification: public
1476
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1477
+ exception_guard:
1478
+ kind: error_boundary
1479
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1480
+ lldb_value_address_of:
1481
+ classification: public
1482
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1483
+ exception_guard:
1484
+ kind: error_boundary
1485
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1486
+ lldb_value_cast:
1487
+ classification: public
1488
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1489
+ exception_guard:
1490
+ kind: error_boundary
1491
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1492
+ lldb_value_create_child_at_offset:
1493
+ classification: public
1494
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1495
+ exception_guard:
1496
+ kind: error_boundary
1497
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1498
+ lldb_value_create_value_from_address:
1499
+ classification: public
1500
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1501
+ exception_guard:
1502
+ kind: error_boundary
1503
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1504
+ lldb_value_create_value_from_expression:
1505
+ classification: public
1506
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1507
+ exception_guard:
1508
+ kind: error_boundary
1509
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1510
+ lldb_value_dereference:
1511
+ classification: public
1512
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1513
+ exception_guard:
1514
+ kind: error_boundary
1515
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1516
+ lldb_value_destroy:
1517
+ classification: public
1518
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1519
+ exception_guard:
1520
+ kind: error_boundary
1521
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1522
+ lldb_value_get_byte_size:
1523
+ classification: public
1524
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1525
+ exception_guard:
1526
+ kind: error_boundary
1527
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1528
+ lldb_value_get_child_at_index:
1529
+ classification: public
1530
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1531
+ exception_guard:
1532
+ kind: error_boundary
1533
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1534
+ lldb_value_get_child_member_with_name:
1535
+ classification: public
1536
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1537
+ exception_guard:
1538
+ kind: error_boundary
1539
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1540
+ lldb_value_get_error:
1541
+ classification: public
1542
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1543
+ exception_guard:
1544
+ kind: error_boundary
1545
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1546
+ lldb_value_get_expression_path:
1547
+ classification: public
1548
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1549
+ exception_guard:
1550
+ kind: error_boundary
1551
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1552
+ lldb_value_get_load_address:
1553
+ classification: public
1554
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1555
+ exception_guard:
1556
+ kind: error_boundary
1557
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1558
+ lldb_value_get_name:
1559
+ classification: public
1560
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1561
+ exception_guard:
1562
+ kind: error_boundary
1563
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1564
+ lldb_value_get_non_synthetic_value:
1565
+ classification: public
1566
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1567
+ exception_guard:
1568
+ kind: error_boundary
1569
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1570
+ lldb_value_get_num_children:
1571
+ classification: public
1572
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1573
+ exception_guard:
1574
+ kind: error_boundary
1575
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1576
+ lldb_value_get_summary:
1577
+ classification: public
1578
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1579
+ exception_guard:
1580
+ kind: error_boundary
1581
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1582
+ lldb_value_get_type:
1583
+ classification: public
1584
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1585
+ exception_guard:
1586
+ kind: error_boundary
1587
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1588
+ lldb_value_get_type_name:
1589
+ classification: public
1590
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1591
+ exception_guard:
1592
+ kind: error_boundary
1593
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1594
+ lldb_value_get_value:
1595
+ classification: public
1596
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1597
+ exception_guard:
1598
+ kind: error_boundary
1599
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1600
+ lldb_value_get_value_as_signed:
1601
+ classification: public
1602
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1603
+ exception_guard:
1604
+ kind: error_boundary
1605
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1606
+ lldb_value_get_value_as_unsigned:
1607
+ classification: public
1608
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1609
+ exception_guard:
1610
+ kind: error_boundary
1611
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1612
+ lldb_value_get_value_type:
1613
+ classification: public
1614
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1615
+ exception_guard:
1616
+ kind: error_boundary
1617
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1618
+ lldb_value_is_pointer_type:
1619
+ classification: public
1620
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1621
+ exception_guard:
1622
+ kind: error_boundary
1623
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1624
+ lldb_value_is_valid:
1625
+ classification: public
1626
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1627
+ exception_guard:
1628
+ kind: error_boundary
1629
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1630
+ lldb_value_list_destroy:
1631
+ classification: public
1632
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1633
+ exception_guard:
1634
+ kind: error_boundary
1635
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1636
+ lldb_value_list_get_first_value_by_name:
1637
+ classification: public
1638
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1639
+ exception_guard:
1640
+ kind: error_boundary
1641
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1642
+ lldb_value_list_get_size:
1643
+ classification: public
1644
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1645
+ exception_guard:
1646
+ kind: error_boundary
1647
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1648
+ lldb_value_list_get_value_at_index:
1649
+ classification: public
1650
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1651
+ exception_guard:
1652
+ kind: error_boundary
1653
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1654
+ lldb_value_list_is_valid:
1655
+ classification: public
1656
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1657
+ exception_guard:
1658
+ kind: error_boundary
1659
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1660
+ lldb_value_might_have_children:
1661
+ classification: public
1662
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1663
+ exception_guard:
1664
+ kind: error_boundary
1665
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1666
+ lldb_value_set_value_from_cstring:
1667
+ classification: public
1668
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1669
+ exception_guard:
1670
+ kind: error_boundary
1671
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1672
+ lldb_value_watch:
1673
+ classification: public
1674
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1675
+ exception_guard:
1676
+ kind: error_boundary
1677
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1678
+ lldb_watchpoint_destroy:
1679
+ classification: public
1680
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1681
+ exception_guard:
1682
+ kind: error_boundary
1683
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1684
+ lldb_watchpoint_get_condition:
1685
+ classification: public
1686
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1687
+ exception_guard:
1688
+ kind: error_boundary
1689
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1690
+ lldb_watchpoint_get_hit_count:
1691
+ classification: public
1692
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1693
+ exception_guard:
1694
+ kind: error_boundary
1695
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1696
+ lldb_watchpoint_get_id:
1697
+ classification: public
1698
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1699
+ exception_guard:
1700
+ kind: error_boundary
1701
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1702
+ lldb_watchpoint_get_ignore_count:
1703
+ classification: public
1704
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1705
+ exception_guard:
1706
+ kind: error_boundary
1707
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1708
+ lldb_watchpoint_get_watch_address:
1709
+ classification: public
1710
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1711
+ exception_guard:
1712
+ kind: error_boundary
1713
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1714
+ lldb_watchpoint_get_watch_size:
1715
+ classification: public
1716
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1717
+ exception_guard:
1718
+ kind: error_boundary
1719
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1720
+ lldb_watchpoint_is_enabled:
1721
+ classification: public
1722
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1723
+ exception_guard:
1724
+ kind: error_boundary
1725
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1726
+ lldb_watchpoint_is_valid:
1727
+ classification: public
1728
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1729
+ exception_guard:
1730
+ kind: error_boundary
1731
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1732
+ lldb_watchpoint_is_watching_reads:
1733
+ classification: public
1734
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1735
+ exception_guard:
1736
+ kind: error_boundary
1737
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1738
+ lldb_watchpoint_is_watching_writes:
1739
+ classification: public
1740
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1741
+ exception_guard:
1742
+ kind: error_boundary
1743
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1744
+ lldb_watchpoint_set_condition:
1745
+ classification: public
1746
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1747
+ exception_guard:
1748
+ kind: error_boundary
1749
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1750
+ lldb_watchpoint_set_enabled:
1751
+ classification: public
1752
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1753
+ exception_guard:
1754
+ kind: error_boundary
1755
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1756
+ lldb_watchpoint_set_ignore_count:
1757
+ classification: public
1758
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1759
+ exception_guard:
1760
+ kind: error_boundary
1761
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1762
+ lldb_wrapper_abi_version:
1763
+ classification: metadata
1764
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1765
+ exception_guard:
1766
+ kind: error_boundary
1767
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1768
+ lldb_wrapper_build_lldb_version:
1769
+ classification: metadata
1770
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1771
+ exception_guard:
1772
+ kind: error_boundary
1773
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1774
+ lldb_wrapper_clear_last_error:
1775
+ classification: metadata
1776
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1777
+ exception_guard:
1778
+ kind: error_boundary
1779
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1780
+ lldb_wrapper_has_capability:
1781
+ classification: metadata
1782
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1783
+ exception_guard:
1784
+ kind: error_boundary
1785
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1786
+ lldb_wrapper_last_error_code:
1787
+ classification: metadata
1788
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1789
+ exception_guard:
1790
+ kind: error_boundary
1791
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1792
+ lldb_wrapper_last_error_message:
1793
+ classification: metadata
1794
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1795
+ exception_guard:
1796
+ kind: error_boundary
1797
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1798
+ lldb_wrapper_runtime_lldb_version:
1799
+ classification: metadata
1800
+ reason: Wrapper lifecycle or build metadata is intentionally low-level.
1801
+ exception_guard:
1802
+ kind: error_boundary
1803
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1804
+
1805
+ lldb_broadcaster_add_listener:
1806
+ classification: public
1807
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1808
+ exception_guard:
1809
+ kind: error_boundary
1810
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1811
+ lldb_broadcaster_broadcast_event_by_type:
1812
+ classification: public
1813
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1814
+ exception_guard:
1815
+ kind: error_boundary
1816
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1817
+ lldb_broadcaster_create:
1818
+ classification: public
1819
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1820
+ exception_guard:
1821
+ kind: error_boundary
1822
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1823
+ lldb_broadcaster_destroy:
1824
+ classification: public
1825
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1826
+ exception_guard:
1827
+ kind: error_boundary
1828
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1829
+ lldb_broadcaster_event_type_has_listeners:
1830
+ classification: public
1831
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1832
+ exception_guard:
1833
+ kind: error_boundary
1834
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1835
+ lldb_broadcaster_get_name:
1836
+ classification: public
1837
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1838
+ exception_guard:
1839
+ kind: error_boundary
1840
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1841
+ lldb_broadcaster_is_valid:
1842
+ classification: public
1843
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1844
+ exception_guard:
1845
+ kind: error_boundary
1846
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1847
+ lldb_broadcaster_remove_listener:
1848
+ classification: public
1849
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1850
+ exception_guard:
1851
+ kind: error_boundary
1852
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1853
+ lldb_debugger_get_broadcaster:
1854
+ classification: public
1855
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1856
+ exception_guard:
1857
+ kind: error_boundary
1858
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1859
+ lldb_debugger_get_listener:
1860
+ classification: public
1861
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1862
+ exception_guard:
1863
+ kind: error_boundary
1864
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1865
+ lldb_event_destroy:
1866
+ classification: public
1867
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1868
+ exception_guard:
1869
+ kind: error_boundary
1870
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1871
+ lldb_event_get_broadcaster:
1872
+ classification: public
1873
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1874
+ exception_guard:
1875
+ kind: error_boundary
1876
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1877
+ lldb_event_get_broadcaster_class:
1878
+ classification: public
1879
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1880
+ exception_guard:
1881
+ kind: error_boundary
1882
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1883
+ lldb_event_get_data_flavor:
1884
+ classification: public
1885
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1886
+ exception_guard:
1887
+ kind: error_boundary
1888
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1889
+ lldb_event_get_description:
1890
+ classification: public
1891
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1892
+ exception_guard:
1893
+ kind: error_boundary
1894
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1895
+ lldb_event_get_interrupted:
1896
+ classification: public
1897
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1898
+ exception_guard:
1899
+ kind: error_boundary
1900
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1901
+ lldb_event_get_process:
1902
+ classification: public
1903
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1904
+ exception_guard:
1905
+ kind: error_boundary
1906
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1907
+ lldb_event_get_process_state:
1908
+ classification: public
1909
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1910
+ exception_guard:
1911
+ kind: error_boundary
1912
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1913
+ lldb_event_get_restarted:
1914
+ classification: public
1915
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1916
+ exception_guard:
1917
+ kind: error_boundary
1918
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1919
+ lldb_event_get_type:
1920
+ classification: public
1921
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1922
+ exception_guard:
1923
+ kind: error_boundary
1924
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1925
+ lldb_event_is_process_event:
1926
+ classification: public
1927
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1928
+ exception_guard:
1929
+ kind: error_boundary
1930
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1931
+ lldb_event_is_valid:
1932
+ classification: public
1933
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1934
+ exception_guard:
1935
+ kind: error_boundary
1936
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1937
+ lldb_listener_create:
1938
+ classification: public
1939
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1940
+ exception_guard:
1941
+ kind: error_boundary
1942
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1943
+ lldb_listener_destroy:
1944
+ classification: public
1945
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1946
+ exception_guard:
1947
+ kind: error_boundary
1948
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1949
+ lldb_listener_is_valid:
1950
+ classification: public
1951
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1952
+ exception_guard:
1953
+ kind: error_boundary
1954
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1955
+ lldb_listener_next_event:
1956
+ classification: public
1957
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1958
+ exception_guard:
1959
+ kind: error_boundary
1960
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1961
+ lldb_listener_peek_event:
1962
+ classification: public
1963
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1964
+ exception_guard:
1965
+ kind: error_boundary
1966
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1967
+ lldb_listener_start_listening_for_events:
1968
+ classification: public
1969
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1970
+ exception_guard:
1971
+ kind: error_boundary
1972
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1973
+ lldb_listener_stop_listening_for_events:
1974
+ classification: public
1975
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1976
+ exception_guard:
1977
+ kind: error_boundary
1978
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1979
+ lldb_listener_wait_for_event:
1980
+ classification: public
1981
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1982
+ exception_guard:
1983
+ kind: error_boundary
1984
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1985
+ lldb_process_get_broadcaster:
1986
+ classification: public
1987
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1988
+ exception_guard:
1989
+ kind: error_boundary
1990
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1991
+
1992
+ lldb_attach_info_create:
1993
+ classification: public
1994
+ reason: This LLDB C ABI function is part of the audited public binding surface.
1995
+ exception_guard:
1996
+ kind: error_boundary
1997
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
1998
+ lldb_attach_info_destroy:
1999
+ classification: public
2000
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2001
+ exception_guard:
2002
+ kind: error_boundary
2003
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2004
+ lldb_attach_info_get_ignore_existing:
2005
+ classification: public
2006
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2007
+ exception_guard:
2008
+ kind: error_boundary
2009
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2010
+ lldb_attach_info_get_listener:
2011
+ classification: public
2012
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2013
+ exception_guard:
2014
+ kind: error_boundary
2015
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2016
+ lldb_attach_info_get_process_id:
2017
+ classification: public
2018
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2019
+ exception_guard:
2020
+ kind: error_boundary
2021
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2022
+ lldb_attach_info_get_process_plugin_name:
2023
+ classification: public
2024
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2025
+ exception_guard:
2026
+ kind: error_boundary
2027
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2028
+ lldb_attach_info_get_resume_count:
2029
+ classification: public
2030
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2031
+ exception_guard:
2032
+ kind: error_boundary
2033
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2034
+ lldb_attach_info_get_wait_for_launch:
2035
+ classification: public
2036
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2037
+ exception_guard:
2038
+ kind: error_boundary
2039
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2040
+ lldb_attach_info_set_executable:
2041
+ classification: public
2042
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2043
+ exception_guard:
2044
+ kind: error_boundary
2045
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2046
+ lldb_attach_info_set_executable_file:
2047
+ classification: public
2048
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2049
+ exception_guard:
2050
+ kind: error_boundary
2051
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2052
+ lldb_attach_info_set_ignore_existing:
2053
+ classification: public
2054
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2055
+ exception_guard:
2056
+ kind: error_boundary
2057
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2058
+ lldb_attach_info_set_listener:
2059
+ classification: public
2060
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2061
+ exception_guard:
2062
+ kind: error_boundary
2063
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2064
+ lldb_attach_info_set_process_id:
2065
+ classification: public
2066
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2067
+ exception_guard:
2068
+ kind: error_boundary
2069
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2070
+ lldb_attach_info_set_process_plugin_name:
2071
+ classification: public
2072
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2073
+ exception_guard:
2074
+ kind: error_boundary
2075
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2076
+ lldb_attach_info_set_resume_count:
2077
+ classification: public
2078
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2079
+ exception_guard:
2080
+ kind: error_boundary
2081
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2082
+ lldb_attach_info_set_wait_for_launch:
2083
+ classification: public
2084
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2085
+ exception_guard:
2086
+ kind: error_boundary
2087
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2088
+ lldb_debugger_create_with_source_init_files:
2089
+ classification: public
2090
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2091
+ exception_guard:
2092
+ kind: error_boundary
2093
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2094
+ lldb_expression_options_create:
2095
+ classification: public
2096
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2097
+ exception_guard:
2098
+ kind: error_boundary
2099
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2100
+ lldb_expression_options_destroy:
2101
+ classification: public
2102
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2103
+ exception_guard:
2104
+ kind: error_boundary
2105
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2106
+ lldb_expression_options_get_fetch_dynamic_value:
2107
+ classification: public
2108
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2109
+ exception_guard:
2110
+ kind: error_boundary
2111
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2112
+ lldb_expression_options_get_ignore_breakpoints:
2113
+ classification: public
2114
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2115
+ exception_guard:
2116
+ kind: error_boundary
2117
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2118
+ lldb_expression_options_get_stop_others:
2119
+ classification: public
2120
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2121
+ exception_guard:
2122
+ kind: error_boundary
2123
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2124
+ lldb_expression_options_get_suppress_persistent_result:
2125
+ classification: public
2126
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2127
+ exception_guard:
2128
+ kind: error_boundary
2129
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2130
+ lldb_expression_options_get_timeout:
2131
+ classification: public
2132
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2133
+ exception_guard:
2134
+ kind: error_boundary
2135
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2136
+ lldb_expression_options_get_try_all_threads:
2137
+ classification: public
2138
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2139
+ exception_guard:
2140
+ kind: error_boundary
2141
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2142
+ lldb_expression_options_get_unwind_on_error:
2143
+ classification: public
2144
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2145
+ exception_guard:
2146
+ kind: error_boundary
2147
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2148
+ lldb_expression_options_set_fetch_dynamic_value:
2149
+ classification: public
2150
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2151
+ exception_guard:
2152
+ kind: error_boundary
2153
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2154
+ lldb_expression_options_set_ignore_breakpoints:
2155
+ classification: public
2156
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2157
+ exception_guard:
2158
+ kind: error_boundary
2159
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2160
+ lldb_expression_options_set_language:
2161
+ classification: public
2162
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2163
+ exception_guard:
2164
+ kind: error_boundary
2165
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2166
+ lldb_expression_options_set_stop_others:
2167
+ classification: public
2168
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2169
+ exception_guard:
2170
+ kind: error_boundary
2171
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2172
+ lldb_expression_options_set_suppress_persistent_result:
2173
+ classification: public
2174
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2175
+ exception_guard:
2176
+ kind: error_boundary
2177
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2178
+ lldb_expression_options_set_timeout:
2179
+ classification: public
2180
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2181
+ exception_guard:
2182
+ kind: error_boundary
2183
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2184
+ lldb_expression_options_set_try_all_threads:
2185
+ classification: public
2186
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2187
+ exception_guard:
2188
+ kind: error_boundary
2189
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2190
+ lldb_expression_options_set_unwind_on_error:
2191
+ classification: public
2192
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2193
+ exception_guard:
2194
+ kind: error_boundary
2195
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2196
+ lldb_frame_evaluate_expression_with_options:
2197
+ classification: public
2198
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2199
+ exception_guard:
2200
+ kind: error_boundary
2201
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2202
+ lldb_launch_info_add_close_file_action:
2203
+ classification: public
2204
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2205
+ exception_guard:
2206
+ kind: error_boundary
2207
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2208
+ lldb_launch_info_add_duplicate_file_action:
2209
+ classification: public
2210
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2211
+ exception_guard:
2212
+ kind: error_boundary
2213
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2214
+ lldb_launch_info_add_open_file_action:
2215
+ classification: public
2216
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2217
+ exception_guard:
2218
+ kind: error_boundary
2219
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2220
+ lldb_launch_info_add_suppress_file_action:
2221
+ classification: public
2222
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2223
+ exception_guard:
2224
+ kind: error_boundary
2225
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2226
+ lldb_launch_info_get_executable_file:
2227
+ classification: public
2228
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2229
+ exception_guard:
2230
+ kind: error_boundary
2231
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2232
+ lldb_launch_info_get_listener:
2233
+ classification: public
2234
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2235
+ exception_guard:
2236
+ kind: error_boundary
2237
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2238
+ lldb_launch_info_get_process_plugin_name:
2239
+ classification: public
2240
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2241
+ exception_guard:
2242
+ kind: error_boundary
2243
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2244
+ lldb_launch_info_get_shell:
2245
+ classification: public
2246
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2247
+ exception_guard:
2248
+ kind: error_boundary
2249
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2250
+ lldb_launch_info_set_arguments:
2251
+ classification: public
2252
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2253
+ exception_guard:
2254
+ kind: error_boundary
2255
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2256
+ lldb_launch_info_set_executable_file:
2257
+ classification: public
2258
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2259
+ exception_guard:
2260
+ kind: error_boundary
2261
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2262
+ lldb_launch_info_set_listener:
2263
+ classification: public
2264
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2265
+ exception_guard:
2266
+ kind: error_boundary
2267
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2268
+ lldb_launch_info_set_process_plugin_name:
2269
+ classification: public
2270
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2271
+ exception_guard:
2272
+ kind: error_boundary
2273
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2274
+ lldb_launch_info_set_shell:
2275
+ classification: public
2276
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2277
+ exception_guard:
2278
+ kind: error_boundary
2279
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2280
+ lldb_target_attach_with_info:
2281
+ classification: public
2282
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2283
+ exception_guard:
2284
+ kind: error_boundary
2285
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2286
+ lldb_target_evaluate_expression_with_options:
2287
+ classification: public
2288
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2289
+ exception_guard:
2290
+ kind: error_boundary
2291
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2292
+
2293
+ lldb_launch_info_get_argument_at_index:
2294
+ classification: public
2295
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2296
+ exception_guard:
2297
+ kind: error_boundary
2298
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2299
+ lldb_launch_info_get_environment_entry_at_index:
2300
+ classification: public
2301
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2302
+ exception_guard:
2303
+ kind: error_boundary
2304
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2305
+ lldb_launch_info_get_num_arguments:
2306
+ classification: public
2307
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2308
+ exception_guard:
2309
+ kind: error_boundary
2310
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2311
+ lldb_launch_info_get_num_environment_entries:
2312
+ classification: public
2313
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2314
+ exception_guard:
2315
+ kind: error_boundary
2316
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2317
+ lldb_launch_info_get_working_directory:
2318
+ classification: public
2319
+ reason: This LLDB C ABI function is part of the audited public binding surface.
2320
+ exception_guard:
2321
+ kind: error_boundary
2322
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2323
+
2324
+ lldb_address_create:
2325
+ classification: public
2326
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2327
+ exception_guard:
2328
+ kind: error_boundary
2329
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2330
+ lldb_address_create_from_load_address:
2331
+ classification: public
2332
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2333
+ exception_guard:
2334
+ kind: error_boundary
2335
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2336
+ lldb_address_destroy:
2337
+ classification: public
2338
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2339
+ exception_guard:
2340
+ kind: error_boundary
2341
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2342
+ lldb_address_get_file_address:
2343
+ classification: public
2344
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2345
+ exception_guard:
2346
+ kind: error_boundary
2347
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2348
+ lldb_address_get_line_entry:
2349
+ classification: public
2350
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2351
+ exception_guard:
2352
+ kind: error_boundary
2353
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2354
+ lldb_address_get_load_address:
2355
+ classification: public
2356
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2357
+ exception_guard:
2358
+ kind: error_boundary
2359
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2360
+ lldb_address_get_offset:
2361
+ classification: public
2362
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2363
+ exception_guard:
2364
+ kind: error_boundary
2365
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2366
+ lldb_address_is_valid:
2367
+ classification: public
2368
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2369
+ exception_guard:
2370
+ kind: error_boundary
2371
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2372
+ lldb_breakpoint_location_get_address:
2373
+ classification: public
2374
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2375
+ exception_guard:
2376
+ kind: error_boundary
2377
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2378
+ lldb_file_spec_list_append:
2379
+ classification: public
2380
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2381
+ exception_guard:
2382
+ kind: error_boundary
2383
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2384
+ lldb_file_spec_list_append_if_unique:
2385
+ classification: public
2386
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2387
+ exception_guard:
2388
+ kind: error_boundary
2389
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2390
+ lldb_file_spec_list_clear:
2391
+ classification: public
2392
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2393
+ exception_guard:
2394
+ kind: error_boundary
2395
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2396
+ lldb_file_spec_list_create:
2397
+ classification: public
2398
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2399
+ exception_guard:
2400
+ kind: error_boundary
2401
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2402
+ lldb_file_spec_list_destroy:
2403
+ classification: public
2404
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2405
+ exception_guard:
2406
+ kind: error_boundary
2407
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2408
+ lldb_file_spec_list_get_file_spec_at_index:
2409
+ classification: public
2410
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2411
+ exception_guard:
2412
+ kind: error_boundary
2413
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2414
+ lldb_file_spec_list_get_size:
2415
+ classification: public
2416
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2417
+ exception_guard:
2418
+ kind: error_boundary
2419
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2420
+ lldb_file_spec_list_is_valid:
2421
+ classification: public
2422
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2423
+ exception_guard:
2424
+ kind: error_boundary
2425
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2426
+ lldb_frame_get_line_entry:
2427
+ classification: public
2428
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2429
+ exception_guard:
2430
+ kind: error_boundary
2431
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2432
+ lldb_line_entry_destroy:
2433
+ classification: public
2434
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2435
+ exception_guard:
2436
+ kind: error_boundary
2437
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2438
+ lldb_line_entry_get_column:
2439
+ classification: public
2440
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2441
+ exception_guard:
2442
+ kind: error_boundary
2443
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2444
+ lldb_line_entry_get_end_address:
2445
+ classification: public
2446
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2447
+ exception_guard:
2448
+ kind: error_boundary
2449
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2450
+ lldb_line_entry_get_file_spec:
2451
+ classification: public
2452
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2453
+ exception_guard:
2454
+ kind: error_boundary
2455
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2456
+ lldb_line_entry_get_line:
2457
+ classification: public
2458
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2459
+ exception_guard:
2460
+ kind: error_boundary
2461
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2462
+ lldb_line_entry_get_start_address:
2463
+ classification: public
2464
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2465
+ exception_guard:
2466
+ kind: error_boundary
2467
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2468
+ lldb_line_entry_is_valid:
2469
+ classification: public
2470
+ reason: This LLDB C ABI function exposes the structured file, address, or line API.
2471
+ exception_guard:
2472
+ kind: error_boundary
2473
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2474
+
2475
+ lldb_type_get_direct_base_class_at_index:
2476
+ classification: public
2477
+ reason: This LLDB C ABI function exposes structured type member metadata.
2478
+ exception_guard:
2479
+ kind: error_boundary
2480
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2481
+ lldb_type_get_field_at_index:
2482
+ classification: public
2483
+ reason: This LLDB C ABI function exposes structured type member metadata.
2484
+ exception_guard:
2485
+ kind: error_boundary
2486
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2487
+ lldb_type_get_virtual_base_class_at_index:
2488
+ classification: public
2489
+ reason: This LLDB C ABI function exposes structured type member metadata.
2490
+ exception_guard:
2491
+ kind: error_boundary
2492
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2493
+ lldb_type_member_destroy:
2494
+ classification: public
2495
+ reason: This LLDB C ABI function exposes structured type member metadata.
2496
+ exception_guard:
2497
+ kind: error_boundary
2498
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2499
+ lldb_type_member_get_bitfield_size_in_bits:
2500
+ classification: public
2501
+ reason: This LLDB C ABI function exposes structured type member metadata.
2502
+ exception_guard:
2503
+ kind: error_boundary
2504
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2505
+ lldb_type_member_get_name:
2506
+ classification: public
2507
+ reason: This LLDB C ABI function exposes structured type member metadata.
2508
+ exception_guard:
2509
+ kind: error_boundary
2510
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2511
+ lldb_type_member_get_offset_in_bits:
2512
+ classification: public
2513
+ reason: This LLDB C ABI function exposes structured type member metadata.
2514
+ exception_guard:
2515
+ kind: error_boundary
2516
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2517
+ lldb_type_member_get_offset_in_bytes:
2518
+ classification: public
2519
+ reason: This LLDB C ABI function exposes structured type member metadata.
2520
+ exception_guard:
2521
+ kind: error_boundary
2522
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2523
+ lldb_type_member_get_type:
2524
+ classification: public
2525
+ reason: This LLDB C ABI function exposes structured type member metadata.
2526
+ exception_guard:
2527
+ kind: error_boundary
2528
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2529
+ lldb_type_member_is_valid:
2530
+ classification: public
2531
+ reason: This LLDB C ABI function exposes structured type member metadata.
2532
+ exception_guard:
2533
+ kind: error_boundary
2534
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2535
+
2536
+ lldb_block_destroy:
2537
+ classification: public
2538
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2539
+ exception_guard:
2540
+ kind: error_boundary
2541
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2542
+ lldb_block_get_first_child:
2543
+ classification: public
2544
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2545
+ exception_guard:
2546
+ kind: error_boundary
2547
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2548
+ lldb_block_get_inlined_call_site_column:
2549
+ classification: public
2550
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2551
+ exception_guard:
2552
+ kind: error_boundary
2553
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2554
+ lldb_block_get_inlined_call_site_file:
2555
+ classification: public
2556
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2557
+ exception_guard:
2558
+ kind: error_boundary
2559
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2560
+ lldb_block_get_inlined_call_site_line:
2561
+ classification: public
2562
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2563
+ exception_guard:
2564
+ kind: error_boundary
2565
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2566
+ lldb_block_get_inlined_name:
2567
+ classification: public
2568
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2569
+ exception_guard:
2570
+ kind: error_boundary
2571
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2572
+ lldb_block_get_num_ranges:
2573
+ classification: public
2574
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2575
+ exception_guard:
2576
+ kind: error_boundary
2577
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2578
+ lldb_block_get_parent:
2579
+ classification: public
2580
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2581
+ exception_guard:
2582
+ kind: error_boundary
2583
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2584
+ lldb_block_get_range_end_address:
2585
+ classification: public
2586
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2587
+ exception_guard:
2588
+ kind: error_boundary
2589
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2590
+ lldb_block_get_range_start_address:
2591
+ classification: public
2592
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2593
+ exception_guard:
2594
+ kind: error_boundary
2595
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2596
+ lldb_block_get_sibling:
2597
+ classification: public
2598
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2599
+ exception_guard:
2600
+ kind: error_boundary
2601
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2602
+ lldb_block_is_valid:
2603
+ classification: public
2604
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2605
+ exception_guard:
2606
+ kind: error_boundary
2607
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2608
+ lldb_compile_unit_destroy:
2609
+ classification: public
2610
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2611
+ exception_guard:
2612
+ kind: error_boundary
2613
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2614
+ lldb_compile_unit_get_file_spec:
2615
+ classification: public
2616
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2617
+ exception_guard:
2618
+ kind: error_boundary
2619
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2620
+ lldb_compile_unit_get_line_entry_at_index:
2621
+ classification: public
2622
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2623
+ exception_guard:
2624
+ kind: error_boundary
2625
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2626
+ lldb_compile_unit_get_num_line_entries:
2627
+ classification: public
2628
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2629
+ exception_guard:
2630
+ kind: error_boundary
2631
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2632
+ lldb_compile_unit_is_valid:
2633
+ classification: public
2634
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2635
+ exception_guard:
2636
+ kind: error_boundary
2637
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2638
+ lldb_frame_get_block:
2639
+ classification: public
2640
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2641
+ exception_guard:
2642
+ kind: error_boundary
2643
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2644
+ lldb_frame_get_compile_unit:
2645
+ classification: public
2646
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2647
+ exception_guard:
2648
+ kind: error_boundary
2649
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2650
+ lldb_frame_get_function:
2651
+ classification: public
2652
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2653
+ exception_guard:
2654
+ kind: error_boundary
2655
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2656
+ lldb_frame_get_symbol:
2657
+ classification: public
2658
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2659
+ exception_guard:
2660
+ kind: error_boundary
2661
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2662
+ lldb_function_destroy:
2663
+ classification: public
2664
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2665
+ exception_guard:
2666
+ kind: error_boundary
2667
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2668
+ lldb_function_get_base_name:
2669
+ classification: public
2670
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2671
+ exception_guard:
2672
+ kind: error_boundary
2673
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2674
+ lldb_function_get_block:
2675
+ classification: public
2676
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2677
+ exception_guard:
2678
+ kind: error_boundary
2679
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2680
+ lldb_function_get_display_name:
2681
+ classification: public
2682
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2683
+ exception_guard:
2684
+ kind: error_boundary
2685
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2686
+ lldb_function_get_end_address:
2687
+ classification: public
2688
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2689
+ exception_guard:
2690
+ kind: error_boundary
2691
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2692
+ lldb_function_get_language:
2693
+ classification: public
2694
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2695
+ exception_guard:
2696
+ kind: error_boundary
2697
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2698
+ lldb_function_get_mangled_name:
2699
+ classification: public
2700
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2701
+ exception_guard:
2702
+ kind: error_boundary
2703
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2704
+ lldb_function_get_name:
2705
+ classification: public
2706
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2707
+ exception_guard:
2708
+ kind: error_boundary
2709
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2710
+ lldb_function_get_prologue_byte_size:
2711
+ classification: public
2712
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2713
+ exception_guard:
2714
+ kind: error_boundary
2715
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2716
+ lldb_function_get_start_address:
2717
+ classification: public
2718
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2719
+ exception_guard:
2720
+ kind: error_boundary
2721
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2722
+ lldb_function_get_type:
2723
+ classification: public
2724
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2725
+ exception_guard:
2726
+ kind: error_boundary
2727
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2728
+ lldb_function_is_optimized:
2729
+ classification: public
2730
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2731
+ exception_guard:
2732
+ kind: error_boundary
2733
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2734
+ lldb_function_is_valid:
2735
+ classification: public
2736
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2737
+ exception_guard:
2738
+ kind: error_boundary
2739
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2740
+ lldb_module_get_symbol_at_index:
2741
+ classification: public
2742
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2743
+ exception_guard:
2744
+ kind: error_boundary
2745
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2746
+ lldb_symbol_destroy:
2747
+ classification: public
2748
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2749
+ exception_guard:
2750
+ kind: error_boundary
2751
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2752
+ lldb_symbol_get_base_name:
2753
+ classification: public
2754
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2755
+ exception_guard:
2756
+ kind: error_boundary
2757
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2758
+ lldb_symbol_get_display_name:
2759
+ classification: public
2760
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2761
+ exception_guard:
2762
+ kind: error_boundary
2763
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2764
+ lldb_symbol_get_end_address:
2765
+ classification: public
2766
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2767
+ exception_guard:
2768
+ kind: error_boundary
2769
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2770
+ lldb_symbol_get_id:
2771
+ classification: public
2772
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2773
+ exception_guard:
2774
+ kind: error_boundary
2775
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2776
+ lldb_symbol_get_mangled_name:
2777
+ classification: public
2778
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2779
+ exception_guard:
2780
+ kind: error_boundary
2781
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2782
+ lldb_symbol_get_name:
2783
+ classification: public
2784
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2785
+ exception_guard:
2786
+ kind: error_boundary
2787
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2788
+ lldb_symbol_get_prologue_byte_size:
2789
+ classification: public
2790
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2791
+ exception_guard:
2792
+ kind: error_boundary
2793
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2794
+ lldb_symbol_get_size:
2795
+ classification: public
2796
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2797
+ exception_guard:
2798
+ kind: error_boundary
2799
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2800
+ lldb_symbol_get_start_address:
2801
+ classification: public
2802
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2803
+ exception_guard:
2804
+ kind: error_boundary
2805
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2806
+ lldb_symbol_get_type:
2807
+ classification: public
2808
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2809
+ exception_guard:
2810
+ kind: error_boundary
2811
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2812
+ lldb_symbol_get_value:
2813
+ classification: public
2814
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2815
+ exception_guard:
2816
+ kind: error_boundary
2817
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2818
+ lldb_symbol_is_valid:
2819
+ classification: public
2820
+ reason: This LLDB C ABI function exposes structured symbol and debug-scope objects.
2821
+ exception_guard:
2822
+ kind: error_boundary
2823
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2824
+
2825
+ lldb_frame_get_instruction_list:
2826
+ classification: public
2827
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2828
+ exception_guard:
2829
+ kind: error_boundary
2830
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2831
+ lldb_instruction_destroy:
2832
+ classification: public
2833
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2834
+ exception_guard:
2835
+ kind: error_boundary
2836
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2837
+ lldb_instruction_get_address:
2838
+ classification: public
2839
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2840
+ exception_guard:
2841
+ kind: error_boundary
2842
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2843
+ lldb_instruction_get_byte_size:
2844
+ classification: public
2845
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2846
+ exception_guard:
2847
+ kind: error_boundary
2848
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2849
+ lldb_instruction_get_bytes:
2850
+ classification: public
2851
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2852
+ exception_guard:
2853
+ kind: error_boundary
2854
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2855
+ lldb_instruction_get_comment:
2856
+ classification: public
2857
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2858
+ exception_guard:
2859
+ kind: error_boundary
2860
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2861
+ lldb_instruction_get_mnemonic:
2862
+ classification: public
2863
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2864
+ exception_guard:
2865
+ kind: error_boundary
2866
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2867
+ lldb_instruction_get_operands:
2868
+ classification: public
2869
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2870
+ exception_guard:
2871
+ kind: error_boundary
2872
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2873
+ lldb_instruction_is_valid:
2874
+ classification: public
2875
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2876
+ exception_guard:
2877
+ kind: error_boundary
2878
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2879
+ lldb_instruction_list_destroy:
2880
+ classification: public
2881
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2882
+ exception_guard:
2883
+ kind: error_boundary
2884
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2885
+ lldb_instruction_list_get_instruction_at_index:
2886
+ classification: public
2887
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2888
+ exception_guard:
2889
+ kind: error_boundary
2890
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2891
+ lldb_instruction_list_get_size:
2892
+ classification: public
2893
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2894
+ exception_guard:
2895
+ kind: error_boundary
2896
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2897
+ lldb_instruction_list_is_valid:
2898
+ classification: public
2899
+ reason: This LLDB C ABI function exposes structured instruction metadata.
2900
+ exception_guard:
2901
+ kind: error_boundary
2902
+ reason: Every export is noexcept and catches native C++ exceptions before crossing the C ABI.
2903
+
2904
+ ruby_methods:
2905
+ - function: lldb_frame_get_instruction_list
2906
+ file: lib/lldb/frame.rb
2907
+ method: instruction_list
2908
+ - function: lldb_instruction_list_get_size
2909
+ file: lib/lldb/instruction_list.rb
2910
+ method: size
2911
+ - function: lldb_instruction_list_get_instruction_at_index
2912
+ file: lib/lldb/instruction_list.rb
2913
+ method: to_a
2914
+ - function: lldb_instruction_get_address
2915
+ file: lib/lldb/instruction.rb
2916
+ method: address
2917
+ - function: lldb_instruction_get_mnemonic
2918
+ file: lib/lldb/instruction.rb
2919
+ method: mnemonic
2920
+ - function: lldb_instruction_get_operands
2921
+ file: lib/lldb/instruction.rb
2922
+ method: operands
2923
+ - function: lldb_instruction_get_comment
2924
+ file: lib/lldb/instruction.rb
2925
+ method: comment
2926
+ - function: lldb_instruction_get_byte_size
2927
+ file: lib/lldb/instruction.rb
2928
+ method: byte_size
2929
+ - function: lldb_instruction_get_bytes
2930
+ file: lib/lldb/instruction.rb
2931
+ method: bytes
2932
+ - function: lldb_module_get_symbol_at_index
2933
+ file: lib/lldb/module.rb
2934
+ method: symbol_at_index
2935
+ - function: lldb_frame_get_function
2936
+ file: lib/lldb/frame.rb
2937
+ method: function
2938
+ - function: lldb_frame_get_symbol
2939
+ file: lib/lldb/frame.rb
2940
+ method: symbol
2941
+ - function: lldb_frame_get_compile_unit
2942
+ file: lib/lldb/frame.rb
2943
+ method: compile_unit
2944
+ - function: lldb_frame_get_block
2945
+ file: lib/lldb/frame.rb
2946
+ method: block
2947
+ - function: lldb_symbol_get_name
2948
+ file: lib/lldb/symbol.rb
2949
+ method: name
2950
+ - function: lldb_symbol_get_start_address
2951
+ file: lib/lldb/symbol.rb
2952
+ method: start_address
2953
+ - function: lldb_symbol_get_end_address
2954
+ file: lib/lldb/symbol.rb
2955
+ method: end_address
2956
+ - function: lldb_function_get_name
2957
+ file: lib/lldb/function.rb
2958
+ method: name
2959
+ - function: lldb_function_get_start_address
2960
+ file: lib/lldb/function.rb
2961
+ method: start_address
2962
+ - function: lldb_function_get_end_address
2963
+ file: lib/lldb/function.rb
2964
+ method: end_address
2965
+ - function: lldb_function_get_block
2966
+ file: lib/lldb/function.rb
2967
+ method: block
2968
+ - function: lldb_compile_unit_get_file_spec
2969
+ file: lib/lldb/compile_unit.rb
2970
+ method: file_spec
2971
+ - function: lldb_compile_unit_get_line_entry_at_index
2972
+ file: lib/lldb/compile_unit.rb
2973
+ method: line_entry_at_index
2974
+ - function: lldb_block_get_inlined_name
2975
+ file: lib/lldb/block.rb
2976
+ method: inlined_name
2977
+ - function: lldb_block_get_parent
2978
+ file: lib/lldb/block.rb
2979
+ method: parent
2980
+ - function: lldb_block_get_first_child
2981
+ file: lib/lldb/block.rb
2982
+ method: first_child
2983
+ - function: lldb_type_get_field_at_index
2984
+ file: lib/lldb/type.rb
2985
+ method: field_at_index
2986
+ - function: lldb_type_get_direct_base_class_at_index
2987
+ file: lib/lldb/type.rb
2988
+ method: direct_base_class_at_index
2989
+ - function: lldb_type_get_virtual_base_class_at_index
2990
+ file: lib/lldb/type.rb
2991
+ method: virtual_base_class_at_index
2992
+ - function: lldb_type_member_get_name
2993
+ file: lib/lldb/type_member.rb
2994
+ method: name
2995
+ - function: lldb_type_member_get_type
2996
+ file: lib/lldb/type_member.rb
2997
+ method: type
2998
+ - function: lldb_type_member_get_offset_in_bytes
2999
+ file: lib/lldb/type_member.rb
3000
+ method: offset_in_bytes
3001
+ - function: lldb_type_member_get_offset_in_bits
3002
+ file: lib/lldb/type_member.rb
3003
+ method: offset_in_bits
3004
+ - function: lldb_type_member_get_bitfield_size_in_bits
3005
+ file: lib/lldb/type_member.rb
3006
+ method: bitfield_size_in_bits
3007
+ - function: lldb_address_create
3008
+ file: lib/lldb/address.rb
3009
+ method: initialize
3010
+ - function: lldb_address_get_file_address
3011
+ file: lib/lldb/address.rb
3012
+ method: file_address
3013
+ - function: lldb_address_get_load_address
3014
+ file: lib/lldb/address.rb
3015
+ method: load_address
3016
+ - function: lldb_address_get_offset
3017
+ file: lib/lldb/address.rb
3018
+ method: offset
3019
+ - function: lldb_address_get_line_entry
3020
+ file: lib/lldb/address.rb
3021
+ method: line_entry
3022
+ - function: lldb_file_spec_list_create
3023
+ file: lib/lldb/file_spec_list.rb
3024
+ method: initialize
3025
+ - function: lldb_file_spec_list_get_size
3026
+ file: lib/lldb/file_spec_list.rb
3027
+ method: size
3028
+ - function: lldb_file_spec_list_append
3029
+ file: lib/lldb/file_spec_list.rb
3030
+ method: append
3031
+ - function: lldb_file_spec_list_append_if_unique
3032
+ file: lib/lldb/file_spec_list.rb
3033
+ method: append_if_unique
3034
+ - function: lldb_file_spec_list_clear
3035
+ file: lib/lldb/file_spec_list.rb
3036
+ method: clear
3037
+ - function: lldb_file_spec_list_get_file_spec_at_index
3038
+ file: lib/lldb/file_spec_list.rb
3039
+ method: to_a
3040
+ - function: lldb_frame_get_line_entry
3041
+ file: lib/lldb/frame.rb
3042
+ method: line_entry
3043
+ - function: lldb_breakpoint_location_get_address
3044
+ file: lib/lldb/breakpoint_location.rb
3045
+ method: address
3046
+ - function: lldb_line_entry_get_start_address
3047
+ file: lib/lldb/line_entry.rb
3048
+ method: start_address
3049
+ - function: lldb_line_entry_get_end_address
3050
+ file: lib/lldb/line_entry.rb
3051
+ method: end_address
3052
+ - function: lldb_line_entry_get_file_spec
3053
+ file: lib/lldb/line_entry.rb
3054
+ method: file_spec
3055
+ - function: lldb_line_entry_get_line
3056
+ file: lib/lldb/line_entry.rb
3057
+ method: line
3058
+ - function: lldb_line_entry_get_column
3059
+ file: lib/lldb/line_entry.rb
3060
+ method: column
3061
+ - function: lldb_target_get_executable_file
3062
+ file: lib/lldb/target.rb
3063
+ method: executable_file
3064
+ - function: lldb_frame_get_file_spec
3065
+ file: lib/lldb/frame.rb
3066
+ method: file_spec
3067
+ - function: lldb_module_get_file
3068
+ file: lib/lldb/module.rb
3069
+ method: file
3070
+ - function: lldb_module_get_platform_file
3071
+ file: lib/lldb/module.rb
3072
+ method: platform_file