-
Notifications
You must be signed in to change notification settings - Fork 287
/
api_contents.brief
14561 lines (14561 loc) · 560 KB
/
api_contents.brief
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ida_hexrays (module)
ida_hexrays.ACFL_BLKOPT (variable)
ida_hexrays.ACFL_GLBDEL (variable)
ida_hexrays.ACFL_GLBPROP (variable)
ida_hexrays.ACFL_GUESS (variable)
ida_hexrays.ACFL_LOCOPT (variable)
ida_hexrays.ALLOW_UNUSED_LABELS (variable)
ida_hexrays.ANCHOR_BLKCMT (variable)
ida_hexrays.ANCHOR_CITEM (variable)
ida_hexrays.ANCHOR_ITP (variable)
ida_hexrays.ANCHOR_LVAR (variable)
ida_hexrays.ANY_FPSIZE (variable)
ida_hexrays.ANY_REGSIZE (variable)
ida_hexrays.BLT_0WAY (variable)
ida_hexrays.BLT_1WAY (variable)
ida_hexrays.BLT_2WAY (variable)
ida_hexrays.BLT_NONE (variable)
ida_hexrays.BLT_NWAY (variable)
ida_hexrays.BLT_STOP (variable)
ida_hexrays.BLT_XTRN (variable)
ida_hexrays.CALC_CURLY_BRACES (variable)
ida_hexrays.CFL_FINAL (variable)
ida_hexrays.CFL_HELPER (variable)
ida_hexrays.CFL_NORET (variable)
ida_hexrays.CFS_BOUNDS (variable)
ida_hexrays.CFS_LOCKED (variable)
ida_hexrays.CFS_LVARS_HIDDEN (variable)
ida_hexrays.CFS_TEXT (variable)
ida_hexrays.CHF_FAKE (variable)
ida_hexrays.CHF_INITED (variable)
ida_hexrays.CHF_OVER (variable)
ida_hexrays.CHF_PASSTHRU (variable)
ida_hexrays.CHF_REPLACED (variable)
ida_hexrays.CHF_TERM (variable)
ida_hexrays.CIT_COLLAPSED (variable)
ida_hexrays.CMAT_BUILT (variable)
ida_hexrays.CMAT_CASTED (variable)
ida_hexrays.CMAT_CPA (variable)
ida_hexrays.CMAT_FINAL (variable)
ida_hexrays.CMAT_NICE (variable)
ida_hexrays.CMAT_TRANS1 (variable)
ida_hexrays.CMAT_TRANS2 (variable)
ida_hexrays.CMAT_TRANS3 (variable)
ida_hexrays.CMAT_ZERO (variable)
ida_hexrays.CMT_ALL (variable)
ida_hexrays.CMT_BLOCK1 (variable)
ida_hexrays.CMT_BLOCK2 (variable)
ida_hexrays.CMT_FUNC (variable)
ida_hexrays.CMT_LVAR (variable)
ida_hexrays.CMT_NONE (variable)
ida_hexrays.CMT_TAIL (variable)
ida_hexrays.CPBLK_FAST (variable)
ida_hexrays.CPBLK_MINREF (variable)
ida_hexrays.CPBLK_OPTJMP (variable)
ida_hexrays.CV_FAST (variable)
ida_hexrays.CV_INSNS (variable)
ida_hexrays.CV_PARENTS (variable)
ida_hexrays.CV_POST (variable)
ida_hexrays.CV_PRUNE (variable)
ida_hexrays.CV_RESTART (variable)
ida_hexrays.DECOMP_ALL_BLKS (variable)
ida_hexrays.DECOMP_GXREFS_DEFLT (variable)
ida_hexrays.DECOMP_GXREFS_FORCE (variable)
ida_hexrays.DECOMP_GXREFS_NOUPD (variable)
ida_hexrays.DECOMP_NO_CACHE (variable)
ida_hexrays.DECOMP_NO_FRAME (variable)
ida_hexrays.DECOMP_NO_HIDE (variable)
ida_hexrays.DECOMP_NO_WAIT (variable)
ida_hexrays.DECOMP_NO_XREFS (variable)
ida_hexrays.DECOMP_VOID_MBA (variable)
ida_hexrays.DECOMP_WARNINGS (variable)
ida_hexrays.DecompilationFailure (class)
ida_hexrays.EQ_CMPDEST (variable)
ida_hexrays.EQ_IGNCODE (variable)
ida_hexrays.EQ_IGNSIZE (variable)
ida_hexrays.EQ_OPTINSN (variable)
ida_hexrays.EXFL_ALL (variable)
ida_hexrays.EXFL_ALONE (variable)
ida_hexrays.EXFL_CPADONE (variable)
ida_hexrays.EXFL_CSTR (variable)
ida_hexrays.EXFL_FPOP (variable)
ida_hexrays.EXFL_JUMPOUT (variable)
ida_hexrays.EXFL_LVALUE (variable)
ida_hexrays.EXFL_PARTIAL (variable)
ida_hexrays.EXFL_UNDEF (variable)
ida_hexrays.EXFL_VFTABLE (variable)
ida_hexrays.FCI_DEAD (variable)
ida_hexrays.FCI_EXPLOCS (variable)
ida_hexrays.FCI_FINAL (variable)
ida_hexrays.FCI_HASCALL (variable)
ida_hexrays.FCI_HASFMT (variable)
ida_hexrays.FCI_NORET (variable)
ida_hexrays.FCI_NOSIDE (variable)
ida_hexrays.FCI_PROP (variable)
ida_hexrays.FCI_PURE (variable)
ida_hexrays.FCI_SPLOK (variable)
ida_hexrays.FD_BACKWARD (variable)
ida_hexrays.FD_DEF (variable)
ida_hexrays.FD_DIRTY (variable)
ida_hexrays.FD_FORWARD (variable)
ida_hexrays.FD_USE (variable)
ida_hexrays.FORBID_UNUSED_LABELS (variable)
ida_hexrays.GCA_ALLOC (variable)
ida_hexrays.GCA_EMPTY (variable)
ida_hexrays.GCA_NALLOC (variable)
ida_hexrays.GCA_OFIRST (variable)
ida_hexrays.GCA_OLAST (variable)
ida_hexrays.GCA_SPEC (variable)
ida_hexrays.GCO_DEF (variable)
ida_hexrays.GCO_REG (variable)
ida_hexrays.GCO_STK (variable)
ida_hexrays.GCO_USE (variable)
ida_hexrays.GC_ASR (variable)
ida_hexrays.GC_DIRTY_ALL (variable)
ida_hexrays.GC_END (variable)
ida_hexrays.GC_REGS_AND_STKVARS (variable)
ida_hexrays.GC_XDSU (variable)
ida_hexrays.GLN_ALL (variable)
ida_hexrays.GLN_CURRENT (variable)
ida_hexrays.GLN_GOTO_TARGET (variable)
ida_hexrays.Hexrays_Hooks (class)
ida_hexrays.Hexrays_Hooks.__disown__ (method)
ida_hexrays.Hexrays_Hooks.__init__ (method)
ida_hexrays.Hexrays_Hooks.build_callinfo (method)
ida_hexrays.Hexrays_Hooks.callinfo_built (method)
ida_hexrays.Hexrays_Hooks.calls_done (method)
ida_hexrays.Hexrays_Hooks.close_pseudocode (method)
ida_hexrays.Hexrays_Hooks.cmt_changed (method)
ida_hexrays.Hexrays_Hooks.combine (method)
ida_hexrays.Hexrays_Hooks.create_hint (method)
ida_hexrays.Hexrays_Hooks.curpos (method)
ida_hexrays.Hexrays_Hooks.double_click (method)
ida_hexrays.Hexrays_Hooks.flowchart (method)
ida_hexrays.Hexrays_Hooks.func_printed (method)
ida_hexrays.Hexrays_Hooks.glbopt (method)
ida_hexrays.Hexrays_Hooks.hook (method)
ida_hexrays.Hexrays_Hooks.interr (method)
ida_hexrays.Hexrays_Hooks.keyboard (method)
ida_hexrays.Hexrays_Hooks.locopt (method)
ida_hexrays.Hexrays_Hooks.lvar_cmt_changed (method)
ida_hexrays.Hexrays_Hooks.lvar_mapping_changed (method)
ida_hexrays.Hexrays_Hooks.lvar_name_changed (method)
ida_hexrays.Hexrays_Hooks.lvar_type_changed (method)
ida_hexrays.Hexrays_Hooks.maturity (method)
ida_hexrays.Hexrays_Hooks.microcode (method)
ida_hexrays.Hexrays_Hooks.open_pseudocode (method)
ida_hexrays.Hexrays_Hooks.populating_popup (method)
ida_hexrays.Hexrays_Hooks.prealloc (method)
ida_hexrays.Hexrays_Hooks.preoptimized (method)
ida_hexrays.Hexrays_Hooks.print_func (method)
ida_hexrays.Hexrays_Hooks.prolog (method)
ida_hexrays.Hexrays_Hooks.refresh_pseudocode (method)
ida_hexrays.Hexrays_Hooks.resolve_stkaddrs (method)
ida_hexrays.Hexrays_Hooks.right_click (method)
ida_hexrays.Hexrays_Hooks.stkpnts (method)
ida_hexrays.Hexrays_Hooks.structural (method)
ida_hexrays.Hexrays_Hooks.switch_pseudocode (method)
ida_hexrays.Hexrays_Hooks.text_ready (method)
ida_hexrays.Hexrays_Hooks.unhook (method)
ida_hexrays.IPROP_CLNPOP (variable)
ida_hexrays.IPROP_COMBINED (variable)
ida_hexrays.IPROP_DONT_COMB (variable)
ida_hexrays.IPROP_DONT_PROP (variable)
ida_hexrays.IPROP_EXTSTX (variable)
ida_hexrays.IPROP_FARCALL (variable)
ida_hexrays.IPROP_FPINSN (variable)
ida_hexrays.IPROP_IGNLOWSRC (variable)
ida_hexrays.IPROP_INV_JX (variable)
ida_hexrays.IPROP_MBARRIER (variable)
ida_hexrays.IPROP_MULTI_MOV (variable)
ida_hexrays.IPROP_OPTIONAL (variable)
ida_hexrays.IPROP_PERSIST (variable)
ida_hexrays.IPROP_SPLIT (variable)
ida_hexrays.IPROP_SPLIT1 (variable)
ida_hexrays.IPROP_SPLIT2 (variable)
ida_hexrays.IPROP_SPLIT4 (variable)
ida_hexrays.IPROP_SPLIT8 (variable)
ida_hexrays.IPROP_TAILCALL (variable)
ida_hexrays.IPROP_UNMERGED (variable)
ida_hexrays.IPROP_WAS_NORET (variable)
ida_hexrays.IPROP_WILDMATCH (variable)
ida_hexrays.ITP_ARG1 (variable)
ida_hexrays.ITP_ASM (variable)
ida_hexrays.ITP_BLOCK1 (variable)
ida_hexrays.ITP_BLOCK2 (variable)
ida_hexrays.ITP_BRACE2 (variable)
ida_hexrays.ITP_CASE (variable)
ida_hexrays.ITP_COLON (variable)
ida_hexrays.ITP_CURLY1 (variable)
ida_hexrays.ITP_CURLY2 (variable)
ida_hexrays.ITP_DO (variable)
ida_hexrays.ITP_ELSE (variable)
ida_hexrays.ITP_EMPTY (variable)
ida_hexrays.ITP_SEMI (variable)
ida_hexrays.ITP_SIGN (variable)
ida_hexrays.LOCOPT_ALL (variable)
ida_hexrays.LOCOPT_REFINE (variable)
ida_hexrays.LOCOPT_REFINE2 (variable)
ida_hexrays.LVINF_KEEP (variable)
ida_hexrays.LVINF_NOMAP (variable)
ida_hexrays.LVINF_NOPTR (variable)
ida_hexrays.LVINF_SPLIT (variable)
ida_hexrays.LVINF_UNUSED (variable)
ida_hexrays.MBA2_ARGIDX_OK (variable)
ida_hexrays.MBA2_ARGIDX_SORTED (variable)
ida_hexrays.MBA2_CODE16_BIT (variable)
ida_hexrays.MBA2_DONT_VERIFY (variable)
ida_hexrays.MBA2_HAS_OUTLINES (variable)
ida_hexrays.MBA2_IS_CTR (variable)
ida_hexrays.MBA2_IS_DTR (variable)
ida_hexrays.MBA2_LVARNAMES_OK (variable)
ida_hexrays.MBA2_LVARS_RENAMED (variable)
ida_hexrays.MBA2_NO_DUP_CALLS (variable)
ida_hexrays.MBA2_NO_DUP_LVARS (variable)
ida_hexrays.MBA2_NO_FRAME (variable)
ida_hexrays.MBA2_OVER_CHAINS (variable)
ida_hexrays.MBA2_PROP_COMPLEX (variable)
ida_hexrays.MBA2_STACK_RETVAL (variable)
ida_hexrays.MBA2_UNDEF_RETVAR (variable)
ida_hexrays.MBA2_VALRNG_DONE (variable)
ida_hexrays.MBA_ASRPROP (variable)
ida_hexrays.MBA_ASRTOK (variable)
ida_hexrays.MBA_CALLS (variable)
ida_hexrays.MBA_CHVARS (variable)
ida_hexrays.MBA_CMBBLK (variable)
ida_hexrays.MBA_CMNSTK (variable)
ida_hexrays.MBA_COLGDL (variable)
ida_hexrays.MBA_DELPAIRS (variable)
ida_hexrays.MBA_GLBOPT (variable)
ida_hexrays.MBA_INSGDL (variable)
ida_hexrays.MBA_LOADED (variable)
ida_hexrays.MBA_LVARS0 (variable)
ida_hexrays.MBA_LVARS1 (variable)
ida_hexrays.MBA_NICE (variable)
ida_hexrays.MBA_NOFUNC (variable)
ida_hexrays.MBA_NUMADDR (variable)
ida_hexrays.MBA_PASSREGS (variable)
ida_hexrays.MBA_PATTERN (variable)
ida_hexrays.MBA_PRCDEFS (variable)
ida_hexrays.MBA_PREOPT (variable)
ida_hexrays.MBA_REFINE (variable)
ida_hexrays.MBA_RETFP (variable)
ida_hexrays.MBA_RETREF (variable)
ida_hexrays.MBA_SAVRST (variable)
ida_hexrays.MBA_SHORT (variable)
ida_hexrays.MBA_SPLINFO (variable)
ida_hexrays.MBA_THUNK (variable)
ida_hexrays.MBA_VALNUM (variable)
ida_hexrays.MBA_WINGR32 (variable)
ida_hexrays.MBL_BACKPROP (variable)
ida_hexrays.MBL_CALL (variable)
ida_hexrays.MBL_COMB (variable)
ida_hexrays.MBL_DEAD (variable)
ida_hexrays.MBL_DMT64 (variable)
ida_hexrays.MBL_DSLOT (variable)
ida_hexrays.MBL_FAKE (variable)
ida_hexrays.MBL_GOTO (variable)
ida_hexrays.MBL_INCONST (variable)
ida_hexrays.MBL_KEEP (variable)
ida_hexrays.MBL_LIST (variable)
ida_hexrays.MBL_NONFAKE (variable)
ida_hexrays.MBL_NORET (variable)
ida_hexrays.MBL_PRIV (variable)
ida_hexrays.MBL_PROP (variable)
ida_hexrays.MBL_PUSH (variable)
ida_hexrays.MBL_TCAL (variable)
ida_hexrays.MBL_VALRANGES (variable)
ida_hexrays.MERR_BADARCH (variable)
ida_hexrays.MERR_BADBLK (variable)
ida_hexrays.MERR_BADCALL (variable)
ida_hexrays.MERR_BADFRAME (variable)
ida_hexrays.MERR_BADIDB (variable)
ida_hexrays.MERR_BADRANGES (variable)
ida_hexrays.MERR_BADSP (variable)
ida_hexrays.MERR_BITNESS (variable)
ida_hexrays.MERR_BLOCK (variable)
ida_hexrays.MERR_BUSY (variable)
ida_hexrays.MERR_CANCELED (variable)
ida_hexrays.MERR_COMPLEX (variable)
ida_hexrays.MERR_DSLOT (variable)
ida_hexrays.MERR_EXCEPTION (variable)
ida_hexrays.MERR_EXTERN (variable)
ida_hexrays.MERR_FARPTR (variable)
ida_hexrays.MERR_FUNCSIZE (variable)
ida_hexrays.MERR_HUGESTACK (variable)
ida_hexrays.MERR_INSN (variable)
ida_hexrays.MERR_INTERR (variable)
ida_hexrays.MERR_LICENSE (variable)
ida_hexrays.MERR_LOOP (variable)
ida_hexrays.MERR_LVARS (variable)
ida_hexrays.MERR_MEM (variable)
ida_hexrays.MERR_OK (variable)
ida_hexrays.MERR_ONLY32 (variable)
ida_hexrays.MERR_ONLY64 (variable)
ida_hexrays.MERR_OVERLAP (variable)
ida_hexrays.MERR_PARTINIT (variable)
ida_hexrays.MERR_PROLOG (variable)
ida_hexrays.MERR_RECDEPTH (variable)
ida_hexrays.MERR_REDO (variable)
ida_hexrays.MERR_SIZEOF (variable)
ida_hexrays.MERR_STOP (variable)
ida_hexrays.MERR_SWITCH (variable)
ida_hexrays.MERR_UNKTYPE (variable)
ida_hexrays.MLI_CLR_FLAGS (variable)
ida_hexrays.MLI_CMT (variable)
ida_hexrays.MLI_NAME (variable)
ida_hexrays.MLI_SET_FLAGS (variable)
ida_hexrays.MLI_TYPE (variable)
ida_hexrays.MMAT_CALLS (variable)
ida_hexrays.MMAT_GENERATED (variable)
ida_hexrays.MMAT_GLBOPT1 (variable)
ida_hexrays.MMAT_GLBOPT2 (variable)
ida_hexrays.MMAT_GLBOPT3 (variable)
ida_hexrays.MMAT_LOCOPT (variable)
ida_hexrays.MMAT_LVARS (variable)
ida_hexrays.MMAT_PREOPTIMIZED (variable)
ida_hexrays.MMAT_ZERO (variable)
ida_hexrays.MMIDX_GLBHIGH (variable)
ida_hexrays.MMIDX_GLBLOW (variable)
ida_hexrays.NALT_VD (variable)
ida_hexrays.NF_BINVDONE (variable)
ida_hexrays.NF_BITNOT (variable)
ida_hexrays.NF_FIXED (variable)
ida_hexrays.NF_NEGATE (variable)
ida_hexrays.NF_NEGDONE (variable)
ida_hexrays.NF_VALID (variable)
ida_hexrays.NOSIZE (variable)
ida_hexrays.NO_CURLY_BRACES (variable)
ida_hexrays.NO_SIDEFF (variable)
ida_hexrays.ONLY_SIDEFF (variable)
ida_hexrays.OPF_NEW_WINDOW (variable)
ida_hexrays.OPF_NO_WAIT (variable)
ida_hexrays.OPF_REUSE (variable)
ida_hexrays.OPF_REUSE_ACTIVE (variable)
ida_hexrays.OPROP_FLOAT (variable)
ida_hexrays.OPROP_IMPDONE (variable)
ida_hexrays.OPROP_LOWADDR (variable)
ida_hexrays.OPROP_UDEFVAL (variable)
ida_hexrays.OPROP_UDT (variable)
ida_hexrays.OPTI_ADDREXPRS (variable)
ida_hexrays.OPTI_COMBINSNS (variable)
ida_hexrays.OPTI_MINSTKREF (variable)
ida_hexrays.OPTI_NO_LDXOPT (variable)
ida_hexrays.RETRIEVE_ALWAYS (variable)
ida_hexrays.RETRIEVE_ONCE (variable)
ida_hexrays.ROLE_3WAYCMP0 (variable)
ida_hexrays.ROLE_3WAYCMP1 (variable)
ida_hexrays.ROLE_ABS (variable)
ida_hexrays.ROLE_ALLOCA (variable)
ida_hexrays.ROLE_BITTEST (variable)
ida_hexrays.ROLE_BITTESTANDCOMPLEMENT (variable)
ida_hexrays.ROLE_BITTESTANDRESET (variable)
ida_hexrays.ROLE_BITTESTANDSET (variable)
ida_hexrays.ROLE_BSWAP (variable)
ida_hexrays.ROLE_BUG (variable)
ida_hexrays.ROLE_CFSUB3 (variable)
ida_hexrays.ROLE_CONTAINING_RECORD (variable)
ida_hexrays.ROLE_EMPTY (variable)
ida_hexrays.ROLE_FASTFAIL (variable)
ida_hexrays.ROLE_IS_MUL_OK (variable)
ida_hexrays.ROLE_MEMCPY (variable)
ida_hexrays.ROLE_MEMSET (variable)
ida_hexrays.ROLE_MEMSET32 (variable)
ida_hexrays.ROLE_MEMSET64 (variable)
ida_hexrays.ROLE_OFSUB3 (variable)
ida_hexrays.ROLE_PRESENT (variable)
ida_hexrays.ROLE_READFLAGS (variable)
ida_hexrays.ROLE_ROL (variable)
ida_hexrays.ROLE_ROR (variable)
ida_hexrays.ROLE_SATURATED_MUL (variable)
ida_hexrays.ROLE_SSE_CMP4 (variable)
ida_hexrays.ROLE_SSE_CMP8 (variable)
ida_hexrays.ROLE_STRCAT (variable)
ida_hexrays.ROLE_STRCPY (variable)
ida_hexrays.ROLE_STRLEN (variable)
ida_hexrays.ROLE_TAIL (variable)
ida_hexrays.ROLE_UNK (variable)
ida_hexrays.ROLE_VA_ARG (variable)
ida_hexrays.ROLE_VA_COPY (variable)
ida_hexrays.ROLE_VA_END (variable)
ida_hexrays.ROLE_VA_START (variable)
ida_hexrays.ROLE_WCSCAT (variable)
ida_hexrays.ROLE_WCSCPY (variable)
ida_hexrays.ROLE_WCSLEN (variable)
ida_hexrays.ROLE_WMEMCPY (variable)
ida_hexrays.ROLE_WMEMSET (variable)
ida_hexrays.SHINS_LDXEA (variable)
ida_hexrays.SHINS_NUMADDR (variable)
ida_hexrays.SHINS_SHORT (variable)
ida_hexrays.SHINS_VALNUM (variable)
ida_hexrays.ULV_PRECISE_DEFEA (variable)
ida_hexrays.USE_CURLY_BRACES (variable)
ida_hexrays.USE_KEYBOARD (variable)
ida_hexrays.USE_MOUSE (variable)
ida_hexrays.VDI_EXPR (variable)
ida_hexrays.VDI_FUNC (variable)
ida_hexrays.VDI_LVAR (variable)
ida_hexrays.VDI_NONE (variable)
ida_hexrays.VDI_TAIL (variable)
ida_hexrays.VDRUN_APPEND (variable)
ida_hexrays.VDRUN_CMDLINE (variable)
ida_hexrays.VDRUN_LUMINA (variable)
ida_hexrays.VDRUN_MAYSTOP (variable)
ida_hexrays.VDRUN_NEWFILE (variable)
ida_hexrays.VDRUN_ONLYNEW (variable)
ida_hexrays.VDRUN_SENDIDB (variable)
ida_hexrays.VDRUN_SILENT (variable)
ida_hexrays.VDRUN_STATS (variable)
ida_hexrays.VDUI_VALID (variable)
ida_hexrays.VDUI_VISIBLE (variable)
ida_hexrays.VR_AT_END (variable)
ida_hexrays.VR_AT_START (variable)
ida_hexrays.VR_EXACT (variable)
ida_hexrays.WARN_ADDR_OUTARGS (variable)
ida_hexrays.WARN_ARRAY_INARG (variable)
ida_hexrays.WARN_BAD_CALL_SP (variable)
ida_hexrays.WARN_BAD_FIELD_TYPE (variable)
ida_hexrays.WARN_BAD_INSN (variable)
ida_hexrays.WARN_BAD_MAPDST (variable)
ida_hexrays.WARN_BAD_PURGED (variable)
ida_hexrays.WARN_BAD_RETVAR (variable)
ida_hexrays.WARN_BAD_SHADOW (variable)
ida_hexrays.WARN_BAD_SP (variable)
ida_hexrays.WARN_BAD_STD_TYPE (variable)
ida_hexrays.WARN_BAD_STKPNT (variable)
ida_hexrays.WARN_BAD_STROFF (variable)
ida_hexrays.WARN_BAD_VALRNG (variable)
ida_hexrays.WARN_BAD_VARSIZE (variable)
ida_hexrays.WARN_CBUILD_LOOPS (variable)
ida_hexrays.WARN_CR_BADOFF (variable)
ida_hexrays.WARN_CR_NOFIELD (variable)
ida_hexrays.WARN_DEP_UNK_CALLS (variable)
ida_hexrays.WARN_EXP_LINVAR (variable)
ida_hexrays.WARN_FIXED_MACRO (variable)
ida_hexrays.WARN_FRAG_LVAR (variable)
ida_hexrays.WARN_GUESSED_TYPE (variable)
ida_hexrays.WARN_HUGE_STKOFF (variable)
ida_hexrays.WARN_ILL_ELLIPSIS (variable)
ida_hexrays.WARN_ILL_FPU_STACK (variable)
ida_hexrays.WARN_ILL_FUNCTYPE (variable)
ida_hexrays.WARN_ILL_PURGED (variable)
ida_hexrays.WARN_JUMPOUT (variable)
ida_hexrays.WARN_MAX (variable)
ida_hexrays.WARN_MAX_ARGS (variable)
ida_hexrays.WARN_MISSED_SWITCH (variable)
ida_hexrays.WARN_MUST_RET_FP (variable)
ida_hexrays.WARN_NO_SAVE_REST (variable)
ida_hexrays.WARN_ODD_ABI (variable)
ida_hexrays.WARN_ODD_ADDR_USE (variable)
ida_hexrays.WARN_ODD_INPUT_REG (variable)
ida_hexrays.WARN_OPT_USELESS_JCND (variable)
ida_hexrays.WARN_OPT_VALRNG (variable)
ida_hexrays.WARN_OPT_VALRNG2 (variable)
ida_hexrays.WARN_OPT_VALRNG3 (variable)
ida_hexrays.WARN_RET_LOCREF (variable)
ida_hexrays.WARN_SELFREF_PROP (variable)
ida_hexrays.WARN_UNALIGNED_ARG (variable)
ida_hexrays.WARN_UNBALANCED_STACK (variable)
ida_hexrays.WARN_UNDEF_LVAR (variable)
ida_hexrays.WARN_UNINITED_REG (variable)
ida_hexrays.WARN_UNSUPP_REG (variable)
ida_hexrays.WARN_VARARG_MANY (variable)
ida_hexrays.WARN_VARARG_NOSTK (variable)
ida_hexrays.WARN_VARARG_REGS (variable)
ida_hexrays.WARN_VARARG_TCAL (variable)
ida_hexrays.WARN_WIDEN_CHAINS (variable)
ida_hexrays.WARN_WOULD_OVERLAP (variable)
ida_hexrays.WARN_WRITE_CONST (variable)
ida_hexrays.WARN_WRONG_VA_OFF (variable)
ida_hexrays.WITH_SIDEFF (variable)
ida_hexrays.__cbhooks_t (class)
ida_hexrays.__cbhooks_t.__init__ (method)
ida_hexrays.__cbhooks_t.close_pseudocode (method)
ida_hexrays.__cbhooks_t.create_hint (method)
ida_hexrays.__cbhooks_t.curpos (method)
ida_hexrays.__cbhooks_t.double_click (method)
ida_hexrays.__cbhooks_t.func_printed (method)
ida_hexrays.__cbhooks_t.interr (method)
ida_hexrays.__cbhooks_t.keyboard (method)
ida_hexrays.__cbhooks_t.maturity (method)
ida_hexrays.__cbhooks_t.open_pseudocode (method)
ida_hexrays.__cbhooks_t.populating_popup (method)
ida_hexrays.__cbhooks_t.print_func (method)
ida_hexrays.__cbhooks_t.refresh_pseudocode (method)
ida_hexrays.__cbhooks_t.right_click (method)
ida_hexrays.__cbhooks_t.switch_pseudocode (method)
ida_hexrays.__cbhooks_t.text_ready (method)
ida_hexrays._call_with_transferrable_ownership (function)
ida_hexrays._kludge_force_declare_TPopupMenu (function)
ida_hexrays._ll_call_helper (function)
ida_hexrays._ll_create_helper (function)
ida_hexrays._ll_dereference (function)
ida_hexrays._ll_lnot (function)
ida_hexrays._ll_make_num (function)
ida_hexrays._ll_make_ref (function)
ida_hexrays._ll_new_block (function)
ida_hexrays._map_as_dict (function)
ida_hexrays._map_as_dict._map___contains__ (function)
ida_hexrays._map_as_dict._map___delitem__ (function)
ida_hexrays._map_as_dict._map___getitem__ (function)
ida_hexrays._map_as_dict._map___iter__ (function)
ida_hexrays._map_as_dict._map___setitem__ (function)
ida_hexrays._map_as_dict._map_clear (function)
ida_hexrays._map_as_dict._map_copy (function)
ida_hexrays._map_as_dict._map_get (function)
ida_hexrays._map_as_dict._map_has_key (function)
ida_hexrays._map_as_dict._map_items (function)
ida_hexrays._map_as_dict._map_iteritems (function)
ida_hexrays._map_as_dict._map_iterkeys (function)
ida_hexrays._map_as_dict._map_itervalues (function)
ida_hexrays._map_as_dict._map_keys (function)
ida_hexrays._map_as_dict._map_pop (function)
ida_hexrays._map_as_dict._map_popitem (function)
ida_hexrays._map_as_dict._map_setdefault (function)
ida_hexrays._map_as_dict._map_values (function)
ida_hexrays.accepts_small_udts (function)
ida_hexrays.accepts_udts (function)
ida_hexrays.arglocs_overlap (function)
ida_hexrays.array_of_bitsets (class)
ida_hexrays.array_of_bitsets.__eq__ (method)
ida_hexrays.array_of_bitsets.__getitem__ (method)
ida_hexrays.array_of_bitsets.__init__ (method)
ida_hexrays.array_of_bitsets.__len__ (method)
ida_hexrays.array_of_bitsets.__ne__ (method)
ida_hexrays.array_of_bitsets.__setitem__ (method)
ida_hexrays.array_of_bitsets._del (method)
ida_hexrays.array_of_bitsets.add_unique (method)
ida_hexrays.array_of_bitsets.at (method)
ida_hexrays.array_of_bitsets.begin (method)
ida_hexrays.array_of_bitsets.capacity (method)
ida_hexrays.array_of_bitsets.clear (method)
ida_hexrays.array_of_bitsets.empty (method)
ida_hexrays.array_of_bitsets.end (method)
ida_hexrays.array_of_bitsets.erase (method)
ida_hexrays.array_of_bitsets.extract (method)
ida_hexrays.array_of_bitsets.find (method)
ida_hexrays.array_of_bitsets.grow (method)
ida_hexrays.array_of_bitsets.has (method)
ida_hexrays.array_of_bitsets.inject (method)
ida_hexrays.array_of_bitsets.insert (method)
ida_hexrays.array_of_bitsets.pop_back (method)
ida_hexrays.array_of_bitsets.push_back (method)
ida_hexrays.array_of_bitsets.qclear (method)
ida_hexrays.array_of_bitsets.reserve (method)
ida_hexrays.array_of_bitsets.resize (method)
ida_hexrays.array_of_bitsets.size (method)
ida_hexrays.array_of_bitsets.swap (method)
ida_hexrays.array_of_bitsets.truncate (method)
ida_hexrays.array_of_ivlsets (class)
ida_hexrays.array_of_ivlsets.__eq__ (method)
ida_hexrays.array_of_ivlsets.__getitem__ (method)
ida_hexrays.array_of_ivlsets.__init__ (method)
ida_hexrays.array_of_ivlsets.__len__ (method)
ida_hexrays.array_of_ivlsets.__ne__ (method)
ida_hexrays.array_of_ivlsets.__setitem__ (method)
ida_hexrays.array_of_ivlsets._del (method)
ida_hexrays.array_of_ivlsets.add_unique (method)
ida_hexrays.array_of_ivlsets.at (method)
ida_hexrays.array_of_ivlsets.begin (method)
ida_hexrays.array_of_ivlsets.capacity (method)
ida_hexrays.array_of_ivlsets.clear (method)
ida_hexrays.array_of_ivlsets.empty (method)
ida_hexrays.array_of_ivlsets.end (method)
ida_hexrays.array_of_ivlsets.erase (method)
ida_hexrays.array_of_ivlsets.extract (method)
ida_hexrays.array_of_ivlsets.find (method)
ida_hexrays.array_of_ivlsets.grow (method)
ida_hexrays.array_of_ivlsets.has (method)
ida_hexrays.array_of_ivlsets.inject (method)
ida_hexrays.array_of_ivlsets.insert (method)
ida_hexrays.array_of_ivlsets.pop_back (method)
ida_hexrays.array_of_ivlsets.push_back (method)
ida_hexrays.array_of_ivlsets.qclear (method)
ida_hexrays.array_of_ivlsets.reserve (method)
ida_hexrays.array_of_ivlsets.resize (method)
ida_hexrays.array_of_ivlsets.size (method)
ida_hexrays.array_of_ivlsets.swap (method)
ida_hexrays.array_of_ivlsets.truncate (method)
ida_hexrays.asgop (function)
ida_hexrays.asgop_revert (function)
ida_hexrays.bit_bound_t (class)
ida_hexrays.bit_bound_t.__init__ (method)
ida_hexrays.bitset_t (class)
ida_hexrays.bitset_t.__eq__ (method)
ida_hexrays.bitset_t.__ge__ (method)
ida_hexrays.bitset_t.__gt__ (method)
ida_hexrays.bitset_t.__init__ (method)
ida_hexrays.bitset_t.__iter__ (method)
ida_hexrays.bitset_t.__le__ (method)
ida_hexrays.bitset_t.__lt__ (method)
ida_hexrays.bitset_t.__ne__ (method)
ida_hexrays.bitset_t.add (method)
ida_hexrays.bitset_t.back (method)
ida_hexrays.bitset_t.begin (method)
ida_hexrays.bitset_t.clear (method)
ida_hexrays.bitset_t.compare (method)
ida_hexrays.bitset_t.copy (method)
ida_hexrays.bitset_t.count (method)
ida_hexrays.bitset_t.cut_at (method)
ida_hexrays.bitset_t.dstr (method)
ida_hexrays.bitset_t.empty (method)
ida_hexrays.bitset_t.end (method)
ida_hexrays.bitset_t.fill_with_ones (method)
ida_hexrays.bitset_t.front (method)
ida_hexrays.bitset_t.has (method)
ida_hexrays.bitset_t.has_all (method)
ida_hexrays.bitset_t.has_any (method)
ida_hexrays.bitset_t.has_common (method)
ida_hexrays.bitset_t.inc (method)
ida_hexrays.bitset_t.includes (method)
ida_hexrays.bitset_t.intersect (method)
ida_hexrays.bitset_t.is_subset_of (method)
ida_hexrays.bitset_t.itat (method)
ida_hexrays.bitset_t.itv (method)
ida_hexrays.bitset_t.last (method)
ida_hexrays.bitset_t.shift_down (method)
ida_hexrays.bitset_t.sub (method)
ida_hexrays.bitset_t.swap (method)
ida_hexrays.block_chains_begin (function)
ida_hexrays.block_chains_clear (function)
ida_hexrays.block_chains_end (function)
ida_hexrays.block_chains_erase (function)
ida_hexrays.block_chains_find (function)
ida_hexrays.block_chains_free (function)
ida_hexrays.block_chains_get (function)
ida_hexrays.block_chains_insert (function)
ida_hexrays.block_chains_iterator_t (class)
ida_hexrays.block_chains_iterator_t.__eq__ (method)
ida_hexrays.block_chains_iterator_t.__init__ (method)
ida_hexrays.block_chains_iterator_t.__ne__ (method)
ida_hexrays.block_chains_new (function)
ida_hexrays.block_chains_next (function)
ida_hexrays.block_chains_prev (function)
ida_hexrays.block_chains_size (function)
ida_hexrays.block_chains_t (class)
ida_hexrays.block_chains_t.__init__ (method)
ida_hexrays.block_chains_t._print (method)
ida_hexrays.block_chains_t.dstr (method)
ida_hexrays.block_chains_t.get_chain (method)
ida_hexrays.block_chains_t.get_reg_chain (method)
ida_hexrays.block_chains_t.get_stk_chain (method)
ida_hexrays.block_chains_vec_t (class)
ida_hexrays.block_chains_vec_t.__getitem__ (method)
ida_hexrays.block_chains_vec_t.__init__ (method)
ida_hexrays.block_chains_vec_t.__len__ (method)
ida_hexrays.block_chains_vec_t.__setitem__ (method)
ida_hexrays.block_chains_vec_t.at (method)
ida_hexrays.block_chains_vec_t.begin (method)
ida_hexrays.block_chains_vec_t.capacity (method)
ida_hexrays.block_chains_vec_t.clear (method)
ida_hexrays.block_chains_vec_t.empty (method)
ida_hexrays.block_chains_vec_t.end (method)
ida_hexrays.block_chains_vec_t.erase (method)
ida_hexrays.block_chains_vec_t.extract (method)
ida_hexrays.block_chains_vec_t.grow (method)
ida_hexrays.block_chains_vec_t.inject (method)
ida_hexrays.block_chains_vec_t.insert (method)
ida_hexrays.block_chains_vec_t.pop_back (method)
ida_hexrays.block_chains_vec_t.push_back (method)
ida_hexrays.block_chains_vec_t.qclear (method)
ida_hexrays.block_chains_vec_t.reserve (method)
ida_hexrays.block_chains_vec_t.resize (method)
ida_hexrays.block_chains_vec_t.size (method)
ida_hexrays.block_chains_vec_t.swap (method)
ida_hexrays.block_chains_vec_t.truncate (method)
ida_hexrays.boundaries_begin (function)
ida_hexrays.boundaries_clear (function)
ida_hexrays.boundaries_end (function)
ida_hexrays.boundaries_erase (function)
ida_hexrays.boundaries_find (function)
ida_hexrays.boundaries_first (function)
ida_hexrays.boundaries_free (function)
ida_hexrays.boundaries_insert (function)
ida_hexrays.boundaries_iterator_t (class)
ida_hexrays.boundaries_iterator_t.__eq__ (method)
ida_hexrays.boundaries_iterator_t.__init__ (method)
ida_hexrays.boundaries_iterator_t.__ne__ (method)
ida_hexrays.boundaries_new (function)
ida_hexrays.boundaries_next (function)
ida_hexrays.boundaries_prev (function)
ida_hexrays.boundaries_second (function)
ida_hexrays.boundaries_size (function)
ida_hexrays.boundaries_t (class)
ida_hexrays.boundaries_t.__init__ (method)
ida_hexrays.boundaries_t.at (method)
ida_hexrays.boundaries_t.size (method)
ida_hexrays.call_helper (function)
ida_hexrays.carg_t (class)
ida_hexrays.carg_t.__eq__ (method)
ida_hexrays.carg_t.__ge__ (method)
ida_hexrays.carg_t.__gt__ (method)
ida_hexrays.carg_t.__init__ (method)
ida_hexrays.carg_t.__le__ (method)
ida_hexrays.carg_t.__lt__ (method)
ida_hexrays.carg_t.__ne__ (method)
ida_hexrays.carg_t.compare (method)
ida_hexrays.carg_t.consume_cexpr (method)
ida_hexrays.carg_t.formal_type (variable)
ida_hexrays.carg_t.is_vararg (variable)
ida_hexrays.carglist_t (class)
ida_hexrays.carglist_t.__eq__ (method)
ida_hexrays.carglist_t.__ge__ (method)
ida_hexrays.carglist_t.__gt__ (method)
ida_hexrays.carglist_t.__init__ (method)
ida_hexrays.carglist_t.__le__ (method)
ida_hexrays.carglist_t.__lt__ (method)
ida_hexrays.carglist_t.__ne__ (method)
ida_hexrays.carglist_t.compare (method)
ida_hexrays.carglist_t.flags (variable)
ida_hexrays.carglist_t.functype (variable)
ida_hexrays.casm_t (class)
ida_hexrays.casm_t.__eq__ (method)
ida_hexrays.casm_t.__ge__ (method)
ida_hexrays.casm_t.__gt__ (method)
ida_hexrays.casm_t.__init__ (method)
ida_hexrays.casm_t.__le__ (method)
ida_hexrays.casm_t.__lt__ (method)
ida_hexrays.casm_t.__ne__ (method)
ida_hexrays.casm_t.compare (method)
ida_hexrays.casm_t.one_insn (method)
ida_hexrays.cblock_t (class)
ida_hexrays.cblock_t.__eq__ (method)
ida_hexrays.cblock_t.__ge__ (method)
ida_hexrays.cblock_t.__gt__ (method)
ida_hexrays.cblock_t.__init__ (method)
ida_hexrays.cblock_t.__le__ (method)
ida_hexrays.cblock_t.__lt__ (method)
ida_hexrays.cblock_t.__ne__ (method)
ida_hexrays.cblock_t._deregister (method)
ida_hexrays.cblock_t.compare (method)
ida_hexrays.ccase_t (class)
ida_hexrays.ccase_t.__eq__ (method)
ida_hexrays.ccase_t.__ge__ (method)
ida_hexrays.ccase_t.__gt__ (method)
ida_hexrays.ccase_t.__init__ (method)
ida_hexrays.ccase_t.__le__ (method)
ida_hexrays.ccase_t.__lt__ (method)
ida_hexrays.ccase_t.__ne__ (method)
ida_hexrays.ccase_t.compare (method)
ida_hexrays.ccase_t.size (method)
ida_hexrays.ccase_t.value (method)
ida_hexrays.ccase_t.values (variable)
ida_hexrays.ccases_t (class)
ida_hexrays.ccases_t.__eq__ (method)
ida_hexrays.ccases_t.__ge__ (method)
ida_hexrays.ccases_t.__gt__ (method)
ida_hexrays.ccases_t.__init__ (method)
ida_hexrays.ccases_t.__le__ (method)
ida_hexrays.ccases_t.__lt__ (method)
ida_hexrays.ccases_t.__ne__ (method)
ida_hexrays.ccases_t.compare (method)
ida_hexrays.cdg_insn_iterator_t (class)
ida_hexrays.cdg_insn_iterator_t.__init__ (method)
ida_hexrays.cdg_insn_iterator_t.dslot_with_xrefs (method)
ida_hexrays.cdg_insn_iterator_t.has_dslot (method)
ida_hexrays.cdg_insn_iterator_t.is_severed_dslot (method)
ida_hexrays.cdg_insn_iterator_t.next (method)
ida_hexrays.cdg_insn_iterator_t.ok (method)
ida_hexrays.cdg_insn_iterator_t.start (method)
ida_hexrays.cdo_t (class)
ida_hexrays.cdo_t.__eq__ (method)
ida_hexrays.cdo_t.__ge__ (method)
ida_hexrays.cdo_t.__gt__ (method)
ida_hexrays.cdo_t.__init__ (method)
ida_hexrays.cdo_t.__le__ (method)
ida_hexrays.cdo_t.__lt__ (method)
ida_hexrays.cdo_t.__ne__ (method)
ida_hexrays.cdo_t.compare (method)
ida_hexrays.ceinsn_t (class)
ida_hexrays.ceinsn_t.__init__ (method)
ida_hexrays.ceinsn_t.expr (variable)
ida_hexrays.cexpr_operands (function)
ida_hexrays.cexpr_t (class)
ida_hexrays.cexpr_t.__eq__ (method)
ida_hexrays.cexpr_t.__ge__ (method)
ida_hexrays.cexpr_t.__gt__ (method)
ida_hexrays.cexpr_t.__init__ (method)
ida_hexrays.cexpr_t.__le__ (method)
ida_hexrays.cexpr_t.__lt__ (method)
ida_hexrays.cexpr_t.__ne__ (method)
ida_hexrays.cexpr_t._deregister (method)
ida_hexrays.cexpr_t._get_a (method)
ida_hexrays.cexpr_t._get_fpc (method)
ida_hexrays.cexpr_t._get_helper (method)
ida_hexrays.cexpr_t._get_insn (method)
ida_hexrays.cexpr_t._get_m (method)
ida_hexrays.cexpr_t._get_n (method)
ida_hexrays.cexpr_t._get_obj_ea (method)
ida_hexrays.cexpr_t._get_ptrsize (method)
ida_hexrays.cexpr_t._get_refwidth (method)
ida_hexrays.cexpr_t._get_string (method)
ida_hexrays.cexpr_t._get_x (method)
ida_hexrays.cexpr_t._get_y (method)
ida_hexrays.cexpr_t._get_z (method)
ida_hexrays.cexpr_t._register (method)
ida_hexrays.cexpr_t._replace_by (method)
ida_hexrays.cexpr_t._set_a (method)
ida_hexrays.cexpr_t._set_fpc (method)
ida_hexrays.cexpr_t._set_helper (method)
ida_hexrays.cexpr_t._set_insn (method)
ida_hexrays.cexpr_t._set_m (method)
ida_hexrays.cexpr_t._set_n (method)
ida_hexrays.cexpr_t._set_obj_ea (method)
ida_hexrays.cexpr_t._set_ptrsize (method)
ida_hexrays.cexpr_t._set_refwidth (method)
ida_hexrays.cexpr_t._set_string (method)
ida_hexrays.cexpr_t._set_x (method)
ida_hexrays.cexpr_t._set_y (method)
ida_hexrays.cexpr_t._set_z (method)
ida_hexrays.cexpr_t.a (variable)
ida_hexrays.cexpr_t.assign (method)
ida_hexrays.cexpr_t.calc_type (method)
ida_hexrays.cexpr_t.cleanup (method)
ida_hexrays.cexpr_t.compare (method)
ida_hexrays.cexpr_t.contains_comma (method)
ida_hexrays.cexpr_t.contains_comma_or_insn_or_label (method)
ida_hexrays.cexpr_t.contains_insn (method)
ida_hexrays.cexpr_t.contains_insn_or_label (method)
ida_hexrays.cexpr_t.contains_operator (method)
ida_hexrays.cexpr_t.cpadone (method)
ida_hexrays.cexpr_t.dstr (method)
ida_hexrays.cexpr_t.equal_effect (method)
ida_hexrays.cexpr_t.exflags (variable)
ida_hexrays.cexpr_t.find_num_op (method)
ida_hexrays.cexpr_t.find_op (method)
ida_hexrays.cexpr_t.fpc (variable)
ida_hexrays.cexpr_t.get_1num_op (method)
ida_hexrays.cexpr_t.get_const_value (method)
ida_hexrays.cexpr_t.get_high_nbit_bound (method)
ida_hexrays.cexpr_t.get_low_nbit_bound (method)
ida_hexrays.cexpr_t.get_ptr_or_array (method)
ida_hexrays.cexpr_t.get_type_sign (method)
ida_hexrays.cexpr_t.get_v (method)
ida_hexrays.cexpr_t.has_side_effects (method)
ida_hexrays.cexpr_t.helper (variable)
ida_hexrays.cexpr_t.insn (variable)
ida_hexrays.cexpr_t.is_call_arg_of (method)
ida_hexrays.cexpr_t.is_call_object_of (method)
ida_hexrays.cexpr_t.is_child_of (method)
ida_hexrays.cexpr_t.is_const_value (method)
ida_hexrays.cexpr_t.is_cstr (method)
ida_hexrays.cexpr_t.is_fpop (method)
ida_hexrays.cexpr_t.is_jumpout (method)
ida_hexrays.cexpr_t.is_negative_const (method)
ida_hexrays.cexpr_t.is_nice_cond (method)
ida_hexrays.cexpr_t.is_nice_expr (method)
ida_hexrays.cexpr_t.is_non_negative_const (method)
ida_hexrays.cexpr_t.is_non_zero_const (method)
ida_hexrays.cexpr_t.is_odd_lvalue (method)
ida_hexrays.cexpr_t.is_type_signed (method)
ida_hexrays.cexpr_t.is_type_unsigned (method)
ida_hexrays.cexpr_t.is_undef_val (method)
ida_hexrays.cexpr_t.is_vftable (method)
ida_hexrays.cexpr_t.is_zero_const (method)
ida_hexrays.cexpr_t.m (variable)
ida_hexrays.cexpr_t.maybe_ptr (method)
ida_hexrays.cexpr_t.n (variable)
ida_hexrays.cexpr_t.numval (method)
ida_hexrays.cexpr_t.obj_ea (variable)
ida_hexrays.cexpr_t.print1 (method)
ida_hexrays.cexpr_t.ptrsize (variable)
ida_hexrays.cexpr_t.put_number (method)
ida_hexrays.cexpr_t.refwidth (variable)
ida_hexrays.cexpr_t.requires_lvalue (method)
ida_hexrays.cexpr_t.set_cpadone (method)
ida_hexrays.cexpr_t.set_v (method)
ida_hexrays.cexpr_t.set_vftable (method)
ida_hexrays.cexpr_t.string (variable)
ida_hexrays.cexpr_t.swap (method)
ida_hexrays.cexpr_t.theother (method)
ida_hexrays.cexpr_t.type (variable)
ida_hexrays.cexpr_t.v (variable)
ida_hexrays.cexpr_t.x (variable)
ida_hexrays.cexpr_t.y (variable)
ida_hexrays.cexpr_t.z (variable)
ida_hexrays.cfor_t (class)
ida_hexrays.cfor_t.__eq__ (method)
ida_hexrays.cfor_t.__ge__ (method)
ida_hexrays.cfor_t.__gt__ (method)
ida_hexrays.cfor_t.__init__ (method)
ida_hexrays.cfor_t.__le__ (method)
ida_hexrays.cfor_t.__lt__ (method)
ida_hexrays.cfor_t.__ne__ (method)
ida_hexrays.cfor_t.compare (method)
ida_hexrays.cfor_t.init (variable)
ida_hexrays.cfor_t.step (variable)
ida_hexrays.cfunc_parentee_t (class)
ida_hexrays.cfunc_parentee_t.__disown__ (method)
ida_hexrays.cfunc_parentee_t.__init__ (method)
ida_hexrays.cfunc_parentee_t.calc_rvalue_type (method)
ida_hexrays.cfunc_parentee_t.func (variable)
ida_hexrays.cfunc_t (class)
ida_hexrays.cfunc_t.__init__ (method)
ida_hexrays.cfunc_t.__str__ (method)
ida_hexrays.cfunc_t.argidx (variable)
ida_hexrays.cfunc_t.body (variable)
ida_hexrays.cfunc_t.build_c_tree (method)
ida_hexrays.cfunc_t.del_orphan_cmts (method)
ida_hexrays.cfunc_t.entry_ea (variable)
ida_hexrays.cfunc_t.find_item_coords (method)
ida_hexrays.cfunc_t.find_label (method)
ida_hexrays.cfunc_t.gather_derefs (method)
ida_hexrays.cfunc_t.get_boundaries (method)
ida_hexrays.cfunc_t.get_eamap (method)
ida_hexrays.cfunc_t.get_func_type (method)
ida_hexrays.cfunc_t.get_line_item (method)
ida_hexrays.cfunc_t.get_lvars (method)
ida_hexrays.cfunc_t.get_pseudocode (method)
ida_hexrays.cfunc_t.get_stkoff_delta (method)
ida_hexrays.cfunc_t.get_user_cmt (method)
ida_hexrays.cfunc_t.get_user_iflags (method)
ida_hexrays.cfunc_t.get_user_union_selection (method)
ida_hexrays.cfunc_t.get_warnings (method)
ida_hexrays.cfunc_t.has_orphan_cmts (method)
ida_hexrays.cfunc_t.hdrlines (variable)
ida_hexrays.cfunc_t.locked (method)
ida_hexrays.cfunc_t.maturity (variable)
ida_hexrays.cfunc_t.mba (variable)
ida_hexrays.cfunc_t.numforms (variable)
ida_hexrays.cfunc_t.print_dcl (method)
ida_hexrays.cfunc_t.print_func (method)
ida_hexrays.cfunc_t.refcnt (variable)
ida_hexrays.cfunc_t.refresh_func_ctext (method)
ida_hexrays.cfunc_t.release (method)
ida_hexrays.cfunc_t.remove_unused_labels (method)
ida_hexrays.cfunc_t.save_user_cmts (method)
ida_hexrays.cfunc_t.save_user_iflags (method)
ida_hexrays.cfunc_t.save_user_labels (method)
ida_hexrays.cfunc_t.save_user_numforms (method)
ida_hexrays.cfunc_t.save_user_unions (method)
ida_hexrays.cfunc_t.set_user_cmt (method)
ida_hexrays.cfunc_t.set_user_iflags (method)
ida_hexrays.cfunc_t.set_user_union_selection (method)
ida_hexrays.cfunc_t.statebits (variable)
ida_hexrays.cfunc_t.treeitems (variable)
ida_hexrays.cfunc_t.user_cmts (variable)
ida_hexrays.cfunc_t.user_iflags (variable)
ida_hexrays.cfunc_t.user_labels (variable)
ida_hexrays.cfunc_t.user_unions (variable)
ida_hexrays.cfunc_t.verify (method)
ida_hexrays.cfunc_type (function)
ida_hexrays.cfuncptr_t (class)
ida_hexrays.cfuncptr_t.__deref__ (method)
ida_hexrays.cfuncptr_t.__init__ (method)
ida_hexrays.cfuncptr_t.__ptrval__ (method)
ida_hexrays.cfuncptr_t.__ref__ (method)
ida_hexrays.cfuncptr_t.__str__ (method)
ida_hexrays.cfuncptr_t.build_c_tree (method)
ida_hexrays.cfuncptr_t.del_orphan_cmts (method)
ida_hexrays.cfuncptr_t.find_item_coords (method)
ida_hexrays.cfuncptr_t.find_label (method)
ida_hexrays.cfuncptr_t.gather_derefs (method)
ida_hexrays.cfuncptr_t.get_boundaries (method)
ida_hexrays.cfuncptr_t.get_eamap (method)
ida_hexrays.cfuncptr_t.get_func_type (method)
ida_hexrays.cfuncptr_t.get_line_item (method)
ida_hexrays.cfuncptr_t.get_lvars (method)
ida_hexrays.cfuncptr_t.get_pseudocode (method)
ida_hexrays.cfuncptr_t.get_stkoff_delta (method)
ida_hexrays.cfuncptr_t.get_user_cmt (method)
ida_hexrays.cfuncptr_t.get_user_iflags (method)
ida_hexrays.cfuncptr_t.get_user_union_selection (method)
ida_hexrays.cfuncptr_t.get_warnings (method)
ida_hexrays.cfuncptr_t.has_orphan_cmts (method)
ida_hexrays.cfuncptr_t.locked (method)
ida_hexrays.cfuncptr_t.print_dcl (method)
ida_hexrays.cfuncptr_t.print_func (method)
ida_hexrays.cfuncptr_t.refresh_func_ctext (method)
ida_hexrays.cfuncptr_t.release (method)
ida_hexrays.cfuncptr_t.remove_unused_labels (method)
ida_hexrays.cfuncptr_t.reset (method)
ida_hexrays.cfuncptr_t.save_user_cmts (method)
ida_hexrays.cfuncptr_t.save_user_iflags (method)
ida_hexrays.cfuncptr_t.save_user_labels (method)
ida_hexrays.cfuncptr_t.save_user_numforms (method)
ida_hexrays.cfuncptr_t.save_user_unions (method)
ida_hexrays.cfuncptr_t.set_user_cmt (method)
ida_hexrays.cfuncptr_t.set_user_iflags (method)
ida_hexrays.cfuncptr_t.set_user_union_selection (method)
ida_hexrays.cfuncptr_t.verify (method)
ida_hexrays.cgoto_t (class)
ida_hexrays.cgoto_t.__eq__ (method)
ida_hexrays.cgoto_t.__ge__ (method)
ida_hexrays.cgoto_t.__gt__ (method)
ida_hexrays.cgoto_t.__init__ (method)
ida_hexrays.cgoto_t.__le__ (method)
ida_hexrays.cgoto_t.__lt__ (method)
ida_hexrays.cgoto_t.__ne__ (method)
ida_hexrays.cgoto_t.compare (method)
ida_hexrays.cgoto_t.label_num (variable)
ida_hexrays.chain_keeper_t (class)
ida_hexrays.chain_keeper_t.__init__ (method)
ida_hexrays.chain_keeper_t.back (method)
ida_hexrays.chain_keeper_t.for_all_chains (method)
ida_hexrays.chain_keeper_t.front (method)
ida_hexrays.chain_t (class)
ida_hexrays.chain_t.__init__ (method)
ida_hexrays.chain_t.__lt__ (method)
ida_hexrays.chain_t._print (method)
ida_hexrays.chain_t.append_list (method)