-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjeb-api.txt
1141 lines (1141 loc) · 836 KB
/
jeb-api.txt
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
# Timestamp: 1554488655499
# Reference: https://www.pnfsoftware.com/jeb/apidoc/reference/packages.html
I;0;ACLock;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.ACLock;;com.pnfsoftware.jeb.util.base.AutoCloseable2;;;
C;0;APKSigSchemeV2Block;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block(b:java.nio.ByteBuffer);toString()java.lang.String|getSigners()java.util.List|readInt()int|readBytes(len:int)byte[]|parse(available:int)void|skipBytes(len:int)void|skipAndWarnIfNonZero(len:int)void|readSize()int|algoIdToString(id:int)java.lang.String|verifyZero(len:int)void;SigAlgoId_RSASSA_PSS_SHA2_256:int|SigAlgoId_RSASSA_PSS_SHA2_512:int|SigAlgoId_RSASSA_PKCS1_v1_5_SHA2_256:int|SigAlgoId_RSASSA_PKCS1_v1_5_SHA2_512:int|SigAlgoId_ECDSA_SHA2_256:int|SigAlgoId_ECDSA_SHA2_512:int|SigAlgoId_DSA_SHA2_256:int
C;0;APKSigSchemeV3Block;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV3Block;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block;;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV3Block(b:java.nio.ByteBuffer);parse(available:int)void;PROOF_OF_ROTATION_ATTR_ID:int
C;0;AbstractAnalyzerExtension;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.AbstractAnalyzerExtension;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension;com.pnfsoftware.jeb.core.units.code.asm.analyzer.AbstractAnalyzerExtension();initialize(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|preprocessImage(passIndex:int)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|postprocessImage(passIndex:int)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|initializePaddingPatterns(paddingVerifier:com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPatternVerifier)void|initializeProloguePatterns(prologueVerifier:com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPatternVerifier)void|determineRoutineStackPointerDelta(routine:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getPrologueLooking(address:long,addressMax:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getPossiblePaddingSize(address:long,addressMax:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|typeManagerInitialized(typeman:com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager)void|isCandidateSwitchDispatcher(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,insns:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|determineSwitchInformation(address:long,base:long,inBlocks:java.util.Map,dstBlocks:java.util.Map)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|shouldForceRoutineEnd(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|isTrampolineToDynResRoutine(routine:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|determinePotentialPointers(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,values:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getProbableEntryPoints(address:long,addressMax:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|isNonReturningRoutine(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult;gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer|prologueVerifier:com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPatternVerifier|paddingVerifier:com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPatternVerifier
C;0;AbstractAutoClosingLock;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.AbstractAutoClosingLock;java.lang.Object;com.pnfsoftware.jeb.util.concurrent.ACLock;com.pnfsoftware.jeb.util.concurrent.AbstractAutoClosingLock(lock:com.pnfsoftware.jeb.util.serialization.objects.SerReentrantLock);close()void;locked:java.util.concurrent.atomic.AtomicBoolean
C;0;AbstractBinaryUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractBinaryUnit;com.pnfsoftware.jeb.core.units.AbstractUnit;com.pnfsoftware.jeb.core.units.IBinaryUnit;com.pnfsoftware.jeb.core.units.AbstractBinaryUnit(mimeType:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,formatType:java.lang.String,name:java.lang.String,parent:com.pnfsoftware.jeb.core.units.IUnit)|com.pnfsoftware.jeb.core.units.AbstractBinaryUnit(mimeType:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,formatType:java.lang.String,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);setInput(input:com.pnfsoftware.jeb.core.input.IInput)void|getInput()com.pnfsoftware.jeb.core.input.IInput|setMimeType(mimeType:java.lang.String)void|getConsummedSize()int|getMimeType()java.lang.String;
C;0;AbstractClientContext;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.AbstractClientContext;com.pnfsoftware.jeb.client.AbstractContext;com.pnfsoftware.jeb.client.api.IClientContext;com.pnfsoftware.jeb.client.AbstractClientContext();start()void|stop()void|initialize(argv:java.lang.String[])void|open(path:java.lang.String)com.pnfsoftware.jeb.core.units.IUnit|getConfiguration()org.apache.commons.configuration2.Configuration|getPreferredLanguage()java.lang.String|isDevelopmentMode()boolean|setDevelopmentMode(enabled:boolean)void|setControllerProtocol(protocol:int)void|getControllerMessage()java.lang.String|formatMemoryUsage()java.lang.String|getEnginesContext()com.pnfsoftware.jeb.core.IEnginesContext|setScriptsDirectory(folder:java.lang.String)void|getLastPublicAnnouncementId()int|displayDemoInformation(demoInfo:java.lang.String)void|closeOpenedProject()boolean|generateLicenseInformation()java.lang.String|shouldCheckPublicAnnouncements()boolean|notifySupportExpired()void|setControllerPort(port:int)void|getControllerProtocol()int|shouldCheckUpdates()boolean|onUpdatedSoftware(changelist:java.lang.String,oldVersion:com.pnfsoftware.jeb.core.Version)void|getNetworkUtility()com.pnfsoftware.jeb.util.net.Net|setLastPublicAnnouncementId(id:int)void|retrieveLatestPublicAnnouncement()com.pnfsoftware.jeb.client.PublicAnnouncement|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getControllerInterface()java.lang.String|setPreferredLanguage(language:java.lang.String)void|retrieveLicenseKey(licdata:java.lang.String)java.lang.String|getScriptsDirectory()java.lang.String|initializeEngines()void|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|notifyFloatingClient(notification:com.pnfsoftware.jeb.core.events.ControllerNotification)void|setControllerInterface(iface:java.lang.String)void|getControllerPort()int|getUuid()long|getProxyString()java.lang.String|displayEula(eula:java.lang.String)boolean|dumpUpdateToDisk(data:byte[],password:java.lang.String)void|isHeadless()boolean|getInputpath()java.lang.String|getArguments()java.lang.String[]|checkUpdate()boolean|setProxyString(strProxyinfo:java.lang.String)void|setupController()boolean|ping(downloadUpdatePackage:boolean,maxChannel:int,sbi:com.pnfsoftware.jeb.client.SoftwareBuildInfo,progressCallback:com.pnfsoftware.jeb.util.base.IProgressCallback)int|getTelemetry()com.pnfsoftware.jeb.client.telemetry.ITelemetryDatabase|getMaxMemory()long|getMainProject()com.pnfsoftware.jeb.core.IRuntimeProject|getCoreContext()com.pnfsoftware.jeb.core.ICoreContext|getOpenedProject()com.pnfsoftware.jeb.core.IRuntimeProject|hasOpenedProject()boolean|getUsedMemory()long|closeMainProject()boolean|logMemoryUsage()void;defaultClientConfigPath:java.lang.String|defaultEnginesConfigPath:java.lang.String|defaultTelemetryDatabasePath:java.lang.String|defaultScriptsFolderName:java.lang.String|defaultPluginsFolderName:java.lang.String|coreOptions:com.pnfsoftware.jeb.core.CoreOptions|args:java.lang.String[]|inputpath:java.lang.String|basicChecksPassed:boolean
C;0;AbstractCodeObjectUnit;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.AbstractCodeObjectUnit;com.pnfsoftware.jeb.core.units.AbstractBinaryUnit;com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit;com.pnfsoftware.jeb.core.units.codeobject.AbstractCodeObjectUnit(input:com.pnfsoftware.jeb.core.input.IInput,formatType:java.lang.String,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);map(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory,wantedBase:long,applyRelocations:boolean)boolean|getSectionCount()int|getSegmentCount()int|getSegments(wflags:int,bflags:int)java.util.List|getSegments()java.util.List|getSymbols()java.util.List|getSymbols(mustHaveFlags:int,mustNotHaveFlags:int)java.util.List|getValidSegments()java.util.List|getSegment(i:int)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|getSection(i:int)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|getSections(wflags:int,bflags:int)java.util.List|getSections()java.util.List|getValidSections()java.util.List|applyRelocations(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory,base:long)boolean|convertRelativeAddressToFileOffset(rel:long)long|convertFileOffsetToRelativeAddress(offset:long)long|createSuitableMemory()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|setLoaderInformation(ldinfo:com.pnfsoftware.jeb.core.units.codeobject.ILoaderInformation)void|shouldAllocateFullImage()boolean|getImportedSymbols()java.util.List|getLoaderInformation()com.pnfsoftware.jeb.core.units.codeobject.ILoaderInformation|getRawMemoryMappedImage()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|getExportedSymbols()java.util.List|addSection(section:com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation)void|getSymbolCount()int|removeSymbol(index:int)void|addSegment(segment:com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation)void|removeSection(index:int)void|insertSegment(index:int,segment:com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation)void|insertSymbol(index:int,symbol:com.pnfsoftware.jeb.core.units.codeobject.ISymbolInformation)void|mapRawNoReloc(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory,base:long)boolean|addAllSymbols(symbols:java.util.Collection)void|getMappableInput()com.pnfsoftware.jeb.core.input.IInput|addSymbol(symbol:com.pnfsoftware.jeb.core.units.codeobject.ISymbolInformation)boolean|addAllSections(sections:java.util.Collection)void|removeSegment(index:int)void|addAllSegments(segments:java.util.Collection)void|insertSection(index:int,section:com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation)void;
C;0;AbstractCodeUnit;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.AbstractCodeUnit;com.pnfsoftware.jeb.core.units.AbstractInteractiveBinaryUnit;com.pnfsoftware.jeb.core.units.code.ICodeUnit;com.pnfsoftware.jeb.core.units.code.AbstractCodeUnit(name:java.lang.String,formatType:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);getClass(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeClass|getClasses()java.util.List|getField(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeField|getFields()java.util.List|getMethod(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeMethod|getMethods()java.util.List|getPackages()java.util.List|getTypes()java.util.List;
C;0;AbstractCommandHandler;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler;java.lang.Object;com.pnfsoftware.jeb.util.interpreter.ICommandHandler;com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler(parent:com.pnfsoftware.jeb.util.interpreter.ICommandManager,name:java.lang.String,params:com.pnfsoftware.jeb.util.interpreter.CommandParameter[],help:java.lang.String,helpDetails:java.lang.String)|com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler(parent:com.pnfsoftware.jeb.util.interpreter.ICommandManager,name:java.lang.String,paramNames:java.lang.String[],help:java.lang.String,helpDetails:java.lang.String)|com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler(parent:com.pnfsoftware.jeb.util.interpreter.ICommandManager,name:java.lang.String,help:java.lang.String)|com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler(parent:com.pnfsoftware.jeb.util.interpreter.ICommandManager,name:java.lang.String);toString()java.lang.String|getName()java.lang.String|getParent()com.pnfsoftware.jeb.util.interpreter.ICommandManager|setName(name:java.lang.String)void|getParameters()java.util.List|getOptions()int|getParameterIndex(paramName:java.lang.String,prefix:java.lang.String)int|getChildren()java.util.List|getHelp()java.lang.String|setHelp(help:java.lang.String)void|getHelpDetails()java.lang.String|getToken(tokens:java.util.List,i:int)com.pnfsoftware.jeb.util.interpreter.InputToken|getParameter(tokens:java.util.List,i:int)java.lang.String|getParameterSafe(tokens:java.util.List,i:int)java.lang.String|setOptions(options:int)com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler|addParameter(parameter:com.pnfsoftware.jeb.util.interpreter.CommandParameter)com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler|addParameter(paramName:java.lang.String)com.pnfsoftware.jeb.util.interpreter.AbstractCommandHandler|parseInputToken(tokens:java.util.List,failOnErrors:boolean)com.pnfsoftware.jeb.util.interpreter.InputToken[]|parseInputToken(tokens:java.util.List)com.pnfsoftware.jeb.util.interpreter.InputToken[];parent:com.pnfsoftware.jeb.util.interpreter.ICommandManager|name:java.lang.String|params:java.util.List|help:java.lang.String|helpDetails:java.lang.String
C;0;AbstractContext;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.AbstractContext;com.pnfsoftware.jeb.util.events.EventSource;;com.pnfsoftware.jeb.client.AbstractContext();getProgramDirectory()java.lang.String|initNetworkUtility(proxyString:java.lang.String)com.pnfsoftware.jeb.util.net.Net|getCurrentDirectory()java.lang.String|getSoftwareVersion()com.pnfsoftware.jeb.core.Version|getStartTimestamp()int|getJebCoreJarFile()java.io.File|terminate()void|getBaseDirectory()java.lang.String|getChannelName()java.lang.String|isPreRelease()boolean|getAppDirectory()java.lang.String;app_ver:com.pnfsoftware.jeb.core.Version|app_channel_override:java.lang.Integer|app_name:java.lang.String|app_description:java.lang.String|app_company:java.lang.String|app_dates:java.lang.String|app_domain:java.lang.String|app_website:java.lang.String|app_licensing_backup:java.lang.String|app_url_purchase:java.lang.String|app_url_manual:java.lang.String|app_url_faq:java.lang.String|app_url_faqmem:java.lang.String|app_url_apidoc:java.lang.String|app_url_devportal:java.lang.String|app_url_changelist:java.lang.String|app_url_motd:java.lang.String|app_url_uploaderrorlog:java.lang.String|app_url_fileuploader:java.lang.String|app_email_support:java.lang.String|app_email_licensing:java.lang.String|app_email_updates:java.lang.String|app_url_forum:java.lang.String|app_url_chat:java.lang.String|app_url_check_update:java.lang.String|app_url_check_update_backup:java.lang.String|app_url_genlk:java.lang.String|app_url_genkey:java.lang.String|app_url_genkey_backup:java.lang.String|integrity_failed:boolean
C;0;AbstractConverter;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractConverter;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEConverter;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractConverter(proc:com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor,regNormalBitsize:int);initialize()void|convert(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,delayBuild:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|convert(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|getRegisterBitsize()int|createStackMemoryAccess(address:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|getPrototypeHandler(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEPrototypeHandler|convertReturnLocation(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|convertReturnExpressions(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype)java.util.List|convertParameterExpressions(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype,targetRoutine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,addSlotCount:int)java.util.List|buildFailsafePrototype(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype|defaultPCConversion(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)int|getAddressBitsize()int|getReturnAddressRegister()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|initializeStateRegisters(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState,optionalNativeProgramCounter:java.lang.Long)void|resolveCustomCalls(pbcu:com.pnfsoftware.jeb.core.units.INativeCodeUnit,ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)boolean|getProcessorMode(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)int|isPossibleSpoiledRegistersForProcessorCallingConventions(nativeRegId:long)boolean|isPossibleParameterRegisterForProcessorCallingConventions(nativeRegId:long)boolean|setDoNotGenerateNops(doNotGenerateNops:boolean)void|preBlockConversion(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,interlist:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|isDoNotGenerateNops()boolean|convertBlockForTest(b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock)java.util.List|generateASTForUntranslatedIR(insn:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEUntranslatedInstruction,ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,cctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|postRoutineConversion(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)void|evaluateUntranslatedIR(insn:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEUntranslatedInstruction,ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|getInputVariableByIndex(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,i:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|postBlockConversion(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,interlist:java.util.List,cnt:int)void|setCurrentContext(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)void|preRoutineConversion(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)void|getRegisterVariableFromNativeRegisterId(nativeRegId:long)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|getNativeRegisterIdFromRegisterVariable(regVar:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar,shortForm:boolean)long|isSegmentEMemReferencingPrimaryMemory(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem)java.lang.Boolean|determineStackPointerDeltaAfterIRCall(prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype,addSlotCount:int)java.lang.Integer|determineStackPointerDeltaFromSimulation(simuinfo:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.SimulationPointInformation)java.lang.Integer|isPCRightValueCompatibleReturnValue(b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,PCRightVal:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,expectedReturnAddress:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|insertOptionalEntryPointTrampoline(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,IRStatementList:java.util.List)boolean|getDecompiler()com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit|getStackSlotSize()int|getGlobalContext()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEGlobalContext|insertReturns(_ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)int|formatStatistics()java.lang.String|convertBlock(b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,interlist:java.util.List)void|setDecompiler(decompiler:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit)void;gCtx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEGlobalContext|proc:com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor|regNormalBitsize:int|doNotGenerateNops:boolean|methodConversionCountFailure:int|methodConversionCountSuccess:int|ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|parameterRegistersForAllCC:java.util.Set|spoiledRegistersForAllCC:java.util.Set
C;0;AbstractDebuggerBreakpoint;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractDebuggerBreakpoint;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractDebuggerBreakpoint(dbgAddress:java.lang.String,ua:com.pnfsoftware.jeb.core.units.UnitAddress);toString()java.lang.String|getAddress()java.lang.String|setAddress(address:java.lang.String)void|setUnitAddress(ua:com.pnfsoftware.jeb.core.units.UnitAddress)void|getUnitAddress()com.pnfsoftware.jeb.core.units.UnitAddress;dbgAddress:java.lang.String|ua:com.pnfsoftware.jeb.core.units.UnitAddress
C;0;AbstractDebuggerModule;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractDebuggerModule;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerModule;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractDebuggerModule(id:long,name:java.lang.String,base:long);toString()java.lang.String|getName()java.lang.String|getId()long|getBaseAddress()long;
C;0;AbstractDebuggerThread;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractDebuggerThread;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerThread;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractDebuggerThread(id:long,name:java.lang.String);toString()java.lang.String|getName()java.lang.String|getId()long|setName(name:java.lang.String)void;id:long|name:java.lang.String
C;0;AbstractEBlockOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEBlockOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEBlockOptimizer(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEBlockOptimizer(dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEBlockOptimizer();perform(updateDFA:boolean)int|optimizeBlock(b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock)int;
C;0;AbstractEExpressionOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer(dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer()|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy);optimizeExpression(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer$EOR|perform(updateDFA:boolean)int|doSubstitution(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,substitutions:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.SubstitutionDefinition[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;skipStatementProcessing:boolean|skipLeftSideOfAssignment:boolean
C;0;AbstractEOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractOptimizer;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy,type:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer(dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer();setTarget(arg0:java.lang.Object)java.lang.Object|setTarget(ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|getDataChainsUpdatePolicy()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy|setDataChainsUpdatePolicy(dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)void|perform(updateDFA:boolean)int|perform()int|postPerform(updateDFA:boolean,totalOptimizationCount:int,requestDFA:boolean)int|postPerform(updateDFA:boolean,totalOptimizationCount:int)int;ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG
C;0;AbstractEStatementOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEStatementOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEOptimizer;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEStatementOptimizer(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEStatementOptimizer(dataChainsUpdatePolicy:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEStatementOptimizer();optimizeStatement(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement|perform(updateDFA:boolean)int;
C;0;AbstractEncodedMemoryArea;com.pnfsoftware.jeb.core.units.code.asm.processor.memory;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.AbstractEncodedMemoryArea;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.AbstractEncodedMemoryArea();decodeInt(code:byte[])int;
C;0;AbstractEnginesPlugin;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.AbstractEnginesPlugin;com.pnfsoftware.jeb.core.AbstractPlugin;com.pnfsoftware.jeb.core.IEnginesPlugin;com.pnfsoftware.jeb.core.AbstractEnginesPlugin();load(context:com.pnfsoftware.jeb.core.IEnginesContext)void|execute(context:com.pnfsoftware.jeb.core.IEnginesContext)void|getExecutionOptionDefinitions()java.util.List;
C;0;AbstractImmediateOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractOperandBuilder;;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder(type:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType,flags:int,defaultValue:int,memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea)|com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder(type:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType,flags:int,defaultValue:int,defaultValueMask:int,memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea);getValue(code:byte[],mode:int)long|getSize()int|isSigned()boolean|postAdd(postAdd:int)void|buildOperand(code:byte[],mode:int)com.pnfsoftware.jeb.core.units.code.IInstructionOperand|buildImmediate(mode:int,value:long)com.pnfsoftware.jeb.core.units.code.IInstructionOperand|getPostAdd()int;POST_ADD1:int|REL_ADDRESS:int|ABS_ADDRESS:int|PC_SHIFT_4:int
C;0;AbstractInstruction;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstruction;java.lang.Object;com.pnfsoftware.jeb.core.units.code.IInstruction;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstruction(code:com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock,mnemonic:java.lang.String,operands:com.pnfsoftware.jeb.core.units.code.IInstructionOperand[],processorMode:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|format(context:java.lang.Object)java.lang.String|getSize()int|getPrefix()java.lang.String|getProcessorMode()int|getMnemonic()java.lang.String|getOperands()com.pnfsoftware.jeb.core.units.code.IInstructionOperand[]|getCode()byte[]|getCode(byteOrder:java.nio.ByteOrder)byte[]|buildNextEntryPoint(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|isRoutineCall(emulator:com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator)boolean|isBreakingFlow(emulator:com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator)boolean|getCodeBlock()com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock|isJump(emulator:com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator)boolean;operands:com.pnfsoftware.jeb.core.units.code.IInstructionOperand[]|processorMode:int
C;0;AbstractInstructionManager;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionManager;java.lang.Object;com.pnfsoftware.jeb.util.collect.CFBytesTrie$IKeyExtractor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionManager();getInstruction(block:com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock)com.pnfsoftware.jeb.core.units.code.IInstruction|getExceptions()java.util.List|getUnpredictableMessage(code:byte[],mnemonic:java.lang.String)java.lang.String|getUndefinedMessage(code:byte[])java.lang.String|getUniqueInstructionCount()long|retrieveInstructionFromCache(instruction:com.pnfsoftware.jeb.core.units.code.IInstruction)com.pnfsoftware.jeb.core.units.code.IInstruction|getInstructionCount()long|useCache(block:com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock)boolean|findInstruction(block:com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock)com.pnfsoftware.jeb.core.units.code.IInstruction|extract(object:com.pnfsoftware.jeb.core.units.code.IInstruction)byte[]|extract(arg0:java.lang.Object)byte[]|buildKey(block:com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock)byte[]|raiseUndefined(code:byte[])void;
C;0;AbstractInstructionOperandGeneric;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandGeneric;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandGeneric(type:int,size:int,value:long);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|format(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,address:long)java.lang.String|getPrefix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|formatOperand(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,address:long)java.lang.CharSequence|getSuffix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|getOperandType()int|getOperandValue(address:long)long|getOperandValue()long|getAlias(v:long)java.lang.String|createRegisterIdentifier(group:int,size:int,index:int)long|getRegInternalSize(id:long)int|getRegInternalIndex(id:long)int|getRegInternalGroup(id:long)int|getOperandBitsize()int|innerFormat()java.lang.String;type:int|size:int|value:long
C;0;AbstractInstructionOperandList;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandList;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandGeneric;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandList;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandList(size:int,value:long,flags:int,operands:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric[])|com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandList(type:int,size:int,value:long,flags:int,operands:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric[]);equals(obj:java.lang.Object)boolean|hashCode()int|merge(address:long)com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric|getSeparator()java.lang.String|getPrefix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|getOperands()com.pnfsoftware.jeb.core.units.code.IInstructionOperand[]|formatOperand(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,address:long)java.lang.CharSequence|getSuffix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|getFlags()int;NO_FLAG:int|SURROUND_BRACKETS:int|SURROUND_BRACES:int|SURROUND_PARENTHESES:int|SURROUND_CHEVRONS:int|SURROUND_QUOTES:int|SURROUND_DOUBLE_QUOTES:int|SURROUND_SPACES:int|SEPARATOR_SPACE:int|SEPARATOR_COMMA:int|SEPARATOR_COLON:int|SEPARATOR_SEMI_COLON:int|SEPARATOR_HYPHEN:int|USER_DEFINED_1:int|USER_DEFINED_2:int|USER_DEFINED_3:int|USER_DEFINED_4:int|USER_DEFINED_5:int|USER_DEFINED_6:int|USER_DEFINED_7:int|USER_DEFINED_8:int|FLAG_MASK:int
C;0;AbstractInteractiveBinaryUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractInteractiveBinaryUnit;com.pnfsoftware.jeb.core.units.AbstractBinaryUnit;com.pnfsoftware.jeb.core.units.IInteractiveUnit;com.pnfsoftware.jeb.core.units.AbstractInteractiveBinaryUnit(mimeType:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,formatType:java.lang.String,name:java.lang.String,parent:com.pnfsoftware.jeb.core.units.IUnit)|com.pnfsoftware.jeb.core.units.AbstractInteractiveBinaryUnit(mimeType:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,formatType:java.lang.String,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);setComment(address:java.lang.String,comment:java.lang.String)boolean|getComment(address:java.lang.String)java.lang.String|getAddressActions(address:java.lang.String)java.util.List|getMetadataManager()com.pnfsoftware.jeb.core.units.IMetadataManager|locationToAddress(location:com.pnfsoftware.jeb.core.input.IInputLocation)java.lang.String|addressToLocation(address:java.lang.String)com.pnfsoftware.jeb.core.input.IInputLocation|getComments()java.util.Map|getAddressLabels()java.util.Map|getAddressLabel(address:java.lang.String)java.lang.String|getItemObject(id:long)java.lang.Object|getAddressOfItem(id:long)java.lang.String|getItemAtAddress(address:java.lang.String)long|isValidAddress(address:java.lang.String)boolean|getGlobalActions()java.util.List|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData,notify:boolean)boolean|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean|getItemActions(id:long)java.util.List|canExecuteAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext)boolean|prepareExecution(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean;
C;0;AbstractInteractiveUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractInteractiveUnit;com.pnfsoftware.jeb.core.units.AbstractUnit;com.pnfsoftware.jeb.core.units.IInteractiveUnit;com.pnfsoftware.jeb.core.units.AbstractInteractiveUnit(formatType:java.lang.String,name:java.lang.String,parent:com.pnfsoftware.jeb.core.units.IUnit)|com.pnfsoftware.jeb.core.units.AbstractInteractiveUnit(formatType:java.lang.String,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);setComment(address:java.lang.String,comment:java.lang.String)boolean|getComment(address:java.lang.String)java.lang.String|getAddressActions(address:java.lang.String)java.util.List|getMetadataManager()com.pnfsoftware.jeb.core.units.IMetadataManager|locationToAddress(location:com.pnfsoftware.jeb.core.input.IInputLocation)java.lang.String|addressToLocation(address:java.lang.String)com.pnfsoftware.jeb.core.input.IInputLocation|getComments()java.util.Map|getAddressLabels()java.util.Map|getAddressLabel(address:java.lang.String)java.lang.String|getItemObject(id:long)java.lang.Object|getAddressOfItem(id:long)java.lang.String|getItemAtAddress(address:java.lang.String)long|isValidAddress(address:java.lang.String)boolean|getGlobalActions()java.util.List|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData,notify:boolean)boolean|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean|getItemActions(id:long)java.util.List|canExecuteAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext)boolean|prepareExecution(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean;
C;0;AbstractInternalDeserializer;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.AbstractInternalDeserializer;java.lang.Object;com.pnfsoftware.jeb.util.serialization.IInternalDeserializer;com.pnfsoftware.jeb.util.serialization.AbstractInternalDeserializer(customTypeIdProvider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider,classloaders:java.util.List,in:com.pnfsoftware.jeb.util.io.LEDataInputStream);loadClass(typeName:java.lang.String)java.lang.Class|read()java.lang.Object|read(object:java.lang.Object,c:java.lang.Class)java.lang.Object|close()void|getStream()java.io.InputStream|restoreFieldValue(o:java.lang.Object,targetClass:java.lang.Class,fieldId:int,fieldObject:java.lang.Object)void|setExpectedObjectCount(count:int)void|resolveDeferredObjects()void|deserializeInternal()java.lang.Object|notifyProgressCallbacks()void|removeObjectCreatedHook(c:java.lang.Class,handler:com.pnfsoftware.jeb.util.serialization.IDeserializationEventHandler)void|addObjectCreatedHook(c:java.lang.Class,handler:com.pnfsoftware.jeb.util.serialization.IDeserializationEventHandler)void|removeProgressCallback(callback:com.pnfsoftware.jeb.util.base.IProgressCallback)void|addProgressCallback(callback:com.pnfsoftware.jeb.util.base.IProgressCallback)void|notifyDeserializationEvent(type:int,c:java.lang.Class,o:java.lang.Object)void|logObjectMap()void|getObjects()java.util.Collection|readInternal(object:java.lang.Object,c:java.lang.Class)java.lang.Object|registerObject(isLeafObject:boolean,objectId:int,o:java.lang.Object)void|getCustomMethods(o:java.lang.Object,targetClass:java.lang.Class)com.pnfsoftware.jeb.util.serialization.AbstractInternalDeserializer$CustomMethods|getObjectCount()int;in:com.pnfsoftware.jeb.util.io.LEDataInputStream|nativeTypeIdProvider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider|customTypeIdProvider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider|classloaders:java.util.List|objenesis:org.objenesis.ObjenesisStd|cancelled:boolean|constructorMap:java.util.Map|mootObject:java.lang.Object|objmap:java.util.Map|objIdPostgraphDone:java.util.Set|deferredObjects:java.util.List|customMethods:java.util.Map|expectedObjectCount:int|progressCallbacks:java.util.List|objectCreatedHookMap:com.pnfsoftware.jeb.util.collect.MultiMap
C;0;AbstractMasterOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractMasterOptimizer;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractMasterOptimizer(t:java.lang.Object,grp1NMaxRunCount:int);getTarget()java.lang.Object|setTarget(t:java.lang.Object)void|preAllOptimizationsCallback(target:java.lang.Object)void|getOptimizerObject(clazz:java.lang.Class)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer|unregisterInstrumenter(instrumenter:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizerInstrumenter)boolean|getRegisteredOptimizers(groupId:int)java.util.List|getRegisteredOptimizers()java.util.List|unregisterOptimizer(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry)boolean|postAllOptimizationsCallback(target:java.lang.Object)void|registerInstrumenter(instrumenter:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizerInstrumenter)void|preOptimizationCallback(target:java.lang.Object,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry)void|registerOptimizer(group:int,opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|registerOptimizer(opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|registerOptimizer(group:int,opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer,priority:double)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|postOptimizationCallback(target:java.lang.Object,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry,cnt:int,executionTimeMs:long)void|getMode()int|setMode(mode:int)int|perform(depth:int)int|perform()int|getOptimizer(clazz:java.lang.Class)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|performMultiple(list:java.util.List)int|performSingle(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry)int;MODE_NORMAL:int|MODE_AGGRESSIVE:int|t:java.lang.Object|currentMode:int|optGrpMap:java.util.SortedMap|optList:java.util.List|grp1NMaxRunCount:int|instrumenters:java.util.List
C;0;AbstractMetadataGroup;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractMetadataGroup;java.lang.Object;com.pnfsoftware.jeb.core.units.IMetadataGroup;com.pnfsoftware.jeb.core.units.AbstractMetadataGroup(name:java.lang.String,type:com.pnfsoftware.jeb.core.units.MetadataGroupType);getName()java.lang.String|getType()com.pnfsoftware.jeb.core.units.MetadataGroupType;name:java.lang.String|type:com.pnfsoftware.jeb.core.units.MetadataGroupType
C;0;AbstractNativeDecompilerExtension;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractNativeDecompilerExtension;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerExtension;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractNativeDecompilerExtension();pipelineHookPoint(target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilationTarget)com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus|setAdditionalIRTypes(target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilationTarget,cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)void|getSourceCustomizer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ISourceCustomizer|customizeIROptimizer(optimizer:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.EMasterOptimizer)void|getGlobalAnalyzer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IGlobalAnalyzer|customAnalysis(simulationContext:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IIRSimulationContext,offset:long,insn:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement,state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)void|setDecompiler(decomp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit)void;decomp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit
C;0;AbstractNativeDecompilerPlugin;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativeDecompilerPlugin;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativePlugin;com.pnfsoftware.jeb.core.units.code.asm.INativeDecompilerPlugin;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativeDecompilerPlugin(type:java.lang.String,priority:double);;propnameUseSSAForm:java.lang.String|propnameMemoryResolutionPolicy:java.lang.String|propnameReconversionMaxCount:java.lang.String|propnameIROptimizerMaxRunCount:java.lang.String|propnameIROptimizerDisableAggressivePass:java.lang.String|propnameASTOptimizerMaxRunCount:java.lang.String|propnameFailOnPipelineError:java.lang.String|propnameStructurerUseVersion:java.lang.String|propnameUseFriendlyVariableNames:java.lang.String
C;0;AbstractNativeDisassemblerPlugin;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativeDisassemblerPlugin;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativePlugin;com.pnfsoftware.jeb.core.units.code.asm.INativeDisassemblerPlugin;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativeDisassemblerPlugin(type:java.lang.String,priority:double);canBeProcessedOutsideCodeObject()boolean;propnamePreferHexAddresses:java.lang.String|propnameAllowAdvancedAnalysis:java.lang.String|propnameAdvancedAnalysisRoutineCountWarning:java.lang.String|propnamePreferSynchronousExecution:java.lang.String|propnameAnalysisStyle:java.lang.String|propnamePerformClassRecovery:java.lang.String|propnamePerformGlobalAnalysis:java.lang.String|propnameDebugInformationUsagePolicy:java.lang.String|propnameDebugInformationRetrievalPolicy:java.lang.String
C;0;AbstractNativePlugin;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativePlugin;com.pnfsoftware.jeb.core.units.AbstractUnitPlugin;com.pnfsoftware.jeb.core.units.code.asm.INativePlugin;com.pnfsoftware.jeb.core.units.code.asm.AbstractNativePlugin(type:java.lang.String,priority:double);setupCustomProperties(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void;
C;0;AbstractOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractOperandBuilder;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.IOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractOperandBuilder(memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea,flags:int,defaultValue:int,defaultValueMask:int)|com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractOperandBuilder(memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea,flags:int)|com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractOperandBuilder(memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea);decodeMemoryArea(code:byte[])int|getMemoryArea()com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea|isOptional(value:long)boolean|getFlags()int;OPTIONAL_DEFAULT_VALUE:int|OPTIONAL_MASK:int|NO_FLAG:int|OPTIONAL:int|flags:int
C;0;AbstractOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractOptimizer;com.pnfsoftware.jeb.core.AbstractPlugin;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractOptimizer(target:java.lang.Object)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractOptimizer();getName()java.lang.String|setName(name:java.lang.String)void|getType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType|getTarget()java.lang.Object|setTarget(target:java.lang.Object)java.lang.Object|getPostProcessingAction()int|getDefaultPriority()double|getRequiredModeThreshold()int|setClassId(classId:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId)void|setType(type:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType)void|setPostProcessingActionFlags(postProcActionFlags:int)void|setRequiredModeThreshold(threshold:int)void|getPreferredExecutionStage()int|setPreferredExecutionStage(preferredExecStage:int)void|setPreferredStage(preferredExecStage:int)void|getPluginInformation()com.pnfsoftware.jeb.core.EditablePluginInformation|getPluginInformation()com.pnfsoftware.jeb.core.IPluginInformation|getClassId()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId;logger:com.pnfsoftware.jeb.util.logging.ILogger
C;0;AbstractPlugin;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.AbstractPlugin;java.lang.Object;com.pnfsoftware.jeb.core.IPlugin;com.pnfsoftware.jeb.core.AbstractPlugin();setData(key:java.lang.Object,value:java.lang.Object)void|getData(key:java.lang.Object)java.lang.Object|dispose()void;
C;0;AbstractProcessor;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractProcessor;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractProcessor(parseCacheLength:int,defaultMode:int,parent:com.pnfsoftware.jeb.core.IUnitCreator,instructionAlign:int,parseBufferBefore:int)|com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractProcessor(parseCacheLength:int,defaultMode:int,parent:com.pnfsoftware.jeb.core.IUnitCreator,instructionAlign:int)|com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractProcessor(parseCacheLength:int,defaultMode:int,endianness:com.pnfsoftware.jeb.util.io.Endianness,instructionAlign:int);getType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getVariant()com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|createEntryPoint(address:long,defaultMode:int)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createEntryPoint(address:long)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|parseWithContext(context:com.pnfsoftware.jeb.core.units.code.asm.IMachineContext)com.pnfsoftware.jeb.core.units.code.IInstruction|getResolver()com.pnfsoftware.jeb.core.units.code.asm.simulator.ICodeResolver|setEndianness(endianness:com.pnfsoftware.jeb.util.io.Endianness)void|setVariant(variant:com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant)void|getMode()int|parseAt(vm:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory,address:long)com.pnfsoftware.jeb.core.units.code.IInstruction|parseAt(bytes:byte[],index:int,end:int)com.pnfsoftware.jeb.core.units.code.IInstruction|getDefaultMode()int|isRISC()boolean|setMode(newMode:int)int|getRegisterName(registerCode:long)java.lang.String|parseWithContextInternal(context:com.pnfsoftware.jeb.core.units.code.asm.IMachineContext)com.pnfsoftware.jeb.core.units.code.IInstruction|getSupportedVariants()java.util.Collection|getSupportedModes()java.util.Collection|getInstructionAlignment()int|setInstructionAlignment(align:int)void|parseAtInternal(bytes:byte[],index:int,end:int)com.pnfsoftware.jeb.core.units.code.IInstruction|setDefaultMode(defaultMode:int)void;supportedModes:java.util.Collection|defaultMode:int|mode:int|supportedVariants:java.util.Collection|variant:com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant
C;0;AbstractQuestionNotification;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.AbstractQuestionNotification;com.pnfsoftware.jeb.core.events.ClientNotification;;com.pnfsoftware.jeb.core.events.AbstractQuestionNotification(question:java.lang.String,defaultResponse:java.lang.Object,askDoNotShowAnymore:boolean);isDoNotShowAnymoreResponse()boolean|isAskDoNotShowAnymore()boolean|setDoNotShowAnymoreResponse(doNotShowAnymoreResponse:boolean)void|getResponse()java.lang.Object|setResponse(response:java.lang.Object)void;
C;0;AbstractRegisterBank;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank(layout:com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout,endianness:com.pnfsoftware.jeb.util.io.Endianness);toString()java.lang.String|getName(regnum:int)java.lang.String|getValue(regnum:int)byte[]|size()int|setValue(regnum:int,bytes:byte[])boolean|getSize(regnum:int)int|getProgramCounter()long|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getBitsize(regnum:int)int|getDirtyRegisters()java.util.Set|setValueAsLong(regnum:int,value:long)boolean|getValueAsLong(regnum:int)java.lang.Long|setDirty(regnum:int)void|clearDirty(regnum:int)void|isDirty(regnum:int)boolean|setAllDirty()void|clearAllDirty()void|getFlags()long|getLayout()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout|getLayout()com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout;values:java.util.Map|dirtyRegisters:java.util.Set
C;0;AbstractRegisterBankLayout;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout();add(entries:java.util.Map,bitsize:int,name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|add(entries:java.util.Map,bitsize:int,name:java.lang.String,altname:java.lang.String,encoding:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding,type:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|toString()java.lang.String|getDescriptionEntryByName(names:java.util.Collection)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|getDescriptionEntryByName(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|getDescriptionEntryByType(type:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|getDescriptionEntryMap()java.util.Map|getCountOfDescriptionEntries()int|getDescriptionEntries()java.util.Collection|getDescriptionEntry(regnum:int)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry;
C;0;AbstractTableDocument;com.pnfsoftware.jeb.core.output.table.impl;com.pnfsoftware.jeb.core.output.table.impl.AbstractTableDocument;com.pnfsoftware.jeb.util.events.EventSource;com.pnfsoftware.jeb.core.output.table.ITableDocument;com.pnfsoftware.jeb.core.output.table.impl.AbstractTableDocument();getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.table.ICellCoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.table.ICellCoordinates)java.lang.String|dispose()void;
C;0;AbstractTextDocument;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextDocument;com.pnfsoftware.jeb.util.events.EventSource;com.pnfsoftware.jeb.core.output.text.ITextDocument;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextDocument();toString()java.lang.String|getFirstAnchor()long|getDocumentPart2(anchorBegin:long,anchorEnd:long)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getInitialAnchor()long|getDocumentPart(anchorId:long,linesAfter:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|addressToCoordinates(address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision)com.pnfsoftware.jeb.core.output.text.ICoordinates|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.text.ICoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates)java.lang.String|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String|dispose()void;
C;0;AbstractTextPartAsDocumentProxy;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextPartAsDocumentProxy;java.lang.Object;com.pnfsoftware.jeb.core.output.text.ITextDocument;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextPartAsDocumentProxy(idoc:com.pnfsoftware.jeb.core.output.text.ITextDocument);getFirstAnchor()long|getDocumentPart2(anchorBegin:long,anchorEnd:long)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getInitialAnchor()long|getDocumentPart(anchorId:long,linesAfter:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getDocumentPart(anchorId:long,linesAfter:int,linesBefore:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getAnchorCount()long|getFullDocument()com.pnfsoftware.jeb.core.output.text.ITextDocument|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getPartAsDocument()com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.text.ICoordinates|addressToCoordinates(address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision)com.pnfsoftware.jeb.core.output.text.ICoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates)java.lang.String|addListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|countListeners()int|removeListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|insertListener(index:int,listener:com.pnfsoftware.jeb.util.events.IEventListener)void|setParentSource(parentSource:com.pnfsoftware.jeb.util.events.IEventSource)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.IEvent)void|getListeners()java.util.List|getParentSource()com.pnfsoftware.jeb.util.events.IEventSource|dispose()void;
C;0;AbstractThreadManager;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.AbstractThreadManager;java.lang.Object;;com.pnfsoftware.jeb.util.concurrent.AbstractThreadManager();start(name:java.lang.String,r:java.lang.Runnable)java.lang.Thread|start(r:java.lang.Runnable)java.lang.Thread|create(r:java.lang.Runnable)java.lang.Thread|stop(t:java.lang.Thread)boolean|monitor(t:java.lang.Thread,provider:com.pnfsoftware.jeb.util.concurrent.IMonitorInfoProvider)boolean;
C;0;AbstractTransientUnitRepresentation;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.AbstractTransientUnitRepresentation;com.pnfsoftware.jeb.core.output.AbstractUnitRepresentation;;com.pnfsoftware.jeb.core.output.AbstractTransientUnitRepresentation(label:java.lang.String)|com.pnfsoftware.jeb.core.output.AbstractTransientUnitRepresentation(label:java.lang.String,defaultRepresentation:boolean)|com.pnfsoftware.jeb.core.output.AbstractTransientUnitRepresentation(id:long,label:java.lang.String,defaultRepresentation:boolean);;
C;0;AbstractTreeDocument;com.pnfsoftware.jeb.core.output.tree.impl;com.pnfsoftware.jeb.core.output.tree.impl.AbstractTreeDocument;com.pnfsoftware.jeb.util.events.EventSource;com.pnfsoftware.jeb.core.output.tree.ITreeDocument;com.pnfsoftware.jeb.core.output.tree.impl.AbstractTreeDocument();getColumnLabels()java.util.List|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getInitialExpansionLevel()int|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.tree.INodeCoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.tree.INodeCoordinates)java.lang.String|dispose()void;
C;0;AbstractTypeIdProvider;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.AbstractTypeIdProvider;java.lang.Object;com.pnfsoftware.jeb.util.serialization.ITypeIdProvider;com.pnfsoftware.jeb.util.serialization.AbstractTypeIdProvider();addAll(provider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider)void|getId(c:java.lang.Class)int|getType(typeId:int)java.lang.Class|getMap()java.util.Map|getReverseMap()java.util.Map|loadTypes(map:java.util.Map)void;
C;0;AbstractUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractUnit;com.pnfsoftware.jeb.core.events.JebEventSource;com.pnfsoftware.jeb.core.units.IUnit;com.pnfsoftware.jeb.core.units.AbstractUnit(formatType:java.lang.String,name:java.lang.String,parent:com.pnfsoftware.jeb.core.units.IUnit)|com.pnfsoftware.jeb.core.units.AbstractUnit(formatType:java.lang.String,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);toString()java.lang.String|getName()java.lang.String|getParent()com.pnfsoftware.jeb.core.IUnitCreator|setName(name:java.lang.String)void|getRealName()java.lang.String|setParent(parent:com.pnfsoftware.jeb.core.IUnitCreator)void|process()boolean|setChild(oldUnit:com.pnfsoftware.jeb.core.units.IUnit,newUnit:com.pnfsoftware.jeb.core.units.IUnit,notify:boolean)boolean|setChild(oldUnit:com.pnfsoftware.jeb.core.units.IUnit,newUnit:com.pnfsoftware.jeb.core.units.IUnit)boolean|logError(recordNotification:boolean,format:java.lang.String,params:java.lang.Object[])void|logException(e:java.lang.Exception)void|isDeserialized()boolean|setProcessed(processed:boolean)void|setProcessed(processed:boolean,notify:boolean)void|hasChildren()boolean|logInfo(recordNotification:boolean,format:java.lang.String,params:java.lang.Object[])void|onPropertyChange(fqPropertyName:java.lang.String)void|logWarn(recordNotification:boolean,format:java.lang.String,params:java.lang.Object[])void|processInternal()boolean|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getNotificationManager()com.pnfsoftware.jeb.core.units.IUnitNotificationManager|postDeserialization(prj:com.pnfsoftware.jeb.core.IRuntimeProject)void|initializePropertyObjects(parent:com.pnfsoftware.jeb.core.IUnitCreator,processor:com.pnfsoftware.jeb.core.units.IUnitProcessor,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|getCreationTimestamp()long|generateQuickState()com.pnfsoftware.jeb.core.units.IQuickStateObject|internalSwapChildren()void|setStatus(status:java.lang.String)void|setStatus(status:java.lang.String,notify:boolean)void|addNotification(notification:com.pnfsoftware.jeb.core.units.IUnitNotification)void|getChildren()java.util.List|getNotes()java.lang.String|setNotes(notes:java.lang.String)void|dispose()void|getFormatter()com.pnfsoftware.jeb.core.output.IUnitFormatter|addChildUnit(unit:com.pnfsoftware.jeb.core.units.IUnit)void|getInterpreters()java.util.List|setRealName(name:java.lang.String)void|isDisposed()boolean|removeChild(unit:com.pnfsoftware.jeb.core.units.IUnit,notify:boolean)void|removeChild(unit:com.pnfsoftware.jeb.core.units.IUnit)void|setUnitProcessor(processor:com.pnfsoftware.jeb.core.units.IUnitProcessor)void|getFormatType()java.lang.String|getStatus()java.lang.String|isProcessed()boolean|getContributions()java.util.List|canBePersisted()boolean|addChild(unit:com.pnfsoftware.jeb.core.units.IUnit)void|addChild(unit:com.pnfsoftware.jeb.core.units.IUnit,persisted:boolean)void|addChild(unit:com.pnfsoftware.jeb.core.units.IUnit,persisted:boolean,notify:boolean)void|getDescription()java.lang.String|getIconData()byte[]|getUnitProcessor()com.pnfsoftware.jeb.core.units.IUnitProcessor|getLock()com.pnfsoftware.jeb.core.units.IUnitLock|isTransientChild(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean;
C;0;AbstractUnitIdentifier;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractUnitIdentifier;com.pnfsoftware.jeb.core.AbstractPlugin;com.pnfsoftware.jeb.core.units.IUnitIdentifier;com.pnfsoftware.jeb.core.units.AbstractUnitIdentifier(type:java.lang.String,priority:double);getPriority()double|prepare(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.units.IUnit|prepare(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,identmap:java.util.Map)com.pnfsoftware.jeb.core.units.IUnit|initialize(parentPdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|checkBytes(input:com.pnfsoftware.jeb.core.input.IInput,offset:int,marker:byte[])boolean|checkBytes(input:com.pnfsoftware.jeb.core.input.IInput,offset:int,header:java.lang.String)boolean|checkBytes(data:byte[],offset:int,marker:int[])boolean|checkBytes(data:byte[],offset:int,marker:byte[])boolean|checkBytes(input:com.pnfsoftware.jeb.core.input.IInput,offset:int,marker:int[])boolean|readHeaderByte(input:com.pnfsoftware.jeb.core.input.IInput,offset:int)int|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|acceptAnyInputBytes()boolean|getTypeIdProvider()com.pnfsoftware.jeb.util.serialization.ITypeIdProvider|canIdentify(input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator,name:java.lang.String,identmap:java.util.Map)boolean|canIdentify(input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator)boolean|getFormatType()java.lang.String;type:java.lang.String|priority:double|pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|pm:com.pnfsoftware.jeb.core.properties.IPropertyManager
C;0;AbstractUnitPlugin;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.AbstractUnitPlugin;com.pnfsoftware.jeb.core.AbstractPlugin;com.pnfsoftware.jeb.core.units.IUnitPlugin;com.pnfsoftware.jeb.core.units.AbstractUnitPlugin(type:java.lang.String,priority:double);getPriority()double|initialize(parentPdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getTypeIdProvider()com.pnfsoftware.jeb.util.serialization.ITypeIdProvider|getFormatType()java.lang.String;type:java.lang.String|priority:double|pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|pm:com.pnfsoftware.jeb.core.properties.IPropertyManager
C;0;AbstractUnitProvider;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.AbstractUnitProvider;java.lang.Object;com.pnfsoftware.jeb.core.units.IUnitProvider;com.pnfsoftware.jeb.core.units.impl.AbstractUnitProvider(formatType:java.lang.String,description:java.lang.String,presentations:java.util.List);getFormatType()java.lang.String|getDescription()java.lang.String;
C;0;AbstractUnitRepresentation;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.AbstractUnitRepresentation;java.lang.Object;com.pnfsoftware.jeb.core.output.IUnitDocumentPresentation;com.pnfsoftware.jeb.core.output.AbstractUnitRepresentation(id:long,label:java.lang.String,defaultRepresentation:boolean)|com.pnfsoftware.jeb.core.output.AbstractUnitRepresentation(label:java.lang.String,defaultRepresentation:boolean)|com.pnfsoftware.jeb.core.output.AbstractUnitRepresentation(label:java.lang.String);toString()java.lang.String|getId()long|isDefaultRepresentation()boolean|getLabel()java.lang.String;
C;0;AbstractValueComposite;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValueComposite;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.ITypedValue;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValueComposite(objectId:long,refTypeId:long);format()java.lang.String|getValue()java.lang.Object|getValue()java.util.List|hasChildren()boolean|getRefTypeId()long|getObjectId()long;refTypeId:long
C;0;AbstractValueNumber;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValueNumber;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValuePrimitive;;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValueNumber();toString()java.lang.String|getValue()java.lang.Number|getValue()java.lang.Object|parseNumber(typeHint:java.lang.String,value:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValueNumber;
C;0;AbstractValuePrimitive;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValuePrimitive;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.ITypedValue;com.pnfsoftware.jeb.core.units.code.debug.impl.AbstractValuePrimitive();format()java.lang.String|parseValue(type:java.lang.String,value:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.ITypedValue;
C;0;AbstractVirtualMemory;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.AbstractVirtualMemory;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory;com.pnfsoftware.jeb.core.units.code.asm.memory.AbstractVirtualMemory();readInt(address:long,end:com.pnfsoftware.jeb.util.io.Endianness)int|readInt(address:long)int|writeInt(address:long,v:int,end:com.pnfsoftware.jeb.util.io.Endianness)void|writeInt(address:long,v:int)void|readByte(address:long)byte|readLong(address:long)long|readLong(address:long,end:com.pnfsoftware.jeb.util.io.Endianness)long|readShort(address:long)short|readShort(address:long,end:com.pnfsoftware.jeb.util.io.Endianness)short|writeBEShort(address:long,v:short)void|readLEShort(address:long)short|readLEInt(address:long)int|readBEInt(address:long)int|writeBEInt(address:long,v:int)void|readBELong(address:long)long|roundToPage(address:long)long|writeBELong(address:long,v:long)void|roundToSize(address:long)long|readPointer(address:long)long|writeLEInt(address:long,v:int)void|writeLEShort(address:long,v:short)void|writeLELong(address:long,v:long)void|freePage(address:long)void|readLELong(address:long)long|readBEShort(address:long)short|allocatePage(address:long,protection:int)void|addFreeListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryFreeListener)void|addWriteListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryWriteListener)void|addAllocListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryAllocListener)void|writePointer(address:long,ptr:long)void|writeShort(address:long,v:short,end:com.pnfsoftware.jeb.util.io.Endianness)void|writeShort(address:long,v:short)void|writeLong(address:long,v:long,end:com.pnfsoftware.jeb.util.io.Endianness)void|writeLong(address:long,v:long)void|writeByte(address:long,v:byte)void|getAllocListeners()java.util.List|getProtectionListeners()java.util.List|getPropertyListeners()java.util.List|getWriteListeners()java.util.List|removePropertyListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryPropertyListener)void|removeAllocListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryAllocListener)void|addPropertyListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryPropertyListener)void|removeFreeListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryFreeListener)void|addProtectionListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryProtectionListener)void|removeProtectionListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryProtectionListener)void|removeWriteListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryWriteListener)void|getFreeListeners()java.util.List;
C;0;AbstractVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractVisitResults;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractVisitResults()|com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractVisitResults(flags:int);interrupt(success:boolean)void|isVisitedSuccessfully()boolean|isInterruptedVisit()boolean|setReplacedNode(newNode:java.lang.Object)void|parentsIterator()java.util.Iterator|setVisitResult(success:boolean)void|pushParent(parent:java.lang.Object)void|popParent()void|skipChildren()void|getFlags()int;skipAssignmentDestination:boolean|skipVisitingChildren:boolean|currentNode:java.lang.Object|visitedChildPosition:int|parents:java.util.Deque
C;0;ActionCommentData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionCommentData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionCommentData();setComment(comment:java.lang.String)void|getComment()java.lang.String|setNewComment(newComment:java.lang.String)void|getNewComment()java.lang.String;
C;0;ActionContext;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionContext;java.lang.Object;;com.pnfsoftware.jeb.core.actions.ActionContext(unit:com.pnfsoftware.jeb.core.units.IInteractiveUnit,actionId:int,itemId:long,address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)|com.pnfsoftware.jeb.core.actions.ActionContext(unit:com.pnfsoftware.jeb.core.units.IInteractiveUnit,actionId:int,itemId:long,address:java.lang.String)|com.pnfsoftware.jeb.core.actions.ActionContext(unit:com.pnfsoftware.jeb.core.units.IInteractiveUnit,actionId:int,itemId:long);toString()java.lang.String|getAddress()java.lang.String|getAddressPrecision()com.pnfsoftware.jeb.core.output.AddressConversionPrecision|getActionId()int|getItemId()long|getUnit()com.pnfsoftware.jeb.core.units.IInteractiveUnit;
C;0;ActionConvertData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionConvertData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionConvertData();;
C;0;ActionCreatePackageData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionCreatePackageData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionCreatePackageData();getCurrentPackageFqname()java.lang.String|setCurrentPackageFqname(currentPackageFqname:java.lang.String)void|getFqname()java.lang.String|setFqname(fqname:java.lang.String)void;
C;0;ActionData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionData;java.lang.Object;com.pnfsoftware.jeb.core.actions.IActionData;com.pnfsoftware.jeb.core.actions.ActionData();getValue(key:java.lang.String)java.lang.Object|setValue(key:java.lang.String,value:java.lang.Object)void|setDescription(description:java.lang.String)void|getDescription()java.lang.String;
C;0;ActionDeleteData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionDeleteData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionDeleteData();;
C;0;ActionMoveToPackageData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionMoveToPackageData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionMoveToPackageData();getCurrentPackageFqname()java.lang.String|getDstPackageFqname()java.lang.String|setDstPackageFqname(dstPackageFqname:java.lang.String)void|setCurrentPackageFqname(currentPackageFqname:java.lang.String)void;
C;0;ActionOverridesData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionOverridesData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionOverridesData();setAddresses(addresses:java.util.List)void|getAddresses()java.util.List;
C;0;ActionRenameData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionRenameData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionRenameData();getCurrentName()java.lang.String|getNewName()java.lang.String|setOriginalName(originalName:java.lang.String)void|setCurrentName(name:java.lang.String)void|getOriginalName()java.lang.String|setNewName(name:java.lang.String)void;
C;0;ActionReplaceData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionReplaceData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionReplaceData();getWantedReplacement()java.lang.Object|setWantedReplacement(repl:java.lang.Object)void|setTargetObject(o:java.lang.Object)void|getTargetObject()java.lang.Object;
C;0;ActionTypeHierarchyData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionTypeHierarchyData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionTypeHierarchyData();setBaseNodeForAscendingHierarchy(node:com.pnfsoftware.jeb.core.output.tree.ICodeNode)void|getBaseNodeForAscendingHierarchy()com.pnfsoftware.jeb.core.output.tree.ICodeNode|getBaseNode()com.pnfsoftware.jeb.core.output.tree.ICodeNode|setBaseNode(node:com.pnfsoftware.jeb.core.output.tree.ICodeNode)void;
C;0;ActionXrefsData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.ActionXrefsData;com.pnfsoftware.jeb.core.actions.ActionData;;com.pnfsoftware.jeb.core.actions.ActionXrefsData();getTarget()java.lang.String|setTarget(target:java.lang.String)void|setAddresses(addresses:java.util.List)void|getAddresses()java.util.List|getDetails()java.util.List|setDetails(details:java.util.List)void;
C;0;Actions;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.Actions;java.lang.Object;;com.pnfsoftware.jeb.core.actions.Actions();idToName(id:int)java.lang.String;NOOP:int|DELETE:int|RENAME:int|COMMENT:int|QUERY_XREFS:int|CONVERT:int|REPLACE:int|CREATE_PACKAGE:int|MOVE_TO_PACKAGE:int|QUERY_TYPE_HIER:int|QUERY_OVERRIDES:int
C;0;ActiveTask;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.ActiveTask;java.lang.Object;java.lang.Runnable;com.pnfsoftware.jeb.util.concurrent.ActiveTask()|com.pnfsoftware.jeb.util.concurrent.ActiveTask(name:java.lang.String);run()void|join(millis:long)boolean|join()boolean|start(completion:java.lang.Runnable)boolean|interrupt()boolean|cancel()boolean|cancel(interruptThread:boolean)boolean|isDone()boolean|isCancelled()boolean|onPreExecution()void|runi()void|onPostExecution()void|onException(e:java.lang.Exception)void;
C;1;AddressBase;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter.AddressBase;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase|nextBase()com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase;LABEL:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase|ABSOLUTE_ADDRESS:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase|RELATIVE_ADDRESS_H:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase|RELATIVE_ADDRESS_D:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase
C;0;AddressConversionPrecision;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.AddressConversionPrecision;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.output.AddressConversionPrecision[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.output.AddressConversionPrecision;DEFAULT:com.pnfsoftware.jeb.core.output.AddressConversionPrecision|COARSE:com.pnfsoftware.jeb.core.output.AddressConversionPrecision|FINE:com.pnfsoftware.jeb.core.output.AddressConversionPrecision
C;0;AddressFormatter;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter()|com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter(base:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase,pcName:java.lang.String,hexNotation:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType);format(unit:com.pnfsoftware.jeb.core.units.INativeCodeUnit,bitsize:int,address:long,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric,base:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase)java.lang.String|format(unit:com.pnfsoftware.jeb.core.units.INativeCodeUnit,bitsize:int,address:long,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric)java.lang.String|format(bitsize:int,address:long,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric)java.lang.String|setBase(base:com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase)void|getBase()com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter$AddressBase|setRelativePrefix(relativePrefix:java.lang.String)void|getRelativePrefix()java.lang.String|getHexaNotationType()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType|setHexaNotationType(hexaNotationType:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType)void;
C;0;AddressHashMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.AddressHashMap;java.util.concurrent.ConcurrentHashMap;;com.pnfsoftware.jeb.util.collect.AddressHashMap(bitsize:int);put(arg0:java.lang.Object,arg1:java.lang.Object)java.lang.Object|put(k:java.lang.Long,v:java.lang.Object)java.lang.Object;
C;0;AddressHashSet;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.AddressHashSet;com.pnfsoftware.jeb.util.collect.ConcurrentHashSet;;com.pnfsoftware.jeb.util.collect.AddressHashSet(bitsize:int);add(arg0:java.lang.Object)boolean|add(k:java.lang.Long)boolean;
C;0;AddressSegmentMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.AddressSegmentMap;com.pnfsoftware.jeb.util.collect.SegmentMap;;com.pnfsoftware.jeb.util.collect.AddressSegmentMap(bitsize:int);isValidKey(arg0:java.lang.Comparable)boolean|isValidKey(k:java.lang.Long)boolean;
C;0;AddressTreeMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.AddressTreeMap;java.util.concurrent.ConcurrentSkipListMap;;com.pnfsoftware.jeb.util.collect.AddressTreeMap(bitsize:int);put(arg0:java.lang.Object,arg1:java.lang.Object)java.lang.Object|put(k:java.lang.Long,v:java.lang.Object)java.lang.Object;
C;0;AddressTreeSet;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.AddressTreeSet;java.util.concurrent.ConcurrentSkipListSet;;com.pnfsoftware.jeb.util.collect.AddressTreeSet(bitsize:int);add(arg0:java.lang.Object)boolean|add(k:java.lang.Long)boolean;
C;0;AddressableInstruction;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.AddressableInstruction;java.lang.Object;com.pnfsoftware.jeb.core.units.code.ILocatedInstruction;com.pnfsoftware.jeb.core.units.code.AddressableInstruction(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction);toString()java.lang.String|format(context:java.lang.Object)java.lang.String|getSize()int|getOffset()long|getPrefix()java.lang.String|getBreakingFlow(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.IFlowInformation|getBreakingFlow()com.pnfsoftware.jeb.core.units.code.IFlowInformation|getRoutineCall()com.pnfsoftware.jeb.core.units.code.IFlowInformation|getRoutineCall(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.IFlowInformation|getDefUse(def:java.util.List,use:java.util.List,context:java.lang.Object)void|canThrow()boolean|isConditional()boolean|getProcessorMode()int|getInstruction()com.pnfsoftware.jeb.core.units.code.IInstruction|getMnemonic()java.lang.String|getOperands()com.pnfsoftware.jeb.core.units.code.IInstructionOperand[]|getCode()byte[]|getIndirectRoutineCall(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.IFlowInformation|getIndirectRoutineCall()com.pnfsoftware.jeb.core.units.code.IFlowInformation;
C;0;AggregatorDispatcher;com.pnfsoftware.jeb.util.events;com.pnfsoftware.jeb.util.events.AggregatorDispatcher;java.lang.Object;com.pnfsoftware.jeb.util.events.IEventListener;com.pnfsoftware.jeb.util.events.AggregatorDispatcher(capacity:int,triggerResolution:long)|com.pnfsoftware.jeb.util.events.AggregatorDispatcher();resolution()long|capacity()int|onEvent(e:com.pnfsoftware.jeb.util.events.IEvent)void|unattended()int|onMultipleEvents(events:java.util.List)void;
C;0;AlphanumCharComparator;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.AlphanumCharComparator;java.lang.Object;java.util.Comparator;com.pnfsoftware.jeb.util.format.AlphanumCharComparator()|com.pnfsoftware.jeb.util.format.AlphanumCharComparator(caseSensitive:boolean);compare(arg0:java.lang.Object,arg1:java.lang.Object)int|compare(o1:java.lang.Character,o2:java.lang.Character)int;
C;0;Anchor;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.Anchor;java.lang.Object;com.pnfsoftware.jeb.core.output.text.IAnchor;com.pnfsoftware.jeb.core.output.text.impl.Anchor(id:long,lineindex:int);toString()java.lang.String|getLineIndex()int|setIdentifier(id:long)void|setLineIndex(index:int)void|getIdentifier()long;
C;0;ArraySeekableByteChannel;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.ArraySeekableByteChannel;java.lang.Object;java.nio.channels.SeekableByteChannel;com.pnfsoftware.jeb.util.io.ArraySeekableByteChannel(data:byte[])|com.pnfsoftware.jeb.util.io.ArraySeekableByteChannel(data:byte[],offset:int,length:int);size()long|position()long|position(newPosition:long)java.nio.channels.SeekableByteChannel|write(src:java.nio.ByteBuffer)int|read(dst:java.nio.ByteBuffer)int|close()void|truncate(size:long)java.nio.channels.SeekableByteChannel|isOpen()boolean;
C;0;ArrayUtil;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ArrayUtil;java.lang.Object;;com.pnfsoftware.jeb.util.collect.ArrayUtil();find(array:char[],value:char)int|find(array:short[],value:short)int|find(array:boolean[],value:boolean)int|find(array:byte[],value:byte)int|find(array:double[],value:double)int|find(array:float[],value:float)int|find(array:long[],value:long)int|find(array:int[],value:int)int|asList(array:float[])java.util.List|asList(array:long[])java.util.List|asList(array:double[])java.util.List|asList(array:boolean[])java.util.List|asList(array:byte[])java.util.List|asList(array:short[])java.util.List|asList(array:char[])java.util.List|asList(array:int[])java.util.List|swap(array:float[],offset:int,size:int)void|swap(array:float[])void|swap(array:long[])void|swap(array:long[],offset:int,size:int)void|swap(array:java.lang.Object[])void|swap(array:java.lang.Object[],offset:int,size:int)void|swap(array:double[])void|swap(array:double[],offset:int,size:int)void|swap(array:short[],offset:int,size:int)void|swap(array:byte[])void|swap(array:byte[],offset:int,size:int)void|swap(array:boolean[])void|swap(array:boolean[],offset:int,size:int)void|swap(array:int[])void|swap(array:int[],offset:int,size:int)void|swap(array:char[])void|swap(array:char[],offset:int,size:int)void|swap(array:short[])void|integersToBytes(input:int[])byte[]|unsignedBytesToIntegers(input:byte[])int[]|checkOffsetAndCount(arrayLength:int,offset:int,count:int)void|copyBytes(dst:byte[],dstOffset:int,src:byte[],srcOffset:int,size:int)void|isSled(array:byte[],value:byte)boolean|bytesToIntegers(input:byte[])int[]|compareBytes(array1:byte[],pos1:int,array2:byte[],pos2:int,size:int)int|findByReference(array:java.lang.Object[],value:java.lang.Object)int|findByEquality(array:java.lang.Object[],value:java.lang.Object)int;NO_OBJECT:java.lang.Object[]|NO_STRING:java.lang.String[]|NO_BOOLEAN:boolean[]|NO_BYTE:byte[]|NO_CHAR:char[]|NO_SHORT:short[]|NO_INT:int[]|NO_LONG:long[]|NO_FLOAT:float[]|NO_DOUBLE:double[]
C;0;Artifact;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.Artifact;com.pnfsoftware.jeb.core.events.JebEventSource;com.pnfsoftware.jeb.core.IArtifact;com.pnfsoftware.jeb.core.Artifact(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput);toString()java.lang.String|getName()java.lang.String|getParent()com.pnfsoftware.jeb.core.IUnitCreator|setName(name:java.lang.String)void|setInput(input:com.pnfsoftware.jeb.core.input.IInput)void|getInput()com.pnfsoftware.jeb.core.input.IInput|getCreationTimestamp()long|getNotes()java.lang.String|setNotes(notes:java.lang.String)void;EMPTY:com.pnfsoftware.jeb.core.Artifact
C;0;AsciiDocument;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.AsciiDocument;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextDocument;;com.pnfsoftware.jeb.core.output.text.impl.AsciiDocument(input:com.pnfsoftware.jeb.core.input.IInput);getDocumentPart(anchorId:long,linesAfter:int,linesBefore:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getAnchorCount()long|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.text.ICoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String;
C;0;AssemblyItem;com.pnfsoftware.jeb.core.output.code;com.pnfsoftware.jeb.core.output.code.AssemblyItem;com.pnfsoftware.jeb.core.output.text.impl.TextItem;;com.pnfsoftware.jeb.core.output.code.AssemblyItem(offset:int,length:int)|com.pnfsoftware.jeb.core.output.code.AssemblyItem(offset:int,length:int,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers,itemId:long,flags:int);;ITEM_TYPE_ADDRESS:long|ITEM_TYPE_REGISTER:long|ITEM_TYPE_MNEMONIC:long|ITEM_TYPE_IMMEDIATE:long|ITEM_TYPE_LOCAL:long|ITEM_TYPE_TYPE:long|ITEM_TYPE_METHOD:long|ITEM_TYPE_STRUCTFIELD:long|ITEM_TYPE_DATA:long|ITEM_TYPE_IDENT:long|ITEM_TYPE_CLASS:long|ITEM_TYPE_FIELD:long
C;0;Assert;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.Assert;java.lang.Object;;com.pnfsoftware.jeb.util.base.Assert();fail(message:java.lang.String)void|fail()void|a(expression:boolean,message:java.lang.String)void|a(expression:boolean,message:java.lang.String,args:java.lang.Object[])void|a(expression:boolean)void|debugFail(t:java.lang.Throwable)void|debugFail()void|debugFail(message:java.lang.String)void;
C;0;AssetManager;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.AssetManager;java.lang.Object;;com.pnfsoftware.jeb.core.AssetManager();getAssetSize(name:java.lang.String)int|getAsset(name:java.lang.String)java.io.InputStream|getAssetBytes(name:java.lang.String)byte[];
C;1;Associativity;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType.Associativity;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType$Associativity[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType$Associativity;LEFT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType$Associativity|RIGHT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType$Associativity
C;1;Attribute;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block.Attribute;java.lang.Object;;;toString()java.lang.String|getValue()byte[]|getId()int;
I;0;AutoCloseable2;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.AutoCloseable2;;java.lang.AutoCloseable;;close()void;
C;0;AutoLabelPolicy;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy;OFF:com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy|ITEM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy|ON:com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy
C;0;AutocompletionResult;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.AutocompletionResult;java.lang.Object;;com.pnfsoftware.jeb.util.interpreter.AutocompletionResult(autocompletes:java.util.List,lastSeparator:char)|com.pnfsoftware.jeb.util.interpreter.AutocompletionResult(autocompletes:java.util.List)|com.pnfsoftware.jeb.util.interpreter.AutocompletionResult();add(autocompl:java.lang.String)void|getAutocompletes()java.util.List|getLastSeparator()char|filterStartsWith(text:java.lang.String,toks:java.util.List)java.util.List;
C;1;Base;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.NumberFormatter.Base;java.lang.Enum;;;values()com.pnfsoftware.jeb.util.format.NumberFormatter$Base[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.format.NumberFormatter$Base|nextBase()com.pnfsoftware.jeb.util.format.NumberFormatter$Base|isStandard()boolean;BINARY:com.pnfsoftware.jeb.util.format.NumberFormatter$Base|OCTAL:com.pnfsoftware.jeb.util.format.NumberFormatter$Base|DECIMAL:com.pnfsoftware.jeb.util.format.NumberFormatter$Base|HEXADECIMAL:com.pnfsoftware.jeb.util.format.NumberFormatter$Base|ASCII:com.pnfsoftware.jeb.util.format.NumberFormatter$Base
C;0;Base64;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.Base64;java.lang.Object;;;decode(s:java.lang.String)byte[]|decode(s:java.lang.String,options:int)byte[]|decode(source:byte[])byte[]|decode(source:byte[],off:int,len:int,options:int)byte[]|encode(raw:java.nio.ByteBuffer,encoded:java.nio.CharBuffer)void|encode(raw:java.nio.ByteBuffer,encoded:java.nio.ByteBuffer)void|encodeBytesToBytes(source:byte[])byte[]|encodeBytesToBytes(source:byte[],off:int,len:int,options:int)byte[]|encodeFileToFile(infile:java.lang.String,outfile:java.lang.String)void|encodeObject(serializableObject:java.io.Serializable)java.lang.String|encodeObject(serializableObject:java.io.Serializable,options:int)java.lang.String|decodeToFile(dataToDecode:java.lang.String,filename:java.lang.String)void|decodeFileToFile(infile:java.lang.String,outfile:java.lang.String)void|decodeToObject(encodedObject:java.lang.String,options:int,loader:java.lang.ClassLoader)java.lang.Object|decodeToObject(encodedObject:java.lang.String)java.lang.Object|decodeFromFile(filename:java.lang.String)byte[]|encodeToFile(dataToEncode:byte[],filename:java.lang.String)void|encodeFromFile(filename:java.lang.String)java.lang.String|encodeBytes(source:byte[],off:int,len:int,options:int)java.lang.String|encodeBytes(source:byte[],off:int,len:int)java.lang.String|encodeBytes(source:byte[],options:int)java.lang.String|encodeBytes(source:byte[])java.lang.String;NO_OPTIONS:int|ENCODE:int|DECODE:int|GZIP:int|DONT_GUNZIP:int|DO_BREAK_LINES:int|URL_SAFE:int|ORDERED:int
C;0;BashHelper;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.BashHelper;java.lang.Object;;com.pnfsoftware.jeb.util.base.BashHelper();env(varname:java.lang.String)java.lang.String|env()java.util.Map;
C;0;BasicBlock;com.pnfsoftware.jeb.core.units.code.android.controlflow;com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock;java.lang.Object;com.pnfsoftware.jeb.core.units.code.IBasicBlock;com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock();add(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction)void|remove(index:int)boolean|get(arg0:int)com.pnfsoftware.jeb.core.units.code.IInstruction|get(index:int)com.pnfsoftware.jeb.core.units.code.ILocatedInstruction|toString()java.lang.String|isEmpty()boolean|size()int|getLast()com.pnfsoftware.jeb.core.units.code.ILocatedInstruction|getIrregularOutputBlocks()java.util.List|getAllOutputBlocks()java.util.List|isSelfReferencing()boolean|canThrow()boolean|getInstruction(index:int)com.pnfsoftware.jeb.core.units.code.ILocatedInstruction|getInstructions()java.util.List|getIrregularInputBlocks()java.util.List|getAllInputBlocks()java.util.List|getAddressOfInstruction(index:int)long|getIndexOfInstruction(address:long)int|outsize()int|irrinsize()int|irroutsize()int|alloutsize()int|getOutputBlock(index:int)com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|getInputBlocks()java.util.List|getOutputBlocks()java.util.List|allinsize()int|isInfiniteLoop()boolean|getFirstAddress()long|getEndAddress()long|getLastAddress()long|getInputBlock(index:int)com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|insize()int;
C;0;BasicBlock;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock;java.lang.Object;com.pnfsoftware.jeb.core.units.code.IBasicBlock|java.lang.Iterable;com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock(base:long,insns:java.util.List,dstOffsets:java.util.List,irrdstOffsets:java.util.List,unknownDst:boolean)|com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock(base:long);add(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)void|remove(index:int)boolean|get(index:int)com.pnfsoftware.jeb.core.units.code.IInstruction|toString()java.lang.String|isEmpty()boolean|iterator()java.util.Iterator|size()int|set(index:int,insn:com.pnfsoftware.jeb.core.units.code.IInstruction)com.pnfsoftware.jeb.core.units.code.IInstruction|getLast()com.pnfsoftware.jeb.core.units.code.IInstruction|getFullDefUseChains(index:int)java.util.Map|getIrregularOutputBlock(index:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getFullUseDefChains(index:int)java.util.Map|addressableInstructions()java.lang.Iterable|getIrregularOutputBlocks()java.util.List|getTrackerReachingRegisters()com.pnfsoftware.jeb.core.units.code.asm.cfg.Tracker|getSimpleUseDefChains(index:int)java.util.Map|getSimpleDefUseChains(index:int)java.util.Map|getTrackerLiveRegisters()com.pnfsoftware.jeb.core.units.code.asm.cfg.Tracker|getAllOutputBlocks()java.util.List|isSelfReferencing()boolean|getInstruction(address:long)com.pnfsoftware.jeb.core.units.code.IInstruction|getInstructions()java.util.List|getBranchingInstruction2()com.pnfsoftware.jeb.core.units.code.AddressableInstruction|getBranchingInstruction2(includeBreaking:boolean,includeCalling:boolean)com.pnfsoftware.jeb.core.units.code.AddressableInstruction|getIrregularInputBlock(index:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getIrregularInputBlocks()java.util.List|getAllInputBlocks()java.util.List|getAddressOfInstruction(index:int)long|getIndexOfInstruction(address:long)int|get2(index:int)com.pnfsoftware.jeb.core.units.code.AddressableInstruction|getLast2()com.pnfsoftware.jeb.core.units.code.AddressableInstruction|outsize()int|irrinsize()int|irroutsize()int|alloutsize()int|getOutputBlock(index:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getInputBlocks()java.util.List|getOutputBlocks()java.util.List|allinsize()int|hasUnknownDst()boolean|isInfiniteLoop()boolean|getFirstAddress()long|shallowCopy(copyBlockReferences:boolean)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getEndAddress()long|getLastAddress()long|getInputBlock(index:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|insize()int|removeData(name:java.lang.String)boolean|setData(name:java.lang.String,object:java.lang.Object)void|getData(name:java.lang.String)java.lang.Object;
C;0;BasicBlockBuilder;com.pnfsoftware.jeb.core.units.code.android.controlflow;com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlockBuilder;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlockBuilder();toString()java.lang.String;insns:java.util.List|dst_offsets:java.util.List|irrdst_offsets:java.util.List
C;0;BiMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.BiMap;java.lang.Object;;com.pnfsoftware.jeb.util.collect.BiMap()|com.pnfsoftware.jeb.util.collect.BiMap(keyOrder:com.pnfsoftware.jeb.util.collect.KeyOrder);remove(key:java.lang.Object)java.lang.Object|get(key:java.lang.Object)java.lang.Object|put(key:java.lang.Object,value:java.lang.Object)java.lang.Object|toString()java.lang.String|values()java.util.Set|clear()void|isEmpty()boolean|size()int|putAll(m:java.util.Map)void|keySet()java.util.Set|containsKey(key:java.lang.Object)boolean|containsValue(value:java.lang.Object)boolean|removeValue(value:java.lang.Object)java.lang.Object|getKeyForValue(value:java.lang.Object)java.lang.Object;
C;0;BinaryPattern;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPattern;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBinaryPattern;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPattern(binary:byte[],mask:byte[],realStartOffset:int,processorMode:int)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPattern(binary:byte[],mask:byte[],realStartOffset:int)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPattern(binary:byte[],mask:byte[])|com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPattern(binary:byte[]);toString()java.lang.String|getMask()byte[]|getExtra()java.lang.Object|getProcessorMode()int|getRealStartOffset()int|getBinary()byte[]|validate(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,address:long,buffer:byte[],offset:int,offsetEnd:int)boolean;
C;0;BinaryPatternVerifier;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPatternVerifier;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BinaryPatternVerifier();clear()void|verify(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,address:long,buffer:byte[],offset:int,offsetEnd:int)com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBinaryPattern|verify(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,address:long,buffer:byte[],offset:int,offsetEnd:int,patternSize:int)com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBinaryPattern|addPatterns(patterns:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBinaryPattern[])void|addPatterns(patterns:java.util.Collection)void|getPatterns()java.util.Collection|addPattern(pattern:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBinaryPattern)void|getLongestSize()int;
C;0;BinaryWrapperUnit;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.BinaryWrapperUnit;com.pnfsoftware.jeb.core.units.impl.WrapperUnit;com.pnfsoftware.jeb.core.units.IBinaryUnit;com.pnfsoftware.jeb.core.units.impl.BinaryWrapperUnit(unit:com.pnfsoftware.jeb.core.units.IBinaryUnit,provider:com.pnfsoftware.jeb.core.units.IUnitProvider);getInput()com.pnfsoftware.jeb.core.input.IInput|getConsummedSize()int|getMimeType()java.lang.String;
C;0;BitMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.BitMap;java.lang.Object;;com.pnfsoftware.jeb.util.collect.BitMap(bitsize:int);get(i:int)boolean|equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|clear()void|isEmpty()boolean|size()int|set(i:int,v:boolean)boolean|formatAsRanges()java.lang.String|formatAsRanges(useExcludedEnds:boolean)java.lang.String|isFull()boolean|countOnes()int|countZeros()int;
C;0;Booleans;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.Booleans;java.lang.Object;;com.pnfsoftware.jeb.util.primitives.Booleans();toBoolean(object:java.lang.Boolean)boolean|isTrue(object:java.lang.Boolean)boolean|isFalse(object:java.lang.Boolean)boolean;
C;0;BranchTarget;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BranchTarget;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchTarget;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BranchTarget(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.BranchTarget(ep:com.pnfsoftware.jeb.core.units.code.EntryPointDescription)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.BranchTarget();equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getInternalAddress()com.pnfsoftware.jeb.core.units.code.IEntryPointDescription|getInternalAddress()com.pnfsoftware.jeb.core.units.code.EntryPointDescription|getRoutine()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|isInternal()boolean;
C;1;BranchType;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator.BranchType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator$BranchType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator$BranchType;CALL:com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator$BranchType|JMP:com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator$BranchType
C;1;BreakFlowResult;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil.BreakFlowResult;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowResult(status:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus,lastInstruction:boolean);isLastInstruction()boolean|getStatus()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus;
C;1;BreakFlowStatus;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil.BreakFlowStatus;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus;TRUE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus|FALSE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus|BREAK:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus|BOTH:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus|UNKNOWN:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus
C;0;BufferSink;com.pnfsoftware.jeb.util.logging;com.pnfsoftware.jeb.util.logging.BufferSink;com.pnfsoftware.jeb.util.logging.Sink;;com.pnfsoftware.jeb.util.logging.BufferSink(buffer:java.util.List);;
C;1;Builder;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.TargetProperties.Builder;java.lang.Object;;;build()com.pnfsoftware.jeb.core.units.code.asm.decompiler.TargetProperties|setDiscardable(discardable:java.lang.Boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.TargetProperties$Builder;
C;1;Builder;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation.Builder;java.lang.Object;;com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder();setEndianness(endianness:com.pnfsoftware.jeb.util.io.Endianness)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|build()com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation|setTargetProcessor(processorType:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setTargetSubsystem(ssType:com.pnfsoftware.jeb.core.units.codeobject.SubsystemType)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setCompilationTimestamp(compilationTimestamp:long)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setEntryPoint(entryPoint:long)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setVersion(version:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setFlags(flags:int)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setWordSize(wordSize:int)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setImageSize(imageSize:long)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setImageBase(imageBase:long)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder|setOverlayOffset(overlayOffset:long)com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation$Builder;
C;0;ButtonGroupType;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.ButtonGroupType;java.lang.Enum;;;values()com.pnfsoftware.jeb.client.api.ButtonGroupType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.client.api.ButtonGroupType;OK:com.pnfsoftware.jeb.client.api.ButtonGroupType|OK_CANCEL:com.pnfsoftware.jeb.client.api.ButtonGroupType|YES_NO:com.pnfsoftware.jeb.client.api.ButtonGroupType|YES_NO_CANCEL:com.pnfsoftware.jeb.client.api.ButtonGroupType
C;0;ByteBufferUtil;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.ByteBufferUtil;java.lang.Object;;com.pnfsoftware.jeb.util.io.ByteBufferUtil();getBytes(b:java.nio.ByteBuffer)byte[]|getBytes(b:java.nio.ByteBuffer,offset:int,size:int)byte[]|skip(b:java.nio.ByteBuffer,n:int)void|align(b:java.nio.ByteBuffer,align:int)int|wrapBE(array:byte[])java.nio.ByteBuffer|wrapBE(array:byte[],offset:int,length:int)java.nio.ByteBuffer|skipAttempt(b:java.nio.ByteBuffer,n:int)int|getUnsignedInt(b:java.nio.ByteBuffer)long|getUnsignedInt(b:java.nio.ByteBuffer,index:int)long|skipToEnd(b:java.nio.ByteBuffer)void|wrapLE(array:byte[])java.nio.ByteBuffer|wrapLE(array:byte[],offset:int,length:int)java.nio.ByteBuffer|equalsByteArray(b:java.nio.ByteBuffer,bufferOffset:int,a:byte[],arrayOffset:int,size:int)boolean;
C;0;BytePipe;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.BytePipe;java.lang.Object;;com.pnfsoftware.jeb.util.collect.BytePipe()|com.pnfsoftware.jeb.util.collect.BytePipe(initialCapacity:int);get(data:byte[])void|get(data:byte[],offset:int,size:int)void|get()int|limit()int|append(b:byte)void|append(data:byte[],offset:int,length:int)void|append(b:int)void|append(data:byte[])void|position()int|capacity()int|available()int|reset()void|skip(n:int)void|peek()byte|peek(data:byte[])void|peek(data:byte[],where:int,size:int)void|getAll()byte[]|blockUntilAvailable(n:int,timeout:long)int|readWait(timeout:long)int;
C;0;Bytes;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.Bytes;java.lang.Object;;com.pnfsoftware.jeb.util.primitives.Bytes();toUnsignedString(value:byte)java.lang.String;
C;0;BytesBlock;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.processor.BytesBlock(code:byte[],endianness:com.pnfsoftware.jeb.util.io.Endianness,groupSize:int);equals(obj:java.lang.Object)boolean|hashCode()int|getCode(byteOrder:java.nio.ByteOrder)byte[]|getCode()byte[]|getBECode()byte[]|getLECode()byte[];
C;0;BytesInput;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.BytesInput;java.lang.Object;com.pnfsoftware.jeb.core.input.IInput;com.pnfsoftware.jeb.core.input.BytesInput(data:byte[],offset:int,length:int)|com.pnfsoftware.jeb.core.input.BytesInput(data:byte[]);close()void|getChannel()java.nio.channels.SeekableByteChannel|getHeader()java.nio.ByteBuffer|getCurrentSize()long|getStream()java.io.InputStream;
C;0;CDocument;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CDocument;com.pnfsoftware.jeb.core.output.code.CodeDocument;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CDocument(source:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeSourceUnit);getDocumentPart(arg0:long,arg1:int,arg2:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getDocumentPart(anchorId:long,linesAfter:int,linesBefore:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink|getAnchorCount()long|buildPDM(unitPDM:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.text.ICoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String|dispose()void;propnameSpaceOutCompounds:java.lang.String|propnameMergeAdjacentDefinitions:java.lang.String
C;0;CElementType;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType;Annotation:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|AnnotationElement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Operation:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|ArrayElement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Assignment:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Block:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Break:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Call:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Catch:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Class:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|ConditionalExpression:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Constant:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Continue:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Definition:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|DoWhile:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Field:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|For:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Goto:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Identifier:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|If:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|InstanceField:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Label:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Method:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Monitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|NativeStatement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|New:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|NewArray:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Predicate:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Return:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|StaticField:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Switch:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|SynchronizedBlock:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Throw:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|Try:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|TypeReference:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|While:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType
C;0;CEntityType;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType;METHOD:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType|FIELD:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType|CLASS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType
C;0;CFBytesTrie;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.CFBytesTrie;java.lang.Object;;com.pnfsoftware.jeb.util.collect.CFBytesTrie();get(key:byte[],exactKey:boolean)java.lang.Object|get(keyarray:byte[],start:int,max:int,exactKey:boolean)java.lang.Object|put(object:java.lang.Object)void|put(keyarray:byte[],start:int,end:int,object:java.lang.Object)java.lang.Object|put(key:byte[],object:java.lang.Object)void|clear()void|isEmpty()boolean|size()int|getItems()java.util.List|formatInternalState()java.lang.String|setKeyExtractor(keyExtractor:com.pnfsoftware.jeb.util.collect.CFBytesTrie$IKeyExtractor)void|getValues()java.util.List|getKeyExtractor()com.pnfsoftware.jeb.util.collect.CFBytesTrie$IKeyExtractor;
C;0;CFG;com.pnfsoftware.jeb.core.units.code.android.controlflow;com.pnfsoftware.jeb.core.units.code.android.controlflow.CFG;java.lang.Object;com.pnfsoftware.jeb.core.units.code.IControlFlowGraph;com.pnfsoftware.jeb.core.units.code.android.controlflow.CFG(insns:java.util.List,irrdata:java.util.List)|com.pnfsoftware.jeb.core.units.code.android.controlflow.CFG(builders:java.util.List);get(arg0:int)com.pnfsoftware.jeb.core.units.code.IBasicBlock|get(index:int)com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|toString()java.lang.String|format(format_addresses:boolean,format_chains:int,context:java.lang.Object)java.lang.String|size()int|getLast()com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|getFullDefUseChains()java.util.Map|getFullUseDefChains()java.util.Map|getBlockContaining(arg0:long)com.pnfsoftware.jeb.core.units.code.IBasicBlock|getBlockContaining(address:long)com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|getAddressBlockMap()java.util.TreeMap|getGraphRepresentation(edges:java.util.List,irregularEdges:java.util.List)void|doDataFlowAnalysis(redo:boolean)void|doDataFlowAnalysis()void|getInstructionSet()java.util.TreeMap|formatBlockInstructions(bb:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock)java.lang.String|formatRegisterToInsnCollection(m:java.util.Map)java.lang.String|formatInstructions2()java.lang.String|generateIrregularFlowDataObjects()java.util.List|formatInstructions()java.lang.String|formatInstructions(insns:java.util.Collection)java.lang.String|simplifyIrregularFlows()int|formatBlockInstruction(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction)java.lang.String|getInstruction(arg0:long)com.pnfsoftware.jeb.core.units.code.IInstruction|getInstruction(address:long)com.pnfsoftware.jeb.core.units.code.ILocatedInstruction|getInstructions()java.util.List|getBlocks()java.util.List|getBlockAt(base:long)com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|getBlockAt(arg0:long)com.pnfsoftware.jeb.core.units.code.IBasicBlock|formatChains(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction,type:com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType)java.lang.String|simplify()int|toDot(file:java.io.File)void|toDot(file:java.io.File,blockHeaders:java.util.Map)void|removeBlock(b:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock)void|deleteEdge(x:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock,y:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock)boolean|reconnectEdge(x:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock,y:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock,z:com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock)int|getReachMap(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction)java.util.Map|getBlockFor(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction)com.pnfsoftware.jeb.core.units.code.android.controlflow.BasicBlock|resetDFA()void|getUseDefChains()java.util.Map|getInstructionAt(address:long)com.pnfsoftware.jeb.core.units.code.ILocatedInstruction|getDefUseChains()java.util.Map|formatFullChains(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction,type:com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType)java.lang.String|formatInstruction(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction)java.lang.String;
C;0;CFG;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG;java.lang.Object;com.pnfsoftware.jeb.core.units.code.IControlFlowGraph|java.lang.Iterable;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG(offsetToInsn:java.util.Map,irrdata:java.util.List,augmenter:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IInstructionAugmenter,entry:long,flags:int)|com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG(insns:java.util.List,irrdata:java.util.List,augmenter:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IInstructionAugmenter,base:long,entry:long,flags:int)|com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG(entry:long,blocks:java.util.List)|com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG(insns:java.util.List,irrdata:java.util.List);get(arg0:int)com.pnfsoftware.jeb.core.units.code.IBasicBlock|get(index:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|toString()java.lang.String|format()java.lang.String|format(formatAddresses:boolean,formatChains:int,formatInOut:boolean)java.lang.String|format(formatAddresses:boolean,formatChains:int,formatInOut:boolean,fcf:com.pnfsoftware.jeb.core.units.code.asm.cfg.IFormattingContextFactory)java.lang.String|iterator()java.util.Iterator|size()int|addressableInstructions()java.lang.Iterable|getBlockContaining(address:long)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getBlockContaining(arg0:long)com.pnfsoftware.jeb.core.units.code.IBasicBlock|getAddressBlockMap()java.util.Map|getInstructionsMap()java.util.Map|getGraphRepresentation(edges:java.util.List,irregularEdges:java.util.List)void|replaceInstruction(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction)com.pnfsoftware.jeb.core.units.code.IInstruction|replaceInstruction(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,keepDFA:boolean)com.pnfsoftware.jeb.core.units.code.IInstruction|doDataFlowAnalysis(redo:boolean)void|doDataFlowAnalysis(redo:boolean,propagateInputRegisters:boolean)void|doDataFlowAnalysis()void|setVariableInformationProvider(prv:com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableInformationProvider)com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableInformationProvider|deleteDuplicateEdge(x:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,y:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,keepDFA:boolean)boolean|getVariableInformationProvider()com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableInformationProvider|invalidateDataFlowAnalysis()void|getEntryAddress()long|getInstruction(address:long)com.pnfsoftware.jeb.core.units.code.IInstruction|getInstructions()java.util.List|getInstructionCount()int|getFirstAddress()long|shallowCopy(copyBlockReferences:boolean)com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG|getEndAddress()long|getLastAddress()long|getEffectiveSize()int|getBlocks()java.util.List|getExitBlocks()java.util.List|hasExit()boolean|getBlockAt(arg0:long)com.pnfsoftware.jeb.core.units.code.IBasicBlock|getBlockAt(base:long)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getGaps()java.util.List|hasNoExit()boolean|getEntryBlock()com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|formatSimple()java.lang.String|deleteAllEdges()void|simplify(mergeOnCalls:boolean,mergeOnJumps:boolean,mergeNonConsecutive:boolean)int|addEdge(x:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,y:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,keepDFA:boolean)boolean|pruneOrphans()int|toDot(file:java.io.File)void|toDot(foldername:java.lang.String,filename:java.lang.String)java.io.File|removeBlock(b:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,keepDFA:boolean)void|instructions()java.lang.Iterable|deleteEdge(x:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,y:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,keepDFA:boolean)boolean|reconnectEdge(x:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,y:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,z:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,keepDFA:boolean)int|getFlags()int;FLAG_SUBROUTINE_CALL_NOT_BREAKING:int|FLAG_ALLOW_ARTIFICIAL_BLOCK_END:int
C;0;CFG;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.CFG;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.CFG();toString()java.lang.String|getEntryPoint()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|getConditionalTarget(from:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|getConditionalTarget(from:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement,n:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|getFallThroughTarget(from:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|buildCFG(method:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.CFG|setEntryPoint(entryPoint:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)void;
C;0;CFGFormatter;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGFormatter(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,varprv:com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableProvider,formatFineGrained:boolean)|com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGFormatter(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG);format(formatAddresses:boolean,formatChains:int,formatInOut:boolean,fcf:com.pnfsoftware.jeb.core.units.code.asm.cfg.IFormattingContextFactory)java.lang.String|extraInstructionDetails(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|formatWithSimpleChains()java.lang.String|formatSimple()java.lang.String|getCfg()com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG;
C;0;CFGUtil;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGUtil();duplicateShallow(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG;
C;0;CFGVerifier;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGVerifier;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGVerifier(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG);verify()void|customVerification(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)void;
C;0;CIdentifierClass;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass|isGlobal()boolean|isLocal()boolean;GLOBAL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass|LOCAL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass|SYNTHETIC:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass
C;0;CKeyword;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|generateFieldAccessFlags(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink,f:int,add_final_space:int)void|appendAccessKeyword(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink,keyword:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword)void|generateClassAccessFlags(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink,f:int,add_final_space:int)void|generateAccessFlags(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink,f:int,add_final_space:int,etype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CEntityType)void|generateMethodAccessFlags(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink,f:int,add_final_space:int)void;ABSTRACT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|ASSERT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|BOOLEAN:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|BREAK:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|BYTE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|CASE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|CATCH:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|CHAR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|CLASS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|CONST:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|CONTINUE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|DEFAULT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|DO:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|DOUBLE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|ELSE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|ENUM:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|EXTENDS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|FINAL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|FINALLY:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|FLOAT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|FOR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|GOTO:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|IF:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|IMPLEMENTS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|IMPORT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|INSTANCEOF:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|INT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|INTERFACE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|LONG:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|NATIVE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|NEW:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|PACKAGE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|PRIVATE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|PROTECTED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|PUBLIC:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|RETURN:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|SHORT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|STATIC:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|STRICTFP:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|SUPER:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|SWITCH:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|SYNCHRONIZED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|THIS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|THROW:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|THROWS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|TRANSIENT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|TRY:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|VOID:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|VOLATILE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|WHILE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|TRUE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|FALSE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|NULL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword|VIRTUAL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword
C;0;COperatorType;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType;java.lang.Enum;;;toString()java.lang.String|values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|getOperandCount()int|getPrecedence()int|getAssociativity()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType$Associativity;CUSTOM:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|NEG:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|NOT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|LOG_NOT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|PTR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|REF:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|CAST:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|SIZEOF:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|LOG_IDENT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|MUL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|DIV:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|REM:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|ADD:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|SUB:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|SHL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|SHR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|USHR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|GE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|GT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|LT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|LE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|EQ:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|NE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|AND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|XOR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|OR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|LOG_AND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|LOG_OR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|COND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType
C;0;COptUtil;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil();add(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,c:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|add(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|lt(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|getDefinition(element:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDefinition|eq(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|rem(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|sub(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|replaceSubElementRecurse(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement,oldElement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,newElement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)int|getDefinitionInitialValue(element:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement|isContainingLabel(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement,targetLabel:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLabel)boolean|countAllSubElements(elem:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)int|isComparableOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation)boolean|isIntegerConstant(expr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)boolean|getBreakingFlowResult(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowResult|isClassMethodField(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)boolean|getConstantAsLong(expr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConstant)java.lang.Long|isAlwayTrueDoWhile(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|getFirstRealStatementEx(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,first:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|getPreviouslyExecutedStatements(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,first:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)java.util.List|visitICStatementDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICVisitor,elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock,from:int,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CVisitResults)boolean|visitICStatementDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICVisitor,elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CVisitResults)boolean|getFirstRealStatement(b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock,i:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|notB(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|shr(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|isIntegerValue(expr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,value:long)boolean|hasEmptyBranch(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICIfStm)boolean|hasNoCall(elem:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)boolean|orL(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|isLoop(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|orB(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|xorB(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|mul(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|shl(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|ne(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|notL(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|isGotoTo(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement,target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLabel)boolean|isAlwayTrueWhile(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|logicallyImplies(expression1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,expression2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)boolean|getParentBlock(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|andB(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|isIfBranch(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|isIfElse(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|getIfGotoTarget(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLabel|gt(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|isIfNoElse(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|andL(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|le(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|ge(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|isAlwaysTrueLoop(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)boolean|isOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,optypes:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType[])boolean|div(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|ushr(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation|hasNoSideEffects(elem:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)boolean|canFallthrough(currentStmt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement,fallthroughStmt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement,ignoreBreak:boolean)boolean|containsBreak(b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock)boolean|isBreakingFlow(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COptUtil$BreakFlowStatus|intersect(pred1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICPredicate,pred2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICPredicate)java.lang.Boolean|getOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation,optypes:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|getOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression,optypes:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType;
C;0;COutputSink;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink;com.pnfsoftware.jeb.core.output.code.CodeDocumentPart;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink(baseAnchorId:long,doc:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CDocument,decomp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink(baseAnchorId:long);getSourceCustomizer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ISourceCustomizer|eol()void|eol(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|getDynamicContentManager()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IDynamicContentManager|popContainingClass()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass|getCurrentContainingMethod()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod|setCurrentMethodIndex(index:int)int|onEolSetCoordinates(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|getMergeAdjacentDefinitions()boolean|setSpaceOutCompounds(override:java.lang.Boolean)void|setMergeAdjacentDefinitions(override:java.lang.Boolean)void|pushContainingClass(c:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass)void|setDynamicContentManager(dcm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IDynamicContentManager)void|setSourceCustomizer(sourceCustomizer:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ISourceCustomizer)void|getSpaceOutCompounds()boolean|getCurrentContainingClass()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass|pushContainingMethod(m:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod)void|popContainingMethod()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod|getCurrentMethodIndex()int|getGeneratedComment(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)java.lang.String|hasGeneratedComment(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)boolean|setOmitTypeForNextDefinitionPrinting(omitTypeForNextDefinitionPrinting:boolean)void|omitTypeForNextDefinitionPrinting()boolean|appendComment(text:java.lang.String)void|astPeekSafe(n:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement|getTopLevelClass()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass|astPop()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement|astPush(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)void|appendKeyword(keyword:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CKeyword)void|appendKeyword(keyword:java.lang.String)void|onEolSetComment(comment:java.lang.String)void|onEolSetComment(comment:java.lang.String,coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void;
C;0;CVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractVisitResults;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CVisitResults()|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CVisitResults(flags:int);;
C;0;CacheMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.CacheMap;java.util.HashMap;;com.pnfsoftware.jeb.util.collect.CacheMap(maxSize:int,evictSize:int)|com.pnfsoftware.jeb.util.collect.CacheMap(maxSize:int);get(key:java.lang.Object)java.lang.Object|put(key:java.lang.Object,val:java.lang.Object)java.lang.Object|putAll(map:java.util.Map)void;
C;0;CallGraphVertex;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.CallGraphVertex;com.pnfsoftware.jeb.core.units.code.asm.analyzer.BranchTarget;;;equals(obj:java.lang.Object)boolean|hashCode()int|isResolved()boolean|buildFromUnresolvedTarget(dereferencedAddress:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.CallGraphVertex|buildFromExternalTarget(externalRtn:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.analyzer.CallGraphVertex|buildFromInternalTarget(epDescription:com.pnfsoftware.jeb.core.units.code.EntryPointDescription)com.pnfsoftware.jeb.core.units.code.asm.analyzer.CallGraphVertex|getDereferencedAddress()long;
C;0;CallableWithProgressCallback;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.CallableWithProgressCallback;com.pnfsoftware.jeb.util.base.ExecutionTargetWithProgressCallback;java.util.concurrent.Callable;com.pnfsoftware.jeb.util.base.CallableWithProgressCallback();;
C;0;CannotImportTypeException;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.CannotImportTypeException;com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException;;com.pnfsoftware.jeb.core.units.code.asm.type.CannotImportTypeException(msg:java.lang.String);;
C;0;CannotReadRegisterException;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.CannotReadRegisterException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.processor.CannotReadRegisterException(registerName:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.processor.CannotReadRegisterException(registerIndex:int)|com.pnfsoftware.jeb.core.units.code.asm.processor.CannotReadRegisterException(registerType:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType);;
C;0;CannotWriteRegisterException;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.CannotWriteRegisterException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.processor.CannotWriteRegisterException(registerName:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.processor.CannotWriteRegisterException(registerIndex:int)|com.pnfsoftware.jeb.core.units.code.asm.processor.CannotWriteRegisterException(registerType:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType);;
C;0;Cell;com.pnfsoftware.jeb.core.output.table.impl;com.pnfsoftware.jeb.core.output.table.impl.Cell;java.lang.Object;com.pnfsoftware.jeb.core.output.table.IActionableCell;com.pnfsoftware.jeb.core.output.table.impl.Cell(label:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers,itemId:long,flags:int)|com.pnfsoftware.jeb.core.output.table.impl.Cell(label:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers)|com.pnfsoftware.jeb.core.output.table.impl.Cell(label:java.lang.String);setItemFlags(flags:int)void|setItemId(itemId:long)void|setClassId(classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers)void|getItemId()long|getClassId()com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|getItemFlags()int|setLabel(label:java.lang.String)void|getLabel()java.lang.String;
C;0;CellCoordinates;com.pnfsoftware.jeb.core.output.table.impl;com.pnfsoftware.jeb.core.output.table.impl.CellCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.table.ICellCoordinates;com.pnfsoftware.jeb.core.output.table.impl.CellCoordinates(rowIndex:int,columnIndex:int);toString()java.lang.String|getColumnIndex()int|getRowIndex()int;
C;0;CentralDirFileHeader;com.pnfsoftware.jeb.util.encoding.zip.fsr;com.pnfsoftware.jeb.util.encoding.zip.fsr.CentralDirFileHeader;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.zip.fsr.CentralDirFileHeader();toString()java.lang.String|parse(fc:java.nio.channels.FileChannel,base:int)com.pnfsoftware.jeb.util.encoding.zip.fsr.CentralDirFileHeader|getFilename()java.lang.String|isEncrypted()boolean;
C;1;Certificate;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block.Certificate;java.lang.Object;;;toString()java.lang.String|getBytes()byte[];
C;0;CfgVerificationException;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.CfgVerificationException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.cfg.CfgVerificationException(format:java.lang.String,args:java.lang.Object[]);;
C;0;ChainType;com.pnfsoftware.jeb.core.units.code.android.controlflow;com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType;DU:com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType|UD:com.pnfsoftware.jeb.core.units.code.android.controlflow.ChainType
C;0;ChannelHelper;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.ChannelHelper;java.lang.Object;;com.pnfsoftware.jeb.util.io.ChannelHelper(channel:java.nio.channels.SeekableByteChannel,endianness:com.pnfsoftware.jeb.util.io.Endianness);get()byte|get(position:long)byte|getShort(position:long)short|getShort()short|getInt()int|getInt(position:long)int|getLong()long|getLong(position:long)long;
C;0;ChannelUtil;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.ChannelUtil;java.lang.Object;;com.pnfsoftware.jeb.util.io.ChannelUtil();get(channel:java.nio.channels.SeekableByteChannel,position:long)byte|get(channel:java.nio.channels.SeekableByteChannel)byte|getShort(channel:java.nio.channels.SeekableByteChannel,position:long,endianness:java.nio.ByteOrder)short|getShort(channel:java.nio.channels.SeekableByteChannel,endianness:java.nio.ByteOrder)short|getInt(channel:java.nio.channels.SeekableByteChannel,position:long,endianness:java.nio.ByteOrder)int|getInt(channel:java.nio.channels.SeekableByteChannel,endianness:java.nio.ByteOrder)int|getLong(channel:java.nio.channels.SeekableByteChannel,position:long,endianness:java.nio.ByteOrder)long|getLong(channel:java.nio.channels.SeekableByteChannel,endianness:java.nio.ByteOrder)long|getBytes(channel:java.nio.channels.SeekableByteChannel,size:int)byte[]|getBytes(channel:java.nio.channels.SeekableByteChannel,position:long,size:int)byte[]|read(channel:java.nio.channels.SeekableByteChannel,position:long,size:int,isBigEndian:boolean)java.nio.ByteBuffer|read(channel:java.nio.channels.SeekableByteChannel,position:long,size:int,isBigEndian:boolean,buffer:java.nio.ByteBuffer)java.nio.ByteBuffer|getAllFrom(channel:java.nio.channels.SeekableByteChannel,position:long)byte[]|getBEShort(channel:java.nio.channels.SeekableByteChannel,position:long)short|getBEShort(channel:java.nio.channels.SeekableByteChannel)short|getLELong(channel:java.nio.channels.SeekableByteChannel)long|getLELong(channel:java.nio.channels.SeekableByteChannel,position:long)long|getBEInt(channel:java.nio.channels.SeekableByteChannel,position:long)int|getBEInt(channel:java.nio.channels.SeekableByteChannel)int|getBytesUntil(channel:java.nio.channels.SeekableByteChannel,stopper:int,maxsize:int,throwOnEOS:boolean)byte[]|getBELong(channel:java.nio.channels.SeekableByteChannel)long|getBELong(channel:java.nio.channels.SeekableByteChannel,position:long)long|getLEInt(channel:java.nio.channels.SeekableByteChannel,position:long)int|getLEInt(channel:java.nio.channels.SeekableByteChannel)int|getLEShort(channel:java.nio.channels.SeekableByteChannel,position:long)short|getLEShort(channel:java.nio.channels.SeekableByteChannel)short|readBestEffort(channel:java.nio.channels.SeekableByteChannel,position:long,size:int,isBigEndian:boolean,buffer:java.nio.ByteBuffer)java.nio.ByteBuffer;
C;0;CharSequenceList;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.CharSequenceList;java.lang.Object;java.lang.CharSequence;com.pnfsoftware.jeb.util.base.CharSequenceList(elts:java.util.List);toString(maxCharsPerLine:int,charsEndLine:int)java.lang.String|toString()java.lang.String|charAt(index:int)char|length()int|subSequence(start:int,end:int)java.lang.CharSequence|getLine(line:java.lang.CharSequence,maxCharsPerLine:int,charsEndLine:int)java.lang.CharSequence;
C;0;CharSequences;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.CharSequences;java.lang.Object;;com.pnfsoftware.jeb.util.format.CharSequences();indexOf(text:java.lang.CharSequence,c:char,from:int)int|indexOf(text:java.lang.CharSequence,c:char)int|startsWith(text:java.lang.CharSequence,prefix:java.lang.String)boolean|toByteArray(chars:char[])byte[]|f(format:java.lang.String,args:java.lang.Object[])java.lang.StringBuilder|f(stb:java.lang.StringBuilder,format:java.lang.String,args:java.lang.Object[])java.lang.StringBuilder|indexOf2(text:java.lang.CharSequence,c0:char,c1:char)int|isBlank(s:java.lang.CharSequence)boolean|indexOfn(text:java.lang.CharSequence,cs:char[])int;
C;0;ClassCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.ClassCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates.ClassCoordinates(classId:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getClassId()int;
C;0;ClasspathCollector;com.pnfsoftware.jeb.util.reflect;com.pnfsoftware.jeb.util.reflect.ClasspathCollector;java.lang.Object;;com.pnfsoftware.jeb.util.reflect.ClasspathCollector();add(paths:java.lang.String)boolean|addSmart(dir:java.io.File,cplist:java.lang.String)void|createClassloader()java.net.URLClassLoader|addFromJar(file:java.io.File)boolean|getClassloader(parentCl:java.lang.ClassLoader)java.net.URLClassLoader;
C;0;ClientNotification;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.ClientNotification;java.lang.Object;;com.pnfsoftware.jeb.core.events.ClientNotification(message:java.lang.String)|com.pnfsoftware.jeb.core.events.ClientNotification(message:java.lang.String,level:com.pnfsoftware.jeb.core.events.ClientNotificationLevel);getMessage()java.lang.String|getLevel()com.pnfsoftware.jeb.core.events.ClientNotificationLevel;
C;0;ClientNotificationLevel;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.ClientNotificationLevel;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.events.ClientNotificationLevel[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.events.ClientNotificationLevel;INFO:com.pnfsoftware.jeb.core.events.ClientNotificationLevel|WARNING:com.pnfsoftware.jeb.core.events.ClientNotificationLevel|ERROR:com.pnfsoftware.jeb.core.events.ClientNotificationLevel
C;0;CodeAnchor;com.pnfsoftware.jeb.core.output.code;com.pnfsoftware.jeb.core.output.code.CodeAnchor;java.lang.Object;com.pnfsoftware.jeb.core.output.text.IAnchor;;toString()java.lang.String|getName()java.lang.String|getLineIndex()int|getIdentifier()long;
C;0;CodeConstant;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstant;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstant(name:java.lang.String,value:java.lang.Object);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getName()java.lang.String|getValue()java.lang.Object;
C;0;CodeConstantManager;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstantManager;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstantManager();equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|clear()void|size()int|isLocked()boolean|getNamedConstantsByValue(value:java.lang.Object)java.util.List|addConstant(name:java.lang.String,value:java.lang.Object)void|getValuesByName(name:java.lang.String)java.util.Set|getNamesByValue(value:java.lang.Object)java.util.Set|isLegalValue(value:java.lang.Object)boolean|isLegalName(name:java.lang.String)boolean|removeConstant(name:java.lang.String,value:java.lang.Object)void;EMPTY:com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstantManager
C;0;CodeCoordinatesUtil;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.CodeCoordinatesUtil;java.lang.Object;;com.pnfsoftware.jeb.core.output.code.coordinates.CodeCoordinatesUtil();getMostAccurate(a:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates,b:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates|distance(a:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates,b:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)int|getBaseObjectIndex(coords:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)java.lang.Integer;
C;0;CodeDocument;com.pnfsoftware.jeb.core.output.code;com.pnfsoftware.jeb.core.output.code.CodeDocument;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextDocument;;com.pnfsoftware.jeb.core.output.code.CodeDocument();;
C;0;CodeDocumentPart;com.pnfsoftware.jeb.core.output.code;com.pnfsoftware.jeb.core.output.code.CodeDocumentPart;java.lang.Object;com.pnfsoftware.jeb.core.output.text.ITextDocumentPart;com.pnfsoftware.jeb.core.output.code.CodeDocumentPart(baseAnchorId:long);toString()java.lang.String|append(s:java.lang.String)void|format()java.lang.String|getLine(index:int)com.pnfsoftware.jeb.core.output.code.CodeLine|getCurrentAnchor()com.pnfsoftware.jeb.core.output.code.CodeAnchor|moveLine(index:int,newIndex:int)boolean|getLineCount()int|space(cnt:int)void|space()void|disablePadding()void|eol(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|eol()void|getLines()java.util.List|setPaddingString(paddingString:java.lang.String)void|registerAnchor(name:java.lang.String)void|registerAnchor(anchorId:long,name:java.lang.String)void|enablePadding()void|prependCodePart(part:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|appendAndRecord(s:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers,itemId:long,flags:int)void|appendAndRecord(s:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers)void|appendAndRecord(s:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers,itemId:long)void|moveLastLine(newIndex:int)boolean|getCurrentLine()com.pnfsoftware.jeb.core.output.code.CodeLine|indentReset()void|getAnchors()java.util.List|getLastLineIndex()int|decrementIndentationLevel()void|setIndentationString(indentString:java.lang.String)void|getCurrentLineIndex()int|isCurrentLineEmpty()boolean|getCurrentLineCoordinates()com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates|markCurrentPosition(name:java.lang.String,object:java.lang.Object)void|getIndentationLevel()int|getCurrentCoordinates()com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates|getIndententionLevel()int|getCurrentLineLength()int|recordLineCoordinates(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|unrecordLineCoordinates()void|setIndentationLevel(level:int)void|getIndentationString()java.lang.String|incrementIndentationLevel()void|unrecordCurrentCoordinates()void|resetPaddingString()void|recordCurrentCoordinates(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|validate()void;
C;0;CodeLine;com.pnfsoftware.jeb.core.output.code;com.pnfsoftware.jeb.core.output.code.CodeLine;java.lang.Object;com.pnfsoftware.jeb.core.output.text.ILine;com.pnfsoftware.jeb.core.output.code.CodeLine();toString()java.lang.String|setCoordinates(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|getMarks()java.util.List|getItems()java.util.List|getCoordinates()java.util.Map|getCoordinates(offset:int)com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates|getText()java.lang.CharSequence|setLineCoordinates(coord:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)void|getLineCoordinates()com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;
C;0;CodeNodeUtil;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.CodeNodeUtil;java.lang.Object;;com.pnfsoftware.jeb.core.output.tree.CodeNodeUtil();cannotBe(node:com.pnfsoftware.jeb.core.output.tree.ICodeNode,flags:int)boolean|mustBe(node:com.pnfsoftware.jeb.core.output.tree.ICodeNode,flags:int)boolean|meetsConditions(node:com.pnfsoftware.jeb.core.output.tree.ICodeNode,included:int,excluded:int)boolean|getChildren(node:com.pnfsoftware.jeb.core.output.tree.ICodeNode,included:int,excluded:int)java.util.List;IS_ARTIFICIAL:int|IS_INTERNAL:int|IS_PACKAGE:int|IS_TYPE:int|IS_CLASS:int|IS_FIELD:int|IS_METHOD:int
C;0;CodeObjectUnitUtil;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.CodeObjectUnitUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.codeobject.CodeObjectUnitUtil();findSectionByAddress(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,address:long)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|findSegmentByName(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|findSectionByName(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|findExportedSymbolByName(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ISymbolInformation|findImportedSymbolByName(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ISymbolInformation|findSegmentByAddress(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,address:long)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|findSymbolByName(unit:com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit,name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ISymbolInformation;
C;0;CodeUnitUtil;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.CodeUnitUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.CodeUnitUtil();getMethodByName(unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit,partialName:java.lang.String,failIfAmbiguous:boolean)com.pnfsoftware.jeb.core.units.code.ICodeMethod|getFieldByName(unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit,partialName:java.lang.String,failIfAmbiguous:boolean)com.pnfsoftware.jeb.core.units.code.ICodeField;
C;0;CoffDebugDirectoryEntry;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.CoffDebugDirectoryEntry;java.lang.Object;;;getType()int|parse(b:java.nio.ByteBuffer)com.pnfsoftware.jeb.core.units.codeobject.CoffDebugDirectoryEntry|getMinorVersion()int|getMajorVersion()int|getCharacteristics()int|getAddressOfRawData()int|getPointerToRawData()int|getSizeOfData()int|getTimeDateStamp()int;SIZE_ON_DISK:int
C;0;CollectionUtil;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.CollectionUtil;java.lang.Object;;com.pnfsoftware.jeb.util.collect.CollectionUtil();compare(c1:java.util.Collection,c2:java.util.Collection,sorted:boolean)boolean|contains(c:java.util.Collection,v:java.lang.Object)boolean|binarySearch(list:java.util.List,key:java.lang.Comparable,extractor:com.pnfsoftware.jeb.util.collect.IExtractor)java.lang.Object|intersection(c1:java.util.List,c2:java.util.List)java.util.List|compareByReference(c1:java.util.Collection,c2:java.util.Collection,sorted:boolean)boolean|containsReference(c:java.util.Collection,o:java.lang.Object)boolean|binarySearchEx(list:java.util.List,key:java.lang.Comparable,extractor:com.pnfsoftware.jeb.util.collect.IExtractor,cc:java.util.Comparator)int|containsNonNull(c:java.lang.Iterable)boolean|containsNull(c:java.lang.Iterable)boolean;
C;0;CommandExec;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.CommandExec;java.lang.Object;;com.pnfsoftware.jeb.util.concurrent.CommandExec(timeout:long);execute(cmdarray:java.lang.String[])boolean|execute(cmdlist:java.util.Collection)boolean|getOutput()byte[];
C;0;CommandParameter;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.CommandParameter;java.lang.Object;;com.pnfsoftware.jeb.util.interpreter.CommandParameter(name:java.lang.String,help:java.lang.String,optional:boolean,allowMultipleTokens:boolean,autocompleteProvider:com.pnfsoftware.jeb.util.interpreter.IAutocompleteListProvider)|com.pnfsoftware.jeb.util.interpreter.CommandParameter(name:java.lang.String,help:java.lang.String,optional:boolean,allowMultipleTokens:boolean)|com.pnfsoftware.jeb.util.interpreter.CommandParameter(prefix:java.lang.String,name:java.lang.String,help:java.lang.String,optional:boolean)|com.pnfsoftware.jeb.util.interpreter.CommandParameter(name:java.lang.String)|com.pnfsoftware.jeb.util.interpreter.CommandParameter(name:java.lang.String,optional:boolean)|com.pnfsoftware.jeb.util.interpreter.CommandParameter(name:java.lang.String,help:java.lang.String,optional:boolean);getName()java.lang.String|getPrefix()java.lang.String|getAutocompleteProvider()com.pnfsoftware.jeb.util.interpreter.IAutocompleteListProvider|allowMultipleTokens()boolean|isOptional()boolean|getHelp()java.lang.String|hasPrefix()boolean;
C;0;CommonsConfigurationWrapper;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.CommonsConfigurationWrapper;java.lang.Object;com.pnfsoftware.jeb.core.properties.IConfiguration;com.pnfsoftware.jeb.core.properties.impl.CommonsConfigurationWrapper(cfg:org.apache.commons.configuration2.Configuration);setProperty(key:java.lang.String,value:java.lang.Object)void|getProperty(key:java.lang.String)java.lang.Object|toString()java.lang.String|clearProperty(key:java.lang.String)void|getAllPropertyKeys()java.util.Set;
C;0;ComparisonInfo;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.ComparisonInfo;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.ComparisonInfo(comptype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,leafmap:java.util.Map);;comptype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|leafmap:java.util.Map
C;0;CompilerType;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.CompilerType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.codeobject.CompilerType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.CompilerType;UNKNOWN:com.pnfsoftware.jeb.core.units.codeobject.CompilerType|GCC:com.pnfsoftware.jeb.core.units.codeobject.CompilerType|MSVC:com.pnfsoftware.jeb.core.units.codeobject.CompilerType
C;0;ConcurrentException;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.ConcurrentException;java.lang.RuntimeException;;com.pnfsoftware.jeb.util.concurrent.ConcurrentException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.util.concurrent.ConcurrentException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.util.concurrent.ConcurrentException(message:java.lang.String)|com.pnfsoftware.jeb.util.concurrent.ConcurrentException();;
C;0;ConcurrentHashSet;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ConcurrentHashSet;java.lang.Object;java.util.Set;com.pnfsoftware.jeb.util.collect.ConcurrentHashSet(expectedMaxSize:int)|com.pnfsoftware.jeb.util.collect.ConcurrentHashSet()|com.pnfsoftware.jeb.util.collect.ConcurrentHashSet(c:java.util.Collection);add(e:java.lang.Object)boolean|remove(o:java.lang.Object)boolean|equals(o:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|clear()void|contains(o:java.lang.Object)boolean|isEmpty()boolean|iterator()java.util.Iterator|size()int|toArray(a:java.lang.Object[])java.lang.Object[]|toArray()java.lang.Object[]|addAll(c:java.util.Collection)boolean|containsAll(c:java.util.Collection)boolean|removeAll(c:java.util.Collection)boolean|retainAll(c:java.util.Collection)boolean;
C;1;ConfidenceLevel;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature.ConfidenceLevel;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel;UNKNOWN:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel|LOW:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel|MEDIUM:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel|HIGH:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel
C;0;ConfigurationMemoryMap;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.ConfigurationMemoryMap;java.lang.Object;com.pnfsoftware.jeb.core.properties.IConfiguration;com.pnfsoftware.jeb.core.properties.impl.ConfigurationMemoryMap()|com.pnfsoftware.jeb.core.properties.impl.ConfigurationMemoryMap(template:com.pnfsoftware.jeb.core.properties.IConfiguration);setProperty(key:java.lang.String,value:java.lang.Object)void|getProperty(key:java.lang.String)java.lang.Object|toString()java.lang.String|clearProperty(key:java.lang.String)void|getAllPropertyKeys()java.util.Set;
C;0;Constants;com.pnfsoftware.jeb.client.floating;com.pnfsoftware.jeb.client.floating.Constants;java.lang.Object;;com.pnfsoftware.jeb.client.floating.Constants();;PROTOCOL_HTTP:int|PROTOCOL_HTTPS:int|ORDER_PING:int|ORDER_PONG:int|ORDER_RELEASE:int|RETCODE_SERVER_ERROR:int|RETCODE_GOOD:int|RETCODE_NO_MORE_SEATS:int|RETCODE_CLIENT_TOO_OLD:int|RETCODE_BUILD_MISMATCH:int
C;0;ConstantsFormatter;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.ConstantsFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.render.ConstantsFormatter(constant:com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstant);format()java.lang.String|getConstant()com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstant;
I;0;ContainerFactory;com.pnfsoftware.jeb.util.encoding.json.parser;com.pnfsoftware.jeb.util.encoding.json.parser.ContainerFactory;;;;createObjectContainer()java.util.Map|creatArrayContainer()java.util.List;
C;0;ContainerUnit;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.ContainerUnit;com.pnfsoftware.jeb.core.units.AbstractUnit;;com.pnfsoftware.jeb.core.units.impl.ContainerUnit(name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)|com.pnfsoftware.jeb.core.units.impl.ContainerUnit(formatType:java.lang.String,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);equals(o:java.lang.Object)boolean|hashCode()int|process(processLeaves:boolean)boolean|process()boolean|getChildren()java.util.List|getRootContainer()com.pnfsoftware.jeb.core.units.impl.ContainerUnit;CONTAINERS_FIRST:java.util.Comparator
I;0;ContentHandler;com.pnfsoftware.jeb.util.encoding.json.parser;com.pnfsoftware.jeb.util.encoding.json.parser.ContentHandler;;;;startArray()boolean|primitive(value:java.lang.Object)boolean|endArray()boolean|startJSON()void|endObjectEntry()boolean|startObjectEntry(key:java.lang.String)boolean|endObject()boolean|startObject()boolean|endJSON()void;
C;1;ContinuationStatus;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult.ContinuationStatus;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus;CONTINUE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus|IGNORE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus|STOP:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus
C;0;ControllerInfo;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.ControllerInfo;java.lang.Object;;com.pnfsoftware.jeb.core.ControllerInfo(address:java.net.InetSocketAddress,protocol:int);getAddress()java.net.InetSocketAddress|getProtocol()int|getPort()int|isSecure()boolean|getInterface()java.lang.String;
C;0;ControllerNotification;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.ControllerNotification;java.lang.Object;;com.pnfsoftware.jeb.core.events.ControllerNotification();;ctlCode:long|ctlHintContinueLeft:int|clientChoice:int
C;0;Conversion;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.Conversion;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.Conversion();stringToLong(s:java.lang.String,def:long,defaultBase:int)long|stringToLong(s:java.lang.String,def:long)long|stringToLong(s:java.lang.String)long|getHexPossibility(s:java.lang.String)int|stringToInt(s:java.lang.String,def:int)int|stringToInt(s:java.lang.String,def:int,defaultBase:int)int|stringToInt(s:java.lang.String)int|toLong(o:java.lang.Object,def:long)long|toLong(o:java.lang.Object)long|toInt(o:java.lang.Object,def:int)int|toInt(o:java.lang.Object)int;
C;0;ConverterInstructionEntry;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ConverterInstructionEntry;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ConverterInstructionEntry()|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ConverterInstructionEntry(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,address:long,r:java.util.List,irAddress:int);;insn:com.pnfsoftware.jeb.core.units.code.IInstruction|address:long|r:java.util.List|irAddress:int
C;0;Coordinates;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.Coordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.text.ICoordinates;com.pnfsoftware.jeb.core.output.text.impl.Coordinates(anchorId:long)|com.pnfsoftware.jeb.core.output.text.impl.Coordinates(anchorId:long,lineDelta:int)|com.pnfsoftware.jeb.core.output.text.impl.Coordinates(anchorId:long,lineDelta:int,columnOffset:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|setAnchorId(anchorId:int)void|setLineDelta(lineDelta:int)void|setColumnOffset(columnOffset:int)void|getColumnOffset()int|getLineDelta()int|getAnchorId()long;
C;0;CoordinatesConversionPrecision;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision;FIRST:com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision|BEST:com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision|LAST:com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision
C;0;CoreOptions;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.CoreOptions;java.lang.Object;;;getDefault()com.pnfsoftware.jeb.core.CoreOptions|isDevelopmentMode()boolean|setStandardProxyInfo(proxyInfo:com.pnfsoftware.jeb.util.net.NetProxyInfo)void|setDevelopmentMode(developmentMode:boolean)void|isAllowAsynchronousProcessing()boolean|setAllowAsynchronousProcessing(allowAsynchronousProcessing:boolean)void|getControllerInfo()com.pnfsoftware.jeb.core.ControllerInfo|getStandardProxyInfo()com.pnfsoftware.jeb.util.net.NetProxyInfo|setControllerInfo(info:com.pnfsoftware.jeb.core.ControllerInfo)void;
C;0;Couple;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.Couple;java.lang.Object;;com.pnfsoftware.jeb.util.base.Couple(a:java.lang.Object,b:java.lang.Object);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getFirst()java.lang.Object|setSecond(b:java.lang.Object)void|setFirst(a:java.lang.Object)void|getFirstElements(couples:java.util.Collection)java.util.Collection|getSecondElements(couples:java.util.Collection)java.util.Collection|getSecond()java.lang.Object;
C;0;DaemonExecutors;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.DaemonExecutors;java.lang.Object;;com.pnfsoftware.jeb.util.concurrent.DaemonExecutors();newFixedThreadPool(nThreads:int)java.util.concurrent.ExecutorService|newSingleThreadExecutor()java.util.concurrent.ExecutorService|newCachedThreadPool()java.util.concurrent.ExecutorService;
C;0;DaemonThreadManager;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.DaemonThreadManager;com.pnfsoftware.jeb.util.concurrent.AbstractThreadManager;;com.pnfsoftware.jeb.util.concurrent.DaemonThreadManager();create(r:java.lang.Runnable)java.lang.Thread;
C;0;DalvikInstructionOpcodes;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.DalvikInstructionOpcodes;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.dex.DalvikInstructionOpcodes();;OP_NOP:int|OP_MOVE:int|OP_MOVE_FROM_16:int|OP_MOVE_16:int|OP_MOVE_WIDE:int|OP_MOVE_WIDE_FROM_16:int|OP_MOVE_WIDE_16:int|OP_MOVE_OBJECT:int|OP_MOVE_OBJECT_FROM_16:int|OP_MOVE_OBJECT_16:int|OP_MOVE_RESULT:int|OP_MOVE_RESULT_WIDE:int|OP_MOVE_RESULT_OBJECT:int|OP_MOVE_EXCEPTION:int|OP_RETURN_VOID:int|OP_RETURN:int|OP_RETURN_WIDE:int|OP_RETURN_OBJECT:int|OP_CONST_4:int|OP_CONST_16:int|OP_CONST:int|OP_CONST_HIGH16:int|OP_CONST_WIDE_16:int|OP_CONST_WIDE_32:int|OP_CONST_WIDE:int|OP_CONST_WIDE_HIGH16:int|OP_CONST_STRING:int|OP_CONST_STRING_JUMBO:int|OP_CONST_CLASS:int|OP_MONITOR_ENTER:int|OP_MONITOR_EXIT:int|OP_CHECK_CAST:int|OP_INSTANCE_OF:int|OP_ARRAY_LENGTH:int|OP_NEW_INSTANCE:int|OP_NEW_ARRAY:int|OP_FILLED_NEW_ARRAY:int|OP_FILLED_NEW_ARRAY_RANGE:int|OP_FILL_ARRAY_DATA:int|OP_THROW:int|OP_GOTO:int|OP_GOTO_16:int|OP_GOTO_32:int|OP_PACKED_SWITCH:int|OP_SPARSE_SWITCH:int|OP_CMPL_FLOAT:int|OP_CMPG_FLOAT:int|OP_CMPL_DOUBLE:int|OP_CMPG_DOUBLE:int|OP_CMP_LONG:int|OP_IF_EQ:int|OP_IF_NE:int|OP_IF_LT:int|OP_IF_GE:int|OP_IF_GT:int|OP_IF_LE:int|OP_IF_EQZ:int|OP_IF_NEZ:int|OP_IF_LTZ:int|OP_IF_GEZ:int|OP_IF_GTZ:int|OP_IF_LEZ:int|OP_AGET:int|OP_AGET_WIDE:int|OP_AGET_OBJECT:int|OP_AGET_BOOLEAN:int|OP_AGET_BYTE:int|OP_AGET_CHAR:int|OP_AGET_SHORT:int|OP_APUT:int|OP_APUT_WIDE:int|OP_APUT_OBJECT:int|OP_APUT_BOOLEAN:int|OP_APUT_BYTE:int|OP_APUT_CHAR:int|OP_APUT_SHORT:int|OP_IGET:int|OP_IGET_WIDE:int|OP_IGET_OBJECT:int|OP_IGET_BOOLEAN:int|OP_IGET_BYTE:int|OP_IGET_CHAR:int|OP_IGET_SHORT:int|OP_IPUT:int|OP_IPUT_WIDE:int|OP_IPUT_OBJECT:int|OP_IPUT_BOOLEAN:int|OP_IPUT_BYTE:int|OP_IPUT_CHAR:int|OP_IPUT_SHORT:int|OP_SGET:int|OP_SGET_WIDE:int|OP_SGET_OBJECT:int|OP_SGET_BOOLEAN:int|OP_SGET_BYTE:int|OP_SGET_CHAR:int|OP_SGET_SHORT:int|OP_SPUT:int|OP_SPUT_WIDE:int|OP_SPUT_OBJECT:int|OP_SPUT_BOOLEAN:int|OP_SPUT_BYTE:int|OP_SPUT_CHAR:int|OP_SPUT_SHORT:int|OP_INVOKE_VIRTUAL:int|OP_INVOKE_SUPER:int|OP_INVOKE_DIRECT:int|OP_INVOKE_STATIC:int|OP_INVOKE_INTERFACE:int|OP_INVOKE_VIRTUAL_RANGE:int|OP_INVOKE_SUPER_RANGE:int|OP_INVOKE_DIRECT_RANGE:int|OP_INVOKE_STATIC_RANGE:int|OP_INVOKE_INTERFACE_RANGE:int|OP_NEG_INT:int|OP_NOT_INT:int|OP_NEG_LONG:int|OP_NOT_LONG:int|OP_NEG_FLOAT:int|OP_NEG_DOUBLE:int|OP_INT_TO_LONG:int|OP_INT_TO_FLOAT:int|OP_INT_TO_DOUBLE:int|OP_LONG_TO_INT:int|OP_LONG_TO_FLOAT:int|OP_LONG_TO_DOUBLE:int|OP_FLOAT_TO_INT:int|OP_FLOAT_TO_LONG:int|OP_FLOAT_TO_DOUBLE:int|OP_DOUBLE_TO_INT:int|OP_DOUBLE_TO_LONG:int|OP_DOUBLE_TO_FLOAT:int|OP_INT_TO_BYTE:int|OP_INT_TO_CHAR:int|OP_INT_TO_SHORT:int|OP_ADD_INT:int|OP_SUB_INT:int|OP_MUL_INT:int|OP_DIV_INT:int|OP_REM_INT:int|OP_AND_INT:int|OP_OR_INT:int|OP_XOR_INT:int|OP_SHL_INT:int|OP_SHR_INT:int|OP_USHR_INT:int|OP_ADD_LONG:int|OP_SUB_LONG:int|OP_MUL_LONG:int|OP_DIV_LONG:int|OP_REM_LONG:int|OP_AND_LONG:int|OP_OR_LONG:int|OP_XOR_LONG:int|OP_SHL_LONG:int|OP_SHR_LONG:int|OP_USHR_LONG:int|OP_ADD_FLOAT:int|OP_SUB_FLOAT:int|OP_MUL_FLOAT:int|OP_DIV_FLOAT:int|OP_REM_FLOAT:int|OP_ADD_DOUBLE:int|OP_SUB_DOUBLE:int|OP_MUL_DOUBLE:int|OP_DIV_DOUBLE:int|OP_REM_DOUBLE:int|OP_ADD_INT_2ADDR:int|OP_SUB_INT_2ADDR:int|OP_MUL_INT_2ADDR:int|OP_DIV_INT_2ADDR:int|OP_REM_INT_2ADDR:int|OP_AND_INT_2ADDR:int|OP_OR_INT_2ADDR:int|OP_XOR_INT_2ADDR:int|OP_SHL_INT_2ADDR:int|OP_SHR_INT_2ADDR:int|OP_USHR_INT_2ADDR:int|OP_ADD_LONG_2ADDR:int|OP_SUB_LONG_2ADDR:int|OP_MUL_LONG_2ADDR:int|OP_DIV_LONG_2ADDR:int|OP_REM_LONG_2ADDR:int|OP_AND_LONG_2ADDR:int|OP_OR_LONG_2ADDR:int|OP_XOR_LONG_2ADDR:int|OP_SHL_LONG_2ADDR:int|OP_SHR_LONG_2ADDR:int|OP_USHR_LONG_2ADDR:int|OP_ADD_FLOAT_2ADDR:int|OP_SUB_FLOAT_2ADDR:int|OP_MUL_FLOAT_2ADDR:int|OP_DIV_FLOAT_2ADDR:int|OP_REM_FLOAT_2ADDR:int|OP_ADD_DOUBLE_2ADDR:int|OP_SUB_DOUBLE_2ADDR:int|OP_MUL_DOUBLE_2ADDR:int|OP_DIV_DOUBLE_2ADDR:int|OP_REM_DOUBLE_2ADDR:int|OP_ADD_INT_LIT16:int|OP_RSUB_INT:int|OP_MUL_INT_LIT16:int|OP_DIV_INT_LIT16:int|OP_REM_INT_LIT16:int|OP_AND_INT_LIT16:int|OP_OR_INT_LIT16:int|OP_XOR_INT_LIT16:int|OP_ADD_INT_LIT8:int|OP_RSUB_INT_LIT8:int|OP_MUL_INT_LIT8:int|OP_DIV_INT_LIT8:int|OP_REM_INT_LIT8:int|OP_AND_INT_LIT8:int|OP_OR_INT_LIT8:int|OP_XOR_INT_LIT8:int|OP_SHL_INT_LIT8:int|OP_SHR_INT_LIT8:int|OP_USHR_INT_LIT8:int|OP_INVOKE_POLYMORPHIC:int|OP_INVOKE_POLYMORPHIC_RANGE:int|OP_INVOKE_CUSTOM:int|OP_INVOKE_CUSTOM_RANGE:int|OP_CONST_METHOD_HANDLE:int|OP_CONST_METHOD_TYPE:int|OP_OART_RETURN_VOID_NO_BARRIER:int|OP_OART_IGET_QUICK:int|OP_OART_IGET_WIDE_QUICK:int|OP_OART_IGET_OBJECT_QUICK:int|OP_OART_IPUT_QUICK:int|OP_OART_IPUT_WIDE_QUICK:int|OP_OART_IPUT_OBJECT_QUICK:int|OP_OART_INVOKE_VIRTUAL_QUICK:int|OP_OART_INVOKE_VIRTUAL_QUICK_RANGE:int|OP_OART_IPUT_BOOLEAN_QUICK:int|OP_OART_IPUT_BYTE_QUICK:int|OP_OART_IPUT_CHAR_QUICK:int|OP_OART_IPUT_SHORT_QUICK:int|OP_OART_IGET_BOOLEAN_QUICK:int|OP_OART_IGET_BYTE_QUICK:int|OP_OART_IGET_CHAR_QUICK:int|OP_OART_IGET_SHORT_QUICK:int|OP_OART_CONST_METHOD_HANDLE:int|OP_OART_CONST_METHOD_TYPE:int|OP_ODEX_IGET_VOLATILE:int|OP_ODEX_IPUT_VOLATILE:int|OP_ODEX_SGET_VOLATILE:int|OP_ODEX_SPUT_VOLATILE:int|OP_ODEX_IGET_OBJECT_VOLATILE:int|OP_ODEX_IGET_WIDE_VOLATILE:int|OP_ODEX_IPUT_WIDE_VOLATILE:int|OP_ODEX_SGET_WIDE_VOLATILE:int|OP_ODEX_SPUT_WIDE_VOLATILE:int|OP_ODEX_BREAKPOINT:int|OP_ODEX_THROW_VERIFICATION_ERROR:int|OP_ODEX_EXECUTE_INLINE:int|OP_ODEX_EXECUTE_INLINE_RANGE:int|OP_ODEX_INVOKE_OBJECT_INIT_RANGE:int|OP_ODEX_RETURN_VOID_BARRIER:int|OP_ODEX_IGET_QUICK:int|OP_ODEX_IGET_WIDE_QUICK:int|OP_ODEX_IGET_OBJECT_QUICK:int|OP_ODEX_IPUT_QUICK:int|OP_ODEX_IPUT_WIDE_QUICK:int|OP_ODEX_IPUT_OBJECT_QUICK:int|OP_ODEX_INVOKE_VIRTUAL_QUICK:int|OP_ODEX_INVOKE_VIRTUAL_QUICK_RANGE:int|OP_ODEX_INVOKE_SUPER_QUICK:int|OP_ODEX_INVOKE_SUPER_QUICK_RANGE:int|OP_ODEX_IPUT_OBJECT_VOLATILE:int|OP_ODEX_SGET_OBJECT_VOLATILE:int|OP_ODEX_SPUT_OBJECT_VOLATILE:int|OP_CONST_CLASS_JUMBO:int|OP_CHECK_CAST_JUMBO:int|OP_INSTANCE_OF_JUMBO:int|OP_NEW_INSTANCE_JUMBO:int|OP_NEW_ARRAY_JUMBO:int|OP_FILLED_NEW_ARRAY_JUMBO:int|OP_IGET_JUMBO:int|OP_IGET_WIDE_JUMBO:int|OP_IGET_OBJECT_JUMBO:int|OP_IGET_BOOLEAN_JUMBO:int|OP_IGET_BYTE_JUMBO:int|OP_IGET_CHAR_JUMBO:int|OP_IGET_SHORT_JUMBO:int|OP_IPUT_JUMBO:int|OP_IPUT_WIDE_JUMBO:int|OP_IPUT_OBJECT_JUMBO:int|OP_IPUT_BOOLEAN_JUMBO:int|OP_IPUT_BYTE_JUMBO:int|OP_IPUT_CHAR_JUMBO:int|OP_IPUT_SHORT_JUMBO:int|OP_SGET_JUMBO:int|OP_SGET_WIDE_JUMBO:int|OP_SGET_OBJECT_JUMBO:int|OP_SGET_BOOLEAN_JUMBO:int|OP_SGET_BYTE_JUMBO:int|OP_SGET_CHAR_JUMBO:int|OP_SGET_SHORT_JUMBO:int|OP_SPUT_JUMBO:int|OP_SPUT_WIDE_JUMBO:int|OP_SPUT_OBJECT_JUMBO:int|OP_SPUT_BOOLEAN_JUMBO:int|OP_SPUT_BYTE_JUMBO:int|OP_SPUT_CHAR_JUMBO:int|OP_SPUT_SHORT_JUMBO:int|OP_INVOKE_VIRTUAL_JUMBO:int|OP_INVOKE_SUPER_JUMBO:int|OP_INVOKE_DIRECT_JUMBO:int|OP_INVOKE_STATIC_JUMBO:int|OP_INVOKE_INTERFACE_JUMBO:int
C;0;DataChainsUpdatePolicy;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy;UPDATE_NOT_NECESSARY:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy|UPDATE_PERFORMED_INTERNALLY:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy|UPDATE_IF_OPTIMIZED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy|UPDATE_IF_REQUIRED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.DataChainsUpdatePolicy
C;0;DataContainerUnit;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.DataContainerUnit;com.pnfsoftware.jeb.core.units.impl.ContainerUnit;;com.pnfsoftware.jeb.core.units.impl.DataContainerUnit(root:com.pnfsoftware.jeb.core.units.impl.DataContainerUnit$Entry,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);register(caller:com.pnfsoftware.jeb.core.units.IUnit,entries:java.util.Collection,processLeaves:boolean)void|register(caller:com.pnfsoftware.jeb.core.units.IUnit,entries:java.util.Collection)void|process()boolean|process(processLeaves:boolean)boolean;
C;0;DataProvider;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.DataProvider;java.lang.Object;com.pnfsoftware.jeb.core.dao.IDataProvider;com.pnfsoftware.jeb.core.dao.impl.DataProvider(userdb:com.pnfsoftware.jeb.core.dao.IUserDatabase,projectdb:com.pnfsoftware.jeb.core.dao.IFileDatabase,filestore:com.pnfsoftware.jeb.core.dao.IFileStore,pluginstore:com.pnfsoftware.jeb.core.dao.IFileStore,appdb:com.pnfsoftware.jeb.core.dao.IApplicationDatabase,config:com.pnfsoftware.jeb.core.properties.IConfiguration);getConfiguration()com.pnfsoftware.jeb.core.properties.IConfiguration|getApplicationDatabase()com.pnfsoftware.jeb.core.dao.IApplicationDatabase|getProjectDatabase()com.pnfsoftware.jeb.core.dao.IFileDatabase|getPluginStore()com.pnfsoftware.jeb.core.dao.IFileStore|getFileStore()com.pnfsoftware.jeb.core.dao.IFileStore|getUserDatabase()com.pnfsoftware.jeb.core.dao.IUserDatabase;
C;0;DataProviderAdapter;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.DataProviderAdapter;java.lang.Object;com.pnfsoftware.jeb.core.dao.IDataProvider;com.pnfsoftware.jeb.core.dao.impl.DataProviderAdapter();getConfiguration()com.pnfsoftware.jeb.core.properties.IConfiguration|getApplicationDatabase()com.pnfsoftware.jeb.core.dao.IApplicationDatabase|getProjectDatabase()com.pnfsoftware.jeb.core.dao.IFileDatabase|getPluginStore()com.pnfsoftware.jeb.core.dao.IFileStore|getFileStore()com.pnfsoftware.jeb.core.dao.IFileStore|getUserDatabase()com.pnfsoftware.jeb.core.dao.IUserDatabase;userdb:com.pnfsoftware.jeb.core.dao.IUserDatabase|appdb:com.pnfsoftware.jeb.core.dao.IApplicationDatabase|filestore:com.pnfsoftware.jeb.core.dao.IFileStore|pluginstore:com.pnfsoftware.jeb.core.dao.IFileStore|projectdb:com.pnfsoftware.jeb.core.dao.IFileDatabase|config:com.pnfsoftware.jeb.core.properties.IConfiguration
C;0;DebugInformationPolicy;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.DebugInformationPolicy;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.DebugInformationPolicy(usage:int,retrieval:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getRetrieval()int|getUsage()int;USAGE_NONE:int|USAGE_INTERNAL:int|USAGE_ALL:int|RETRIEVAL_NONE:int|RETRIEVAL_LOCAL:int|RETRIEVAL_ALL:int
C;0;DebuggerConnectorClass;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.DebuggerConnectorClass;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.debug.DebuggerConnectorClass[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.DebuggerConnectorClass;PROCESS:com.pnfsoftware.jeb.core.units.code.debug.DebuggerConnectorClass|PORT:com.pnfsoftware.jeb.core.units.code.debug.DebuggerConnectorClass
C;0;DebuggerEventData;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerEventData;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerEventData;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerEventData(type:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType,threadId:long,address:java.lang.String);toString()java.lang.String|getAddress()java.lang.String|getType()com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|getOutput()byte[]|getSignalNumber()int|setSignalNumber(signal:int)void|getThreadId()long|getReturnValue()com.pnfsoftware.jeb.core.units.code.debug.ITypedValue|setUnitAddress(ua:com.pnfsoftware.jeb.core.units.UnitAddress)void|getUnitAddress()com.pnfsoftware.jeb.core.units.UnitAddress|setReturnValue(retval:com.pnfsoftware.jeb.core.units.code.debug.ITypedValue)void|setOutput(output:byte[])void;
C;0;DebuggerEventType;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType;SUSPENDED:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|BREAKPOINT:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|BREAKPOINT_FUNCTION_EXIT:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|EXCEPTION:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|FUNCTION_ENTRY:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|FUNCTION_EXIT:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|CODE_LOAD:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|CODE_UNLOAD:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|THREAD_START:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|THREAD_STOP:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|SIGNAL:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|OUTPUT:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType
C;0;DebuggerException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.DebuggerException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.exceptions.DebuggerException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.DebuggerException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.DebuggerException(message:java.lang.String)|com.pnfsoftware.jeb.core.exceptions.DebuggerException();;
C;0;DebuggerHelper;com.pnfsoftware.jeb.core.util;com.pnfsoftware.jeb.core.util.DebuggerHelper;java.lang.Object;;com.pnfsoftware.jeb.core.util.DebuggerHelper();getDebuggerForUnit(project:com.pnfsoftware.jeb.core.IRuntimeProject,targetUnit:com.pnfsoftware.jeb.core.units.code.ICodeUnit)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit;
C;0;DebuggerMachineInformation;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerMachineInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerMachineInformation;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerMachineInformation(name:java.lang.String,location:java.lang.String,flags:int,information:java.lang.String);toString()java.lang.String|getName()java.lang.String|getLocation()java.lang.String|getInformation()java.lang.String|getProcesses()java.util.List|getFlags()int;
C;0;DebuggerOperationType;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType;UNKNOWN:com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType|ATTACH:com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType|DETACH:com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType|TERMINATE:com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType
C;0;DebuggerProcessInformation;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerProcessInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerProcessInformation;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerProcessInformation(id:long,name:java.lang.String,flags:int);toString()java.lang.String|getName()java.lang.String|getId()long|getFlags()int;
C;0;DebuggerSetupInformation;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerSetupInformation;java.lang.Object;;;toString()java.lang.String|create(machine:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerMachineInformation,process:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerProcessInformation)com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerSetupInformation|create(hostname:java.lang.String,port:int)com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerSetupInformation|getPort()int|getHostname()java.lang.String|getConnectorClass()com.pnfsoftware.jeb.core.units.code.debug.DebuggerConnectorClass|setSuspendThreads(enabled:boolean)void|shouldUseChildrenDebuggers()boolean|setUseChildrenDebuggers(enabled:boolean)void|getMachine()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerMachineInformation|getProcess()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerProcessInformation|doSuspendThreads()boolean;
C;0;DebuggerSuspendPolicy;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy;NONE:com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy|THREAD:com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy|ALL:com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy
C;0;DebuggerTargetInformation;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerTargetInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerTargetInformation;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerTargetInformation(processorType:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType,endianness:com.pnfsoftware.jeb.util.io.Endianness);toString()java.lang.String|getStringDescription()java.lang.String|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getProcessorType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|setStringDescription(description:java.lang.String)void;
C;0;DebuggerThreadStatus;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus;UNKNOWN:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|CREATED:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|RUNNING:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|PAUSED:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|SLEEPING:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|WAITING:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|ZOMBIE:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|MONITOR:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus|TERMINATED:com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus
C;0;DebuggerUtil;com.pnfsoftware.jeb.core.units.code.debug.impl;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerUtil();isNativeCodeDebugger(unit:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit)boolean|readMemoryStringSafe(unit:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit,address:long,length:int)byte[]|getPotentialDebuggee(manager:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit,memoryAddress:long)com.pnfsoftware.jeb.core.units.code.ICodeUnit|readMemorySafe(unit:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit,address:long,maxlength:int)byte[];
C;1;DecodedInt;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.IntegerLEB128.DecodedInt;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.IntegerLEB128$DecodedInt();;value:int|encodedSize:int
C;1;DecodedLong;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.LongLEB128.DecodedLong;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.LongLEB128$DecodedLong();;value:long|encodedSize:int
C;0;DecompilationStatus;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus;IN_PROCESS:com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus|NEED_RECONVERSION:com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus|COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus
C;0;DecompilerException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException();;
C;0;DecompilerHelper;com.pnfsoftware.jeb.core.util;com.pnfsoftware.jeb.core.util.DecompilerHelper;java.lang.Object;;com.pnfsoftware.jeb.core.util.DecompilerHelper();getAvailableDecompilers(engctx:com.pnfsoftware.jeb.core.IEnginesContext)java.util.List|getRelatedCodeUnit(unit:com.pnfsoftware.jeb.core.units.IUnit)com.pnfsoftware.jeb.core.units.code.ICodeUnit|getRelatedDecompiler(unit:com.pnfsoftware.jeb.core.units.IUnit)com.pnfsoftware.jeb.core.units.code.IDecompilerUnit|getAvailableDecompilerNames(engctx:com.pnfsoftware.jeb.core.IEnginesContext)java.util.List|getDecompiler(unit:com.pnfsoftware.jeb.core.units.IUnit)com.pnfsoftware.jeb.core.units.code.IDecompilerUnit;
C;0;DecompilerOutputType;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.DecompilerOutputType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.DecompilerOutputType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.DecompilerOutputType;OTHER:com.pnfsoftware.jeb.core.units.code.DecompilerOutputType|JAVA:com.pnfsoftware.jeb.core.units.code.DecompilerOutputType|C:com.pnfsoftware.jeb.core.units.code.DecompilerOutputType|CPP:com.pnfsoftware.jeb.core.units.code.DecompilerOutputType|PYTHON:com.pnfsoftware.jeb.core.units.code.DecompilerOutputType
C;0;DecompilerUtil;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilerUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilerUtil();formatIRCFGWithContext(mode:int,cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)java.lang.String|checkInterrupted()void;
C;0;Deserializer;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.Deserializer;java.lang.Object;;com.pnfsoftware.jeb.util.serialization.Deserializer(customTypeIdProvider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider,stream:java.io.InputStream)|com.pnfsoftware.jeb.util.serialization.Deserializer(customTypeIdProvider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider,classloaders:java.util.List,stream:java.io.InputStream);initialize()void|deserialize()java.lang.Object|deserialize(wantedType:java.lang.Class)java.lang.Object|isInitialized()boolean|getVersion()int|getFlags()int|setExpectedObjectCount(count:int)void|removeObjectCreatedHook(c:java.lang.Class,handler:com.pnfsoftware.jeb.util.serialization.IDeserializationEventHandler)void|addObjectCreatedHook(c:java.lang.Class,handler:com.pnfsoftware.jeb.util.serialization.IDeserializationEventHandler)void|removeProgressCallback(callback:com.pnfsoftware.jeb.util.base.IProgressCallback)void|addProgressCallback(callback:com.pnfsoftware.jeb.util.base.IProgressCallback)void|getObjects()java.util.Collection|getObjectCount()int|setStringPool(stringpool:java.util.List)void|needsStringPool()boolean;
C;0;DeserializerHelper;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.DeserializerHelper;java.lang.Object;;;read()java.lang.Object|getSerializedVersion()int|loadStandard()void|getStream()java.io.InputStream;
C;0;DevPluginClassname;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.DevPluginClassname;java.lang.Object;;com.pnfsoftware.jeb.core.DevPluginClassname(classname:java.lang.String,enabled:boolean);getClassname()java.lang.String|isEnabled()boolean;
C;0;DexDisassemblyProperties;com.pnfsoftware.jeb.core.units.code.android.render;com.pnfsoftware.jeb.core.units.code.android.render.DexDisassemblyProperties;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.render.DexDisassemblyProperties();getShowAnnotations()java.lang.Boolean|getShowLineNumbers()java.lang.Boolean|setShowDebugDirectives(showDebugDirectives:java.lang.Boolean)void|setShowAnnotations(showAnnotations:java.lang.Boolean)void|getShowDebugDirectives()java.lang.Boolean|getSmaliCompatibility()java.lang.Boolean|getShowInstructionsInGaps()java.lang.Boolean|getMethodSeparatorLength()java.lang.Integer|getShowSpaceBetweenBlocks()java.lang.Boolean|getClassSeparatorLength()java.lang.Integer|setClassSeparatorLength(classSeparatorLength:java.lang.Integer)void|setShowLineNumbers(showLineNumbers:java.lang.Boolean)void|setSmaliCompatibility(smaliCompatibility:java.lang.Boolean)void|setShowInstructionsInGaps(showInstructionsInGaps:java.lang.Boolean)void|getUsePForParameters()java.lang.Boolean|setShowSpaceBetweenBlocks(showSpaceBetweenBlocks:java.lang.Boolean)void|setUsePForParameters(usePForParameters:java.lang.Boolean)void|setMethodSeparatorLength(methodSeparatorLength:java.lang.Integer)void|setShowAddresses(showAddresses:java.lang.Boolean)void|setShowBytecode(showBytecode:java.lang.Boolean)void|getShowAddresses()java.lang.Boolean|getShowBytecode()java.lang.Boolean;
C;0;DexUtil;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.DexUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.DexUtil();getStaticFieldInitializer(c:com.pnfsoftware.jeb.core.units.code.android.dex.IDexClass,fd:com.pnfsoftware.jeb.core.units.code.android.dex.IDexFieldData)com.pnfsoftware.jeb.core.units.code.android.dex.IDexValue|toJniName(signature:java.lang.String)java.lang.String[];
C;1;Digest;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block.Digest;java.lang.Object;;;toString()java.lang.String|getSignatureAlgorithmId()int|getDigestBytes()byte[];
C;0;DirectByteArrayOutputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.DirectByteArrayOutputStream;java.io.ByteArrayOutputStream;;com.pnfsoftware.jeb.util.io.DirectByteArrayOutputStream();getBytes()java.nio.ByteBuffer|getRawBytes()byte[];
C;0;DirectEncodedMemoryArea;com.pnfsoftware.jeb.core.units.code.asm.processor.memory;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.DirectEncodedMemoryArea;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.AbstractEncodedMemoryArea;;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.DirectEncodedMemoryArea(index:int,length:int);get(index:int,length:int)com.pnfsoftware.jeb.core.units.code.asm.processor.memory.DirectEncodedMemoryArea|getLength()int|decode(code:byte[])long|shift(shift:int)com.pnfsoftware.jeb.core.units.code.asm.processor.memory.EncodedMemoryAreaList|getIndex()int|getThumb2(index:int,zone:int,length:int)com.pnfsoftware.jeb.core.units.code.asm.processor.memory.DirectEncodedMemoryArea;
C;0;DirectoryEnumerator;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.DirectoryEnumerator;java.lang.Object;java.lang.Iterable;com.pnfsoftware.jeb.util.io.DirectoryEnumerator(base:java.io.File,filterString:java.lang.String,recurse:boolean)|com.pnfsoftware.jeb.util.io.DirectoryEnumerator(base:java.io.File);iterator()java.util.Iterator|list()java.util.List|addBlackListedDirectory(dirname:java.lang.String)void|getBlacklistedDirnames()java.util.Collection|getFilter()java.util.regex.Pattern|setFilterString(filterString:java.lang.String,matchCaseInsensitive:boolean,matchUnicode:boolean)void|setRecurse(recurse:boolean)void|setFilter(pattern:java.util.regex.Pattern)void|isRecurse()boolean;
C;0;DummyInputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.DummyInputStream;java.io.InputStream;;com.pnfsoftware.jeb.util.io.DummyInputStream();read(b:byte[],off:int,len:int)int|read()int|getTotalSize()long;
C;0;DummyOutputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.DummyOutputStream;java.io.OutputStream;;com.pnfsoftware.jeb.util.io.DummyOutputStream();write(b:byte[],off:int,len:int)void|write(b:byte[])void|write(b:int)void|getTotalSize()long;
C;0;EEquationMatcher;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EEquationMatcher;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EEquationMatcher(t0:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode,t1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode);getMatchMap()java.util.Map|isMatch(e0:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,e1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean;
C;0;EExpressionGenerator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EExpressionGenerator;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EExpressionGenerator(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,template:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode);generate(matchmap:java.util.Map)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
C;0;EExpressionMatcher;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EExpressionMatcher;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EExpressionMatcher(template:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode,initmap:java.util.Map)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EExpressionMatcher(template:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode);reset()void|getMatchMap()java.util.Map|isMatch(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean;
C;0;ELF;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ELF;java.lang.Object;;com.pnfsoftware.jeb.core.units.codeobject.ELF();high(x:int)int|getSHFStringFlags(flags:int)java.lang.String|getNoteTypeString(name:java.lang.String,type:int)java.lang.String|getELFClassString(id:int)java.lang.String|getNoteGnuABIString(descData:byte[],order:java.nio.ByteOrder)java.lang.String|getNoteAndroidVersionString(descData:byte[],order:java.nio.ByteOrder)java.lang.String|getArmAttributeTagString(tag:int)java.lang.String|getOSABIString(osabi:int)java.lang.String|getSHFString(id:int)java.lang.String|getSHTString(id:int)java.lang.String|getELFDataString(id:int)java.lang.String|getEVString(id:int)java.lang.String|getETString(id:int)java.lang.String|getDT(tag:int)java.lang.String|getEMString(id:int)java.lang.String|getPTString(programType:int)java.lang.String|getPTString(programType:int,emachine:int)java.lang.String|Force_SE(operand:int,opSize:int)int|getSTTString(id:int)java.lang.String|getSTBString(id:int)java.lang.String|relocate(id:int,A:int,ABitCount:int,AHL:int,P:int,S:int,G:int,GP:int,GP0:int,EA:int,L:int,sym:com.pnfsoftware.jeb.core.units.codeobject.ELF$R_SYMBOL)int|getPFString(programFlags:int)java.lang.String|getRTString(proctype:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType,id:int)java.lang.String|getX86RTString(id:int)java.lang.String|SE(operand:long,opSize:int)long|isRT_GLOB_DAT(relocationType:int)boolean|isRT_JUMP_SLOT(relocationType:int)boolean;ElfMagic:byte[]|ElfMagicIntLE:int|ElfMagicIntBE:int|ELF32_HEADER_SIZE_MIN:int|ELF64_HEADER_SIZE_MIN:int|ELF_HEADER_SIZE_MIN_SAFE:int|PHT32_ENTRY_SIZE_MIN:int|PHT64_ENTRY_SIZE_MIN:int|SHT32_ENTRY_SIZE_MIN:int|SHT64_ENTRY_SIZE_MIN:int|SIZEOF_SYMBOL_ENTRY_32:int|SIZEOF_SYMBOL_ENTRY_64:int|SHN_UNDEF:int|SHN_LORESERVE:int|SHN_LOPROC:int|SHN_HIPROC:int|SHN_ABS:int|SHN_COMMON:int|SHN_HIRESERVE:int|SHT_NULL:int|SHT_PROGBITS:int|SHT_SYMTAB:int|SHT_STRTAB:int|SHT_RELA:int|SHT_HASH:int|SHT_DYNAMIC:int|SHT_NOTE:int|SHT_NOBITS:int|SHT_REL:int|SHT_SHLIB:int|SHT_DYNSYM:int|SHT_INIT_ARRAY:int|SHT_FINI_ARRAY:int|SHT_PREINIT_ARRAY:int|SHT_GROUP:int|SHT_SYMTAB_SHNDX:int|SHT_LOOS:int|SHT_HIOS:int|SHT_LOPROC:int|SHT_HIPROC:int|SHT_LOUSER:int|SHT_HIUSER:int|SHT_ARM_EXIDX:int|SHT_ARM_PREEMPTMAP:int|SHT_ARM_ATTRIBUTES:int|SHT_ARM_DEBUGOVERLAY:int|SHT_ARM_OVERLAYSECTION:int|SHF_WRITE:int|SHF_ALLOC:int|SHF_EXECINSTR:int|SHF_MERGE:int|SHF_STRINGS:int|SHF_INFO_LINK:int|SHF_LINK_ORDER:int|SHF_OS_NONCONFORMING:int|SHF_GROUP:int|SHF_TLS:int|SHF_COMPRESSED:int|SHF_MASKOS:int|SHF_MASKPROC:int|ELFCLASSNONE:byte|ELFCLASS32:byte|ELFCLASS64:byte|ELFDATANONE:byte|ELFDATA2LSB:byte|ELFDATA2MSB:byte|EV_NONE:int|EV_CURRENT:int|ET_NONE:short|ET_REL:short|ET_EXEC:short|ET_DYN:short|ET_CORE:short|ET_LOPROC:short|ET_HIPROC:short|ELFOSABI_NONE:int|ELFOSABI_HPUX:int|ELFOSABI_NETBSD:int|ELFOSABI_GNU:int|ELFOSABI_LINUX:int|ELFOSABI_HURD:int|ELFOSABI_SOLARIS:int|ELFOSABI_AIX:int|ELFOSABI_IRIX:int|ELFOSABI_FREEBSD:int|ELFOSABI_TRU64:int|ELFOSABI_MODESTO:int|ELFOSABI_OPENBSD:int|ELFOSABI_OPENVMS:int|ELFOSABI_NSK:int|ELFOSABI_AROS:int|ELFOSABI_FENIXOS:int|ELFOSABI_C6000_ELFABI:int|ELFOSABI_C6000_LINUX:int|ELFOSABI_ARM:int|ELFOSABI_STANDALONE:int|EM_NONE:int|EM_M32:int|EM_SPARC:int|EM_386:int|EM_68K:int|EM_88K:int|EM_486:int|EM_860:int|EM_MIPS:int|EM_S370:int|EM_MIPS_RS3_LE:int|EM_PARISC:int|EM_VPP500:int|EM_SPARC32PLUS:int|EM_960:int|EM_PPC:int|EM_PPC64:int|EM_S390:int|EM_SPU:int|EM_V800:int|EM_FR20:int|EM_RH32:int|EM_RCE:int|EM_ARM:int|EM_ALPHA:int|EM_SH:int|EM_SPARCV9:int|EM_TRICORE:int|EM_ARC:int|EM_H8_300:int|EM_H8_300H:int|EM_H8S:int|EM_H8_500:int|EM_IA_64:int|EM_MIPS_X:int|EM_COLDFIRE:int|EM_68HC12:int|EM_MMA:int|EM_PCP:int|EM_NCPU:int|EM_NDR1:int|EM_STARCORE:int|EM_ME16:int|EM_ST100:int|EM_TINYJ:int|EM_X86_64:int|EM_PDSP:int|EM_PDP10:int|EM_PDP11:int|EM_FX66:int|EM_ST9PLUS:int|EM_ST7:int|EM_68HC16:int|EM_68HC11:int|EM_68HC08:int|EM_68HC05:int|EM_SVX:int|EM_ST19:int|EM_VAX:int|EM_CRIS:int|EM_JAVELIN:int|EM_FIREPATH:int|EM_ZSP:int|EM_MMIX:int|EM_HUANY:int|EM_PRISM:int|EM_AVR:int|EM_FR30:int|EM_D10V:int|EM_D30V:int|EM_V850:int|EM_M32R:int|EM_MN10300:int|EM_MN10200:int|EM_PJ:int|EM_OPENRISC:int|EM_ARC_COMPACT:int|EM_XTENSA:int|EM_VIDEOCORE:int|EM_TMM_GPP:int|EM_NS32K:int|EM_TPC:int|EM_SNP1K:int|EM_ST200:int|EM_IP2K:int|EM_MAX:int|EM_CR:int|EM_F2MC16:int|EM_MSP430:int|EM_BLACKFIN:int|EM_SE_C33:int|EM_SEP:int|EM_ARCA:int|EM_UNICORE:int|EM_EXCESS:int|EM_DXP:int|EM_ALTERA_NIOS2:int|EM_CRX:int|EM_XGATE:int|EM_C166:int|EM_M16C:int|EM_DSPIC30F:int|EM_CE:int|EM_M32C:int|EM_TSK3000:int|EM_RS08:int|EM_SHARC:int|EM_ECOG2:int|EM_SCORE7:int|EM_DSP24:int|EM_VIDEOCORE3:int|EM_LATTICEMICO32:int|EM_SE_C17:int|EM_TI_C6000:int|EM_TI_C2000:int|EM_TI_C5500:int|EM_MMDSP_PLUS:int|EM_CYPRESS_M8C:int|EM_R32C:int|EM_TRIMEDIA:int|EM_HEXAGON:int|EM_8051:int|EM_STXP7X:int|EM_NDS32:int|EM_ECOG1:int|EM_ECOG1X:int|EM_MAXQ30:int|EM_XIMO16:int|EM_MANIK:int|EM_CRAYNV2:int|EM_RX:int|EM_METAG:int|EM_MCST_ELBRUS:int|EM_ECOG16:int|EM_CR16:int|EM_ETPU:int|EM_SLE9X:int|EM_L10M:int|EM_K10M:int|EM_AARCH64:int|EM_AVR32:int|EM_STM8:int|EM_TILE64:int|EM_TILEPRO:int|EM_CUDA:int|EM_TILEGX:int|EM_CLOUDSHIELD:int|EM_COREA_1ST:int|EM_COREA_2ND:int|EM_ARC_COMPACT2:int|EM_OPEN8:int|EM_RL78:int|EM_VIDEOCORE5:int|EM_78KOR:int|EM_56800EX:int|DT_NULL:int|DT_NEEDED:int|DT_PLTRELSZ:int|DT_PLTGOT:int|DT_HASH:int|DT_STRTAB:int|DT_SYMTAB:int|DT_RELA:int|DT_RELASZ:int|DT_RELAENT:int|DT_STRSZ:int|DT_SYMENT:int|DT_INIT:int|DT_FINI:int|DT_SONAME:int|DT_RPATH:int|DT_SYMBOLIC:int|DT_REL:int|DT_RELSZ:int|DT_RELENT:int|DT_PLTREL:int|DT_DEBUG:int|DT_TEXTREL:int|DT_JMPREL:int|DT_BIND_NOW:int|DT_INIT_ARRAY:int|DT_FINI_ARRAY:int|DT_INIT_ARRAYSZ:int|DT_FINI_ARRAYSZ:int|DT_RUNPATH:int|DT_FLAGS:int|DT_PREINIT_ARRAY:int|DT_PREINIT_ARRAYSZ:int|DT_SYMTAB_SHNDX:int|DT_LOOS:int|DT_HIOS:int|DT_LOPROC:int|DT_HIPROC:int|DT_GNU_HASH:int|DT_RELACOUNT:int|DT_RELCOUNT:int|DT_FLAGS_1:int|DT_VERSYM:int|DT_VERDEF:int|DT_VERDEFNUM:int|DT_VERNEED:int|DT_VERNEEDNUM:int|PT_NULL:int|PT_LOAD:int|PT_DYNAMIC:int|PT_INTERP:int|PT_NOTE:int|PT_SHLIB:int|PT_PHDR:int|PT_TLS:int|PT_LOOS:int|PT_HIOS:int|PT_LOPROC:int|PT_HIPROC:int|PT_GNU_EH_FRAME:int|PT_GNU_RELRO:int|PT_GNU_STACK:int|PT_ARM_EXIDX:int|PT_MIPS_REGINFO:int|PT_MIPS_RTPROC:int|PT_MIPS_OPTIONS:int|PT_HP_TLS:int|PT_HP_CORE_NONE:int|PT_HP_CORE_VERSION:int|PT_HP_CORE_KERNEL:int|PT_HP_CORE_COMM:int|PT_HP_CORE_PROC:int|PT_HP_CORE_LOADABLE:int|PT_HP_CORE_STACK:int|PT_HP_CORE_SHM:int|PT_HP_CORE_MMF:int|PT_HP_PARALLEL:int|PT_HP_FASTBIND:int|PT_HP_OPT_ANNOT:int|PT_HP_HSL_ANNOT:int|PT_HP_STACK:int|PT_HP_CORE_UTSNAME:int|PT_PARISC_ARCHEXT:int|PT_PARISC_UNWIND:int|PT_PARISC_WEAKORDER:int|PT_IA_64_ARCHEXT:int|PT_IA_64_UNWIND:int|PT_IA_64_HP_OPT_ANOT:int|PT_IA_64_HP_HSL_ANOT:int|PT_IA_64_HP_STACK:int|PF_X:int|PF_W:int|PF_R:int|PF_MASKOS:int|PF_MASKPROC:int|STB_LOCAL:int|STB_GLOBAL:int|STB_WEAK:int|STB_LOPROC:int|STB_HIPROC:int|STT_NOTYPE:int|STT_OBJECT:int|STT_FUNC:int|STT_SECTION:int|STT_FILE:int|STT_COMMON:int|STT_TLS:int|STT_GNU_IFUNC:int|STT_LOOS:int|STT_HIOS:int|STT_LOPROC:int|STT_HIPROC:int|NT_OWNER_FREEBSD:java.lang.String|NT_OWNER_GNU:java.lang.String|NT_OWNER_NETBSD:java.lang.String|NT_OWNER_CSR:java.lang.String|NT_OWNER_ANDROID:java.lang.String|NT_GNU_ABI_TAG:int|NT_GNU_HWCAP:int|NT_GNU_BUILD_ID:int|NT_GNU_GOLD_VERSION:int|NT_GNU_PROPERTY_TYPE_0:int|ELF_NOTE_OS_LINUX:int|ELF_NOTE_OS_GNU:int|ELF_NOTE_OS_SOLARIS2:int|ELF_NOTE_OS_FREEBSD:int|ARM_ATTR_TAG_FILE:byte|ARM_ATTR_TAG_SECTION:byte|ARM_ATTR_TAG_SYMBOL:byte|ARM_ATTR_TAG_CPU_RAW_NAME:int|ARM_ATTR_TAG_CPU_NAME:int|ARM_ATTR_TAG_CPU_ARCH:int|ARM_ATTR_TAG_CPU_ARCH_PROFILE:int|ARM_ATTR_TAG_ARM_ISA_USE:int|ARM_ATTR_TAG_THUMB_ISA_USE:int|ARM_ATTR_TAG_FP_ARCH:int|ARM_ATTR_TAG_WMMX_ARCH:int|ARM_ATTR_TAG_ADVANCED_SIMD_ARCH:int|ARM_ATTR_TAG_PCS_CONFIG:int|ARM_ATTR_TAG_ABI_PCS_R9_USE:int|ARM_ATTR_TAG_ABI_PCS_RW_DATA:int|ARM_ATTR_TAG_ABI_PCS_RO_DATA:int|ARM_ATTR_TAG_ABI_PCS_GOT_USE:int|ARM_ATTR_TAG_ABI_PCS_WCHAR_T:int|ARM_ATTR_TAG_ABI_FP_ROUNDING:int|ARM_ATTR_TAG_ABI_FP_DENORMAL:int|ARM_ATTR_TAG_ABI_FP_EXCEPTIONS:int|ARM_ATTR_TAG_ABI_FP_USER_EXCEPTIONS:int|ARM_ATTR_TAG_ABI_FP_NUMBER_MODEL:int|ARM_ATTR_TAG_ABI_ALIGN_NEEDED:int|ARM_ATTR_TAG_ABI_ALIGN_PRESERVED:int|ARM_ATTR_TAG_ABI_ENUM_SIZE:int|ARM_ATTR_TAG_ABI_HARDFP_USE:int|ARM_ATTR_TAG_ABI_VFP_ARGS:int|ARM_ATTR_TAG_ABI_WMMX_ARGS:int|ARM_ATTR_TAG_ABI_OPTIMIZATION_GOALS:int|ARM_ATTR_TAG_ABI_FP_OPTIMIZATION_GOALS:int|ARM_ATTR_TAG_COMPATIBILITY:int|ARM_ATTR_TAG_CPU_UNALIGNED_ACCESS:int|ARM_ATTR_TAG_FP_HP_EXTENSION:int|ARM_ATTR_TAG_ABI_FP_16BIT_FORMAT:int|ARM_ATTR_TAG_MPEXTENSION_USE:int|ARM_ATTR_TAG_DIV_USE:int|ARM_ATTR_TAG_DSP_EXTENSION:int|ARM_ATTR_TAG_ALSO_COMPATIBLE_WITH:int|ARM_ATTR_TAG_CONFORMANCE:int|ARM_ATTR_TAG_VIRTUALIZATION_USE:int|ARM_ATTR_TAG_NODEFAULTS:int|ARM_ATTR_TAG_T2EE_USE:int|ARM_ATTR_TAG_MPEXTENSION_USE_OLD:int|R_MIPS_NONE:int|R_MIPS_16:int|R_MIPS_32:int|R_MIPS_REL32:int|R_MIPS_26:int|R_MIPS_HI16:int|R_MIPS_LO16:int|R_MIPS_GPREL16:int|R_MIPS_LITERAL:int|R_MIPS_GOT16:int|R_MIPS_PC16:int|R_MIPS_CALL16:int|R_MIPS_GPREL32:int|R_MIPS_UNUSED1:int|R_MIPS_UNUSED2:int|R_MIPS_SHIFT5:int|R_MIPS_SHIFT6:int|R_MIPS_64:int|R_MIPS_GOT_DISP:int|R_MIPS_GOT_PAGE:int|R_MIPS_GOT_OFST:int|R_MIPS_GOT_HI16:int|R_MIPS_GOT_LO16:int|R_MIPS_SUB:int|R_MIPS_INSERT_A:int|R_MIPS_INSERT_B:int|R_MIPS_DELETE:int|R_MIPS_HIGHER:int|R_MIPS_HIGHEST:int|R_MIPS_CALL_HI16:int|R_MIPS_CALL_LO16:int|R_MIPS_SCN_DISP:int|R_MIPS_REL16:int|R_MIPS_ADD_IMMEDIATE:int|R_MIPS_PJUMP:int|R_MIPS_RELGOT:int|R_MIPS_JALR:int|R_MIPS_TLS_DTPMOD32:int|R_MIPS_TLS_DTPREL32:int|R_MIPS_TLS_DTPMOD64:int|R_MIPS_TLS_DTPREL64:int|R_MIPS_TLS_GD:int|R_MIPS_TLS_LDM:int|R_MIPS_TLS_DTPREL_HI16:int|R_MIPS_TLS_DTPREL_LO16:int|R_MIPS_TLS_GOTTPREL:int|R_MIPS_TLS_TPREL32:int|R_MIPS_TLS_TPREL64:int|R_MIPS_TLS_TPREL_HI16:int|R_MIPS_TLS_TPREL_LO16:int|R_MIPS_GLOB_DAT:int|R_MIPS_PC21_S2:int|R_MIPS_PC26_S2:int|R_MIPS_PC18_S3:int|R_MIPS_PC19_S2:int|R_MIPS_PCHI16:int|R_MIPS_PCLO16:int|R_MIPS16_GOT16:int|R_MIPS16_HI16:int|R_MIPS16_LO16:int|R_MIPS_COPY:int|R_MIPS_JUMP_SLOT:int|R_MICROMIPS_26_S1:int|R_MICROMIPS_HI16:int|R_MICROMIPS_LO16:int|R_MICROMIPS_GOT16:int|R_MICROMIPS_PC16_S1:int|R_MICROMIPS_CALL16:int|R_MICROMIPS_GOT_DISP:int|R_MICROMIPS_GOT_PAGE:int|R_MICROMIPS_GOT_OFST:int|R_MICROMIPS_TLS_GD:int|R_MICROMIPS_TLS_LDM:int|R_MICROMIPS_TLS_DTPREL_HI16:int|R_MICROMIPS_TLS_DTPREL_LO16:int|R_MICROMIPS_TLS_TPREL_HI16:int|R_MICROMIPS_TLS_TPREL_LO16:int|R_MIPS_NUM:int|R_MIPS_PC32:int|R_386_JUMP_SLOT:int|R_386_NONE:int|R_386_32:int|R_386_PC32:int|R_386_GOT32:int|R_386_PLT32:int|R_386_COPY:int|R_386_GLOB_DAT:int|R_386_JMP_SLOT:int|R_386_RELATIVE:int|R_386_GOTOFF:int|R_386_GOTPC:int|R_ARM_NONE:int|R_ARM_PC24:int|R_ARM_ABS32:int|R_ARM_REL32:int|R_ARM_LDR_PC_G0:int|R_ARM_ABS16:int|R_ARM_ABS12:int|R_ARM_THM_ABS5:int|R_ARM_ABS8:int|R_ARM_SBREL32:int|R_ARM_THM_CALL:int|R_ARM_THM_PC8:int|R_ARM_BREL_ADJ:int|R_ARM_TLS_DESC:int|R_ARM_THM_SWI8:int|R_ARM_XPC25:int|R_ARM_THM_XPC22:int|R_ARM_TLS_DTPMOD32:int|R_ARM_TLS_DTPOFF32:int|R_ARM_TLS_TPOFF32:int|R_ARM_COPY:int|R_ARM_GLOB_DAT:int|R_ARM_JUMP_SLOT:int|R_ARM_RELATIVE:int|R_ARM_GOTOFF32:int|R_ARM_BASE_PREL:int|R_ARM_GOT_BREL:int|R_ARM_PLT32:int|R_ARM_CALL:int|R_ARM_JUMP24:int|R_ARM_THM_JUMP24:int|R_ARM_BASE_ABS:int|R_ARM_ALU_PCREL_7_0:int|R_ARM_ALU_PCREL_15_8:int|R_ARM_ALU_PCREL_23_15:int|R_ARM_LDR_SBREL_11_0_NC:int|R_ARM_ALU_SBREL_19_12_NC:int|R_ARM_ALU_SBREL_27_20_CK:int|R_ARM_TARGET1:int|R_ARM_SBREL31:int|R_ARM_V4BX:int|R_ARM_TARGET2:int|R_ARM_PREL31:int|R_ARM_MOVW_ABS_NC:int|R_ARM_MOVT_ABS:int|R_ARM_MOVW_PREL_NC:int|R_ARM_MOVT_PREL:int|R_ARM_THM_MOVW_ABS_NC:int|R_ARM_THM_MOVT_ABS:int|R_ARM_THM_MOVW_PREL_NC:int|R_ARM_THM_MOVT_PREL:int|R_ARM_THM_JUMP19:int|R_ARM_THM_JUMP6:int|R_ARM_THM_ALU_PREL_11_0:int|R_ARM_THM_PC12:int|R_ARM_ABS32_NOI:int|R_ARM_REL32_NOI:int|R_ARM_ALU_PC_G0_NC:int|R_ARM_ALU_PC_G0:int|R_ARM_ALU_PC_G1_NC:int|R_ARM_ALU_PC_G1:int|R_ARM_ALU_PC_G2:int|R_ARM_LDR_PC_G1:int|R_ARM_LDR_PC_G2:int|R_ARM_LDRS_PC_G0:int|R_ARM_LDRS_PC_G1:int|R_ARM_LDRS_PC_G2:int|R_ARM_LDC_PC_G0:int|R_ARM_LDC_PC_G1:int|R_ARM_LDC_PC_G2:int|R_ARM_ALU_SB_G0_NC:int|R_ARM_ALU_SB_G0:int|R_ARM_ALU_SB_G1_NC:int|R_ARM_ALU_SB_G1:int|R_ARM_ALU_SB_G2:int|R_ARM_LDR_SB_G0:int|R_ARM_LDR_SB_G1:int|R_ARM_LDR_SB_G2:int|R_ARM_LDRS_SB_G0:int|R_ARM_LDRS_SB_G1:int|R_ARM_LDRS_SB_G2:int|R_ARM_LDC_SB_G0:int|R_ARM_LDC_SB_G1:int|R_ARM_LDC_SB_G2:int|R_ARM_MOVW_BREL_NC:int|R_ARM_MOVT_BREL:int|R_ARM_MOVW_BREL:int|R_ARM_THM_MOVW_BREL_NC:int|R_ARM_THM_MOVT_BREL:int|R_ARM_THM_MOVW_BREL:int|R_ARM_TLS_GOTDESC:int|R_ARM_TLS_CALL:int|R_ARM_TLS_DESCSEQ:int|R_ARM_THM_TLS_CALL:int|R_ARM_PLT32_ABS:int|R_ARM_GOT_ABS:int|R_ARM_GOT_PREL:int|R_ARM_GOT_BREL12:int|R_ARM_GOTOFF12:int|R_ARM_GOTRELAX:int|R_ARM_GNU_VTENTRY:int|R_ARM_GNU_VTINHERIT:int|R_ARM_THM_JUMP11:int|R_ARM_THM_JUMP8:int|R_ARM_TLS_GD32:int|R_ARM_TLS_LDM32:int|R_ARM_TLS_LDO32:int|R_ARM_TLS_IE32:int|R_ARM_TLS_LE32:int|R_ARM_TLS_LDO12:int|R_ARM_TLS_LE12:int|R_ARM_TLS_IE12GP:int|R_ARM_PRIVATE_0:int|R_ARM_PRIVATE_1:int|R_ARM_PRIVATE_2:int|R_ARM_PRIVATE_3:int|R_ARM_PRIVATE_4:int|R_ARM_PRIVATE_5:int|R_ARM_PRIVATE_6:int|R_ARM_PRIVATE_7:int|R_ARM_PRIVATE_8:int|R_ARM_PRIVATE_9:int|R_ARM_PRIVATE_10:int|R_ARM_PRIVATE_11:int|R_ARM_PRIVATE_12:int|R_ARM_PRIVATE_13:int|R_ARM_PRIVATE_14:int|R_ARM_PRIVATE_15:int|R_ARM_ME_TOO:int|R_ARM_THM_TLS_DESCSEQ16:int|R_ARM_THM_TLS_DESCSEQ32:int|R_AARCH64_NONE:int|R_AARCH64_ABS64:int|R_AARCH64_ABS32:int|R_AARCH64_ABS16:int|R_AARCH64_PREL64:int|R_AARCH64_PREL32:int|R_AARCH64_PREL16:int|R_AARCH64_MOVW_UABS_G0:int|R_AARCH64_MOVW_UABS_G0_NC:int|R_AARCH64_MOVW_UABS_G1:int|R_AARCH64_MOVW_UABS_G1_NC:int|R_AARCH64_MOVW_UABS_G2:int|R_AARCH64_MOVW_UABS_G2_NC:int|R_AARCH64_MOVW_UABS_G3:int|R_AARCH64_MOVW_SABS_G0:int|R_AARCH64_MOVW_SABS_G1:int|R_AARCH64_MOVW_SABS_G2:int|R_AARCH64_LD_PREL_LO19:int|R_AARCH64_ADR_PREL_LO21:int|R_AARCH64_ADR_PREL_PG_HI21:int|R_AARCH64_ADR_PREL_PG_HI21_NC:int|R_AARCH64_ADD_ABS_LO12_NC:int|R_AARCH64_LDST8_ABS_LO12_NC:int|R_AARCH64_TSTBR14:int|R_AARCH64_CONDBR19:int|R_AARCH64_JUMP26:int|R_AARCH64_CALL26:int|R_AARCH64_LDST16_ABS_LO12_NC:int|R_AARCH64_LDST32_ABS_LO12_NC:int|R_AARCH64_LDST64_ABS_LO12_NC:int|R_AARCH64_LDST128_ABS_LO12_NC:int|R_AARCH64_MOVW_PREL_G0:int|R_AARCH64_MOVW_PREL_G0_NC:int|R_AARCH64_MOVW_PREL_G1:int|R_AARCH64_MOVW_PREL_G1_NC:int|R_AARCH64_MOVW_PREL_G2:int|R_AARCH64_MOVW_PREL_G2_NC:int|R_AARCH64_MOVW_PREL_G3:int|R_AARCH64_COPY:int|R_AARCH64_GLOB_DAT:int|R_AARCH64_JUMP_SLOT:int|R_AARCH64_RELATIVE:int|R_AARCH64_TLS_TPREL64:int|R_AARCH64_TLS_DTPREL32:int|R_AARCH64_IRELATIVE:int|R_X86_64_NONE:int|R_X86_64_64:int|R_X86_64_PC32:int|R_X86_64_GOT32:int|R_X86_64_PLT32:int|R_X86_64_COPY:int|R_X86_64_GLOB_DAT:int|R_X86_64_JUMP_SLOT:int|R_X86_64_RELATIVE:int|R_X86_64_GOTPCREL:int|R_X86_64_32:int|R_X86_64_32S:int|R_X86_64_16:int|R_X86_64_PC16:int|R_X86_64_8:int|R_X86_64_PC8:int|R_X86_64_DTPMOD64:int|R_X86_64_DTPOFF64:int|R_X86_64_TPOFF64:int|R_X86_64_TLSGD:int|R_X86_64_TLSLD:int|R_X86_64_DTPOFF32:int|R_X86_64_GOTTPOFF:int|R_X86_64_TPOFF32:int|R_X86_64_PC64:int|R_X86_64_GOTOFF64:int|R_X86_64_GOTPC32:int|R_X86_64_GOT64:int|R_X86_64_GOTPCREL64:int|R_X86_64_GOTPC64:int|R_X86_64_GOTPLT64:int|R_X86_64_PLTOFF64:int|R_X86_64_SIZE32:int|R_X86_64_SIZE64:int|R_X86_64_GOTPC32_TLSDESC:int|R_X86_64_TLSDESC_CALL:int|R_X86_64_TLSDESC:int|R_X86_64_IRELATIVE:int|R_X86_64_RELATIVE64:int|R_X86_64_NUM:int
C;0;ELocation;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ELocation;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ELocation(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,virtualPCOffset:int);getOffset()int|getRoutineContext()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext;
C;0;EMasterOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.EMasterOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.AbstractMasterOptimizer;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.EMasterOptimizer(ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,grp1NMaxRunCount:int)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.EMasterOptimizer(ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext);preAllOptimizationsCallback(target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)void|preAllOptimizationsCallback(arg0:java.lang.Object)void|isReachingRoutineOutput(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,reg:int)boolean|addDisregardedOutputBits(disregardedOutputBits:java.util.Collection)void|addDisregardedOutputVariables(disregardedOutputVars:java.util.Collection)void|addDisregardedOutputFilter(filter:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptFilterCanDiscard)void|getDisregardedOutputRegisters()java.util.Set|postAllOptimizationsCallback(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)void|postAllOptimizationsCallback(arg0:java.lang.Object)void|canDiscardUnusedDefinition(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,regDef:int,insnAddress:long)boolean|postOptimizationCallback(arg0:java.lang.Object,arg1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry,arg2:int,arg3:long)void|postOptimizationCallback(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry,cnt:int,executionTimeMs:long)void|getDefinitionReachingRoutineOutput(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,reg:int,address:long)int|isDefinitionReachingRoutineOutput(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,reg:int,address:long)boolean|getDefaultInput(reg:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|addDefaultInput(bit:int,val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)void;defaultMaxRunCount:int
C;1;EOR;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer.EOR;java.lang.Object;;;create(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,updateDFA:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer$EOR|create(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.AbstractEExpressionOptimizer$EOR|getExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getUpdateDFA()boolean|safeCopyType(src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)void;
C;0;EOptimizerInfo;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.EOptimizerInfo;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEOptimizerInfo;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.EOptimizerInfo(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry);getEntry()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|getInformation()com.pnfsoftware.jeb.core.IPluginInformation|setEnabled(enabled:boolean)void|isEnabled()boolean;
C;0;EUtil;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EUtil();add(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,c:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|add(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|pow(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|isNaN(op:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|zero(bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|eq(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|compose(elts:java.util.Collection)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|compose(elts:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|sub(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|isZero(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|getSubExpressions(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)java.util.List|isAlmostImmediate(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|evaluateAddress_preVerified(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)long|evaluateAddress_preVerified(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)long|formatIRCFGWithContext(mode:int,cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,ectx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)java.lang.String|isComparableOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|isComparableOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation)boolean|isComparableOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation,allowUnsigned:boolean)boolean|isLogicalOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|isStrictLogicalOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation)boolean|isStrictLogicalOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|isComparableSignedOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation)boolean|getReverseOperation(optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|sameBitsizeAllowNulls(elts:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])int|evaluateUnsignedLong_preVerified(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)long|evaluateUnsignedLong_preVerified(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)long|getAssigningToMemory(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|isExpressionModified(insn:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement,target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,defuse:boolean)boolean|areAlmostImmediates(c:java.util.Collection)boolean|buildStrictLogicalOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|buildOverflowFlag(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,result:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,addition:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|countExpressionsPresence(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,targets:java.util.List,count:int[])void|isUnconditionalJump(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|hasExplicitlyUsedVar(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar)boolean|isMatchDuaryOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,wantedOperationType:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,wantedOperand1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,wantedOperand2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|evaluate_preVerified(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|evaluate_preVerified(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|countVariablePresence(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar)int|buildLogicalOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|getMirrorOperation(optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|resolveExpressionsBackward(name:java.lang.Object,conv:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEConverter,r:java.util.List,targets:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])boolean|looksLikeSignExtension(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose)boolean|getAssigningFromMemory(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|replaceSubExpressionRecursive(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,dst:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EVisitResults)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|replaceSubExpressionRecursive(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,dst:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|countSubExpressions(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)int|buildStrictLogicalECond(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECond)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECond|getSignExtensionBase(base:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,extend:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getSignExtensionBase(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getSignExtensionBase(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|containsUndeterminedInvocations(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|notB(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|shr(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|orL(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|orB(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|xorB(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|mul(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,signed:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|shl(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|ne(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|notL(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|andB(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|andL(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|isOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,optypes:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType[])boolean|isOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType)boolean|div(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,signed:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|ones(bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|createImm(bytes:byte[],bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|createImm(val:long,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|collectVars(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,r:java.util.Set)void|collectVars(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)java.util.Set|getOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,optypes:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|getOperation(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation,optypes:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|eqFloat(op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,op2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|one(bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|isFirstBit(s2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESlice)boolean|isNotPredicate(p:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,p2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|isZeroExtend(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose)boolean|safeExtend(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int,signExtend:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|isLastBit(s2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESlice)boolean|buildCarryFlag(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,result:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,addition:boolean,nativeOp:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|gtFloat(op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,op2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|extend(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int,signExtend:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|sar(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|makeCast(src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,dstSize:int,signed:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|isNBit(s2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESlice,n:int)boolean|ltFloat(op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,op2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|isPCAssign(stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)boolean|isImmSize(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)boolean|isAssignedIn(bb:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock,possibleDispatch:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|leU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|divS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|remS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|remU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|sameBitsize(elts:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])int|isCondEJump(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|getUsedVarIds(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)java.util.Set|isTrampoline(bb:com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock)boolean|loglist(irlist:java.util.List)void|gtS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|ltU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|isJump(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|checkFalse(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|geS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|gtU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|divU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|isImmValue(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,value:java.math.BigInteger)boolean|isImmValue(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,value:long)boolean|addIfVar(list:java.util.List,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)void|countVariableUse(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)int|isOne(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|isImmZero(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|isRegister(op:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,reg:int)boolean|reversePredicate(predicate:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|isOperationSize(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)boolean|leS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|checkTrue(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|isCondEAssign(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|ltS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|geU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|makeUncond(j:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJump)void|mulS(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|mulU(a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation;
C;0;EVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractVisitResults;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EVisitResults()|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EVisitResults(flags:int);;
C;0;EditablePluginInformation;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.EditablePluginInformation;com.pnfsoftware.jeb.core.PluginInformation;;com.pnfsoftware.jeb.core.EditablePluginInformation();setName(name:java.lang.String)void|setDescription(description:java.lang.String)void|setAuthor(author:java.lang.String)void|setVersion(version:com.pnfsoftware.jeb.core.Version)void;
C;0;EmulatorException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorException();;
C;0;EmulatorLog;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorLog;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorLog();getExecutionTrace()java.util.List|addExecutedStatement(stmt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement)void|getCurrentEmulatorState()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorState|setEmulatorState(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorState)void;
C;0;EmulatorState;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorState;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.EmulatorState(nativeUnit:com.pnfsoftware.jeb.core.units.INativeCodeUnit);copyMemory(src:long,dst:long,n:int)void|setDefaultPointerSize(defaultPointedSize:java.lang.Integer)void|getDefaultPointerSize()java.lang.Integer|readMemory(address:long,bytesToRead:int)java.lang.Long|writeMemory(address:long,value:long,bytesToWrite:int)void|getTypeSize(type:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType)int|getRegisterValue(id:int)java.lang.Long|getBaseTypeSize(type:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType)int|setRegisterValue(id:int,value:long)void|getVarAddress(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICIdentifier)java.lang.Long|getVarValue(element:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)java.lang.Long|setVarValue(element:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement,value:long)void;
C;0;EncodedMemoryAreaList;com.pnfsoftware.jeb.core.units.code.asm.processor.memory;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.EncodedMemoryAreaList;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.AbstractEncodedMemoryArea;;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.EncodedMemoryAreaList(memoryAreas:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea[]);getLength()int|decode(code:byte[])long|shift(memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea,shift:int)com.pnfsoftware.jeb.core.units.code.asm.processor.memory.EncodedMemoryAreaList;
C;0;EncodedMemoryAreaUtil;com.pnfsoftware.jeb.core.units.code.asm.processor.memory;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.EncodedMemoryAreaUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.EncodedMemoryAreaUtil();zeroExtend(code:byte[],index:int,length:int)long|zeroExtend(code:byte[],memoryAreas:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea[])int|zeroExtend(code:byte[],memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea)int|signExtendInt(code:byte[],memoryAreas:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea)int|signExtendLong(code:byte[],memoryAreas:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea)long|zeroExtendLong(code:byte[],memoryAreas:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea[])long;
C;0;EndOfCentralDir;com.pnfsoftware.jeb.util.encoding.zip.fsr;com.pnfsoftware.jeb.util.encoding.zip.fsr.EndOfCentralDir;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.zip.fsr.EndOfCentralDir();toString()java.lang.String|parse(fc:java.nio.channels.FileChannel,base:int)com.pnfsoftware.jeb.util.encoding.zip.fsr.EndOfCentralDir;
C;0;EndianUtil;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.EndianUtil;java.lang.Object;;com.pnfsoftware.jeb.util.io.EndianUtil();swap(array:byte[])void|swap(array:byte[],offset:int,size:int)void|bigEndianBytesToShort(array:byte[])short|bigEndianBytesToShort(array:byte[],offset:int)short|bigEndianBytesToInt(array:byte[])int|bigEndianBytesToInt(array:byte[],offset:int)int|bigEndianBytesToLong(array:byte[],offset:int)long|bigEndianBytesToLong(array:byte[])long|littleEndianBytesToInt(array:byte[],offset:int)int|littleEndianBytesToInt(array:byte[])int|littleEndianBytesToLong(array:byte[])long|littleEndianBytesToLong(array:byte[],offset:int)long|bytesToNumberSigned(bo:java.nio.ByteOrder,b:byte[])long|littleEndianBytesToShort(array:byte[])short|littleEndianBytesToShort(array:byte[],offset:int)short|bytesToNumberUnsigned(bo:java.nio.ByteOrder,b:byte[])long|bytesToLong(array:byte[],offset:int,order:java.nio.ByteOrder)long|bytesToShort(array:byte[],offset:int,order:java.nio.ByteOrder)short|bytesToInt(array:byte[],offset:int,order:java.nio.ByteOrder)int|swapByGroup(array:byte[],grpByteCount:int)void|intToLEBytes(v:int)byte[]|intToLEBytes(v:int,output:byte[],offset:int)void|intToLEBytes(v:int,output:byte[])void|longToLEBytes(v:long,output:byte[],offset:int)void|longToLEBytes(v:long)byte[]|longToLEBytes(v:long,output:byte[])void|shortToBEBytes(v:short,output:byte[],offset:int)void|shortToBEBytes(v:short,output:byte[])void|shortToBEBytes(v:short)byte[]|longToBEBytes(v:long,output:byte[],offset:int)void|longToBEBytes(v:long)byte[]|longToBEBytes(v:long,output:byte[])void|shortToLEBytes(v:short,output:byte[])void|shortToLEBytes(v:short)byte[]|shortToLEBytes(v:short,output:byte[],offset:int)void|intToBEBytes(v:int,output:byte[])void|intToBEBytes(v:int)byte[]|intToBEBytes(v:int,output:byte[],offset:int)void|numberToBytes(bo:java.nio.ByteOrder,v:long,output:byte[])void|swapShort(v:short)short|swapLong(v:long)long|swapInt(v:int)int;
C;0;Endianness;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.Endianness;java.lang.Enum;;;toString()java.lang.String|values()com.pnfsoftware.jeb.util.io.Endianness[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.io.Endianness|nativeOrder()com.pnfsoftware.jeb.util.io.Endianness|toByteOrder()java.nio.ByteOrder|isMiddle()boolean|isLittle()boolean|isBig()boolean|fromByteOrder(order:java.nio.ByteOrder)com.pnfsoftware.jeb.util.io.Endianness;BIG_ENDIAN:com.pnfsoftware.jeb.util.io.Endianness|LITTLE_ENDIAN:com.pnfsoftware.jeb.util.io.Endianness|MIDDLE_ENDIAN:com.pnfsoftware.jeb.util.io.Endianness
C;0;EnginesContextUtil;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.EnginesContextUtil;java.lang.Object;;com.pnfsoftware.jeb.core.EnginesContextUtil();createNewProjectFromFile(engctx:com.pnfsoftware.jeb.core.IEnginesContext,file:java.io.File)com.pnfsoftware.jeb.core.IRuntimeProject;
C;0;EnginesPropertiesUtil;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.EnginesPropertiesUtil;java.lang.Object;;com.pnfsoftware.jeb.core.EnginesPropertiesUtil(pm:com.pnfsoftware.jeb.core.properties.IPropertyManager);parseDevPluginClassnames(s:java.lang.String)java.util.List|buildDevPluginClassnames(devPluginClassnames:java.util.List)java.lang.String|setDevPluginClassnames(devPluginClassnames:java.util.List)void|getDevPluginClassnames()java.util.List;
C;1;Entry;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.PropertyChangeNotification.Entry;java.lang.Object;;com.pnfsoftware.jeb.core.events.PropertyChangeNotification$Entry(propfqn:java.lang.String,value:java.lang.Object,pd:com.pnfsoftware.jeb.core.properties.IPropertyDefinition);toString()java.lang.String|getPropertyFullyQualifiedName()java.lang.String|getPropertyDefinition()com.pnfsoftware.jeb.core.properties.IPropertyDefinition|getUpdatedValue()java.lang.Object;
C;1;Entry;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject.Entry;java.lang.Object;;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject$Entry();;
C;1;Entry;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexMap.Entry;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexMap$Entry(id:int,offset:int,count:int);getId()int|getOffset()int|getCount()int;
C;1;Entry;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.DataContainerUnit.Entry;java.lang.Object;;;toString()java.lang.String|getName()java.lang.String|create(name:java.lang.String,data:byte[])com.pnfsoftware.jeb.core.units.impl.DataContainerUnit$Entry|getData()byte[]|getChildren()java.util.Map|createFolder(name:java.lang.String)com.pnfsoftware.jeb.core.units.impl.DataContainerUnit$Entry|isFolder()boolean;
C;1;Entry;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.LazyDataContainerUnit.Entry;java.lang.Object;;;getName()java.lang.String|create(prv:com.pnfsoftware.jeb.core.input.IDataProvider,entryName:java.lang.String,entrySize:long,name:java.lang.String,index:int)com.pnfsoftware.jeb.core.units.impl.LazyDataContainerUnit$Entry|getIndex()int|getChildren()java.util.Map|createFolder(name:java.lang.String)com.pnfsoftware.jeb.core.units.impl.LazyDataContainerUnit$Entry|isFolder()boolean;
C;0;EntryPointDescription;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.EntryPointDescription;com.pnfsoftware.jeb.core.units.code.PointerDescription;com.pnfsoftware.jeb.core.units.code.IEntryPointDescription;com.pnfsoftware.jeb.core.units.code.EntryPointDescription(src:com.pnfsoftware.jeb.core.units.code.IEntryPointDescription)|com.pnfsoftware.jeb.core.units.code.EntryPointDescription(address:long)|com.pnfsoftware.jeb.core.units.code.EntryPointDescription(address:long,mode:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|almostEquals(obj:java.lang.Object)boolean|isUnknownAddress()boolean|createFrom(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createFrom(insn:com.pnfsoftware.jeb.core.units.code.ILocatedInstruction)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createFrom(internalAddress:long,model:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeModel)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createFrom(routineData:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodDataItem)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createUnknown()com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createUnknown(mode:int)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|getMode()int|setMode(mode:int)void;
C;0;Env;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.Env;java.lang.Object;;com.pnfsoftware.jeb.util.base.Env();get(varname:java.lang.String)java.lang.String|getsafe(varname:java.lang.String)java.lang.String;useCaching:boolean
C;0;EquationDefinition;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EquationDefinition;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.EquationDefinition(t0:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode,t1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode,ctEq:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,ctNeq:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType);;t0:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode|t1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode|ctEq:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|ctNeq:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType
C;0;ErrorLogGenerator;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.ErrorLogGenerator;java.lang.Object;;com.pnfsoftware.jeb.client.ErrorLogGenerator(t:java.lang.Throwable);toString()java.lang.String|removeRecord(key:java.lang.String)boolean|getThrowable()java.lang.Throwable|getLog()java.lang.String|getRecords()java.util.LinkedHashMap|addRecord(key:java.lang.String,value:java.lang.Object)java.lang.String|setRecord(key:java.lang.String,value:java.lang.Object)boolean|dumpTo(folder:java.lang.String)java.lang.String|dumpTo(folder:java.lang.String,filename:java.lang.String)java.lang.String|recordEnginesInformation(engctx:com.pnfsoftware.jeb.core.IEnginesContext)void;ERRORLOG_VERSION:int
C;0;EvaluationException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.EvaluationException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.EvaluationException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.EvaluationException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.EvaluationException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.EvaluationException();;
C;0;Event;com.pnfsoftware.jeb.util.events;com.pnfsoftware.jeb.util.events.Event;java.lang.Object;com.pnfsoftware.jeb.util.events.IEvent;com.pnfsoftware.jeb.util.events.Event(type:int,data:java.lang.Object,source:com.pnfsoftware.jeb.util.events.EventSource)|com.pnfsoftware.jeb.util.events.Event(type:int,data:java.lang.Object)|com.pnfsoftware.jeb.util.events.Event(type:int)|com.pnfsoftware.jeb.util.events.Event();getType()java.lang.Integer|getType()java.lang.Object|getTimestamp()long|shouldStopPropagation()boolean|getData()java.lang.Object|getSource()com.pnfsoftware.jeb.util.events.IEventSource;
C;0;Event2;com.pnfsoftware.jeb.util.events.deprecated_v2.impl;com.pnfsoftware.jeb.util.events.deprecated_v2.impl.Event2;java.lang.Object;com.pnfsoftware.jeb.util.events.deprecated_v2.IEvent2;com.pnfsoftware.jeb.util.events.deprecated_v2.impl.Event2(type:java.lang.Object,data:java.lang.Object,source:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2)|com.pnfsoftware.jeb.util.events.deprecated_v2.impl.Event2(type:java.lang.Object,data:java.lang.Object)|com.pnfsoftware.jeb.util.events.deprecated_v2.impl.Event2(type:java.lang.Object)|com.pnfsoftware.jeb.util.events.deprecated_v2.impl.Event2();getType()java.lang.Object|getTimestamp()long|shouldStopPropagation()boolean|getData()java.lang.Object|getSource()com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2|setSource(source:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2)void;
C;0;EventSource;com.pnfsoftware.jeb.util.events;com.pnfsoftware.jeb.util.events.EventSource;java.lang.Object;com.pnfsoftware.jeb.util.events.IEventSource;com.pnfsoftware.jeb.util.events.EventSource(parentSource:com.pnfsoftware.jeb.util.events.EventSource)|com.pnfsoftware.jeb.util.events.EventSource();addListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|countListeners()int|removeListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|relay(origin:com.pnfsoftware.jeb.util.events.IEventSource,proxy:com.pnfsoftware.jeb.util.events.IEventSource)com.pnfsoftware.jeb.util.events.IEventListener|insertListener(index:int,listener:com.pnfsoftware.jeb.util.events.IEventListener)void|setParentSource(parentSource:com.pnfsoftware.jeb.util.events.IEventSource)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.Event,notifyParent:boolean)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.Event)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.IEvent)void|getListeners()java.util.List|getParentSource()com.pnfsoftware.jeb.util.events.IEventSource;
C;0;EventSource2;com.pnfsoftware.jeb.util.events.deprecated_v2.impl;com.pnfsoftware.jeb.util.events.deprecated_v2.impl.EventSource2;java.lang.Object;com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2;com.pnfsoftware.jeb.util.events.deprecated_v2.impl.EventSource2();addListener(listener:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventListener2)void|countListeners()int|removeListener(listener:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventListener2)boolean|setParentSource(parentSource:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.deprecated_v2.IEvent2)void|getParentSource()com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2;listeners:java.util.List|parentSource:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2
C;0;ExceptionNotification;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.ExceptionNotification;com.pnfsoftware.jeb.core.events.ClientNotification;;com.pnfsoftware.jeb.core.events.ExceptionNotification(throwable:java.lang.Throwable,message:java.lang.String)|com.pnfsoftware.jeb.core.events.ExceptionNotification(throwable:java.lang.Throwable,message:java.lang.String,flags:int)|com.pnfsoftware.jeb.core.events.ExceptionNotification(throwable:java.lang.Throwable,message:java.lang.String,flags:int,extradata:java.util.Map);getThrowable()java.lang.Throwable|getExtraData()java.util.Map|getFlags()int;
C;0;ExecutionResult;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.ExecutionResult;java.lang.Object;;;equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getMessage()java.lang.String|failure(msg:java.lang.String)com.pnfsoftware.jeb.util.base.ExecutionResult|getType()int|error(e:java.lang.Exception)com.pnfsoftware.jeb.util.base.ExecutionResult|error(msg:java.lang.String)com.pnfsoftware.jeb.util.base.ExecutionResult|isError()boolean|fromObject(object:java.lang.Object)com.pnfsoftware.jeb.util.base.ExecutionResult|fromBoolean(success:boolean)com.pnfsoftware.jeb.util.base.ExecutionResult|getCode()int|success(msg:java.lang.String)com.pnfsoftware.jeb.util.base.ExecutionResult;CODE_SUCCESS:int|CODE_ERROR:int|CODE_NOT_SUPPORTED:int|CODE_NOT_IMPLEMENTED:int|GENERIC_SUCCESS:com.pnfsoftware.jeb.util.base.ExecutionResult|GENERIC_ERROR:com.pnfsoftware.jeb.util.base.ExecutionResult|NOT_SUPPORTED:com.pnfsoftware.jeb.util.base.ExecutionResult|NOT_IMPLEMENTED:com.pnfsoftware.jeb.util.base.ExecutionResult
C;0;ExecutionTargetWithProgressCallback;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.ExecutionTargetWithProgressCallback;java.lang.Object;;com.pnfsoftware.jeb.util.base.ExecutionTargetWithProgressCallback();setCallback(callback:com.pnfsoftware.jeb.util.base.IProgressCallback)void;callback:com.pnfsoftware.jeb.util.base.IProgressCallback
C;0;ExpressionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.ExpressionException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.ExpressionException();;
C;1;ExtensionPriority;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager.ExtensionPriority;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager$ExtensionPriority[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager$ExtensionPriority;LOW_PRIORITY:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager$ExtensionPriority|MEDIUM_PRIORITY:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager$ExtensionPriority|HIGH_PRIORITY:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager$ExtensionPriority
I;1;FailureHandler;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.VerifiedDeque.FailureHandler;;;;inBlacklist(e:java.lang.Object)int|notInWhitelist(e:java.lang.Object)int;
C;0;FieldCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.FieldCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates.FieldCoordinates(fieldId:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getFieldId()int;
C;0;FileContainerUnit;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.FileContainerUnit;com.pnfsoftware.jeb.core.units.impl.ContainerUnit;;com.pnfsoftware.jeb.core.units.impl.FileContainerUnit(folder:java.io.File,name:java.lang.String,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);process(processLeaves:boolean)boolean;
C;0;FileInput;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.FileInput;java.lang.Object;com.pnfsoftware.jeb.core.input.IInput;com.pnfsoftware.jeb.core.input.FileInput(file:java.io.File);close()void|getFile()java.io.File|getChannel()java.nio.channels.SeekableByteChannel|setFile(file:java.io.File)void|getHeader()java.nio.ByteBuffer|getCurrentSize()long|getStream()java.io.InputStream;
C;0;FileInputRegionInformation;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.FileInputRegionInformation;java.lang.Object;com.pnfsoftware.jeb.core.input.IInputLocation;com.pnfsoftware.jeb.core.input.FileInputRegionInformation(offset:long)|com.pnfsoftware.jeb.core.input.FileInputRegionInformation(offset:long,size:long);toString()java.lang.String|getSize()long|getOffset()long;
C;0;FileType;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.FileType;java.lang.Enum;;;values()com.pnfsoftware.jeb.util.base.FileType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.base.FileType|determine(path:java.lang.String)com.pnfsoftware.jeb.util.base.FileType;UNKNOWN:com.pnfsoftware.jeb.util.base.FileType|TEXT:com.pnfsoftware.jeb.util.base.FileType|HTML:com.pnfsoftware.jeb.util.base.FileType|XML:com.pnfsoftware.jeb.util.base.FileType|IMAGE:com.pnfsoftware.jeb.util.base.FileType|AUDIO:com.pnfsoftware.jeb.util.base.FileType|VIDEO:com.pnfsoftware.jeb.util.base.FileType
C;0;FineChainsConverter;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.FineChainsConverter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.cfg.FineChainsConverter(varprv:com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableProvider);convertToCoarseFullChains(chains:java.util.Map)java.util.Map|convertToCoarseSimpleChains(chains:java.util.Map)java.util.Map;
C;0;Flags;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.Flags;java.lang.Object;;com.pnfsoftware.jeb.util.base.Flags(initial:int,allowed:int,names:java.util.Map)|com.pnfsoftware.jeb.util.base.Flags(initial:int)|com.pnfsoftware.jeb.util.base.Flags();get()int|toString()java.lang.String|update(f:int,add:boolean)boolean|set(flags:int)boolean|verify(f:int)void|has(f:int)boolean|testBit(bit:int)boolean|addTo(f:int)boolean|hasSome(f:int)boolean|removeFrom(f:int)boolean|isValidBit(bit:int)boolean|hasNone(f:int)boolean;
C;0;FlowInformation;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.FlowInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.code.IFlowInformation;com.pnfsoftware.jeb.core.units.code.FlowInformation()|com.pnfsoftware.jeb.core.units.code.FlowInformation(computeFallThrough:boolean,delaySlotCount:int);toString()java.lang.String|setComputeFallThrough(computeFallThrough:boolean)void|setDelaySlotCount(delaySlotCount:int)void|isAddressInTargets(flowinfo:com.pnfsoftware.jeb.core.units.code.IFlowInformation,address:long)boolean|isBrokenUnknown()boolean|isBrokenKnown()boolean|getTargets()java.util.List|isBroken()boolean|addTarget(entryPoint:com.pnfsoftware.jeb.core.units.code.IEntryPointDescription)void|getDelaySlotCount()int|mustComputeFallThrough()boolean;NONE:com.pnfsoftware.jeb.core.units.code.FlowInformation
C;0;FormFileEntry;com.pnfsoftware.jeb.util.net;com.pnfsoftware.jeb.util.net.FormFileEntry;java.lang.Object;;com.pnfsoftware.jeb.util.net.FormFileEntry(file:java.io.File)|com.pnfsoftware.jeb.util.net.FormFileEntry(file:java.io.File,nameOverride:java.lang.String);getName()java.lang.String|getFile()java.io.File;
C;0;Formatter;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.Formatter;java.lang.Object;;com.pnfsoftware.jeb.util.format.Formatter();toHexString(v:int,upperCase:boolean)java.lang.String|toHexString(v:long,upperCase:boolean,padZero:int)java.lang.String|toHexString(v:long,upperCase:boolean)java.lang.String|toHexString(v:int,upperCase:boolean,padZero:int)java.lang.String|escapeBytes(bytes:byte[])java.lang.String|escapeBytes(bytes:byte[],offset:int,size:int)java.lang.String|hexStringToByteArray(s:java.lang.String,pos:int,end:int)byte[]|hexStringToByteArray(s:java.lang.String)byte[]|byteArrayToHexString(data:byte[],pos:int,end:int)java.lang.String|byteArrayToHexString(data:byte[],pos:int)java.lang.String|byteArrayToHexString(data:byte[])java.lang.String|escapeToJavaStringArray(objects:java.util.Collection)java.lang.String|integerToAlphaString(n:int)java.lang.String|formatBinaryBlock(data:byte[])java.lang.String|formatBinaryBlock(data:byte[],offset:int,size:int,offsetDelta:int)java.lang.String|formatBinaryBlock(data:byte[],offset:int,size:int)java.lang.String|formatBinaryBlock(data:byte[],offset:int,size:int,offsetDelta:long,is64bit:boolean)java.lang.String|formatBinaryLineTruncate(data:byte[],offset:int,size:int,maxSize:int,truncateChar:char)java.lang.String|formatBinaryLineTruncate(data:byte[],offset:int,size:int,fixedCount:int)java.lang.String|formatBinaryLine(data:byte[],offset:int,size:int)java.lang.String|formatBinaryLine(data:byte[])java.lang.String|formatBinaryLine(data:byte[],offset:int,size:int,minVirtualSize:int)java.lang.String|unescapeString(s:java.lang.String)java.lang.String|formatNumbers(list:java.util.Collection,base:int,pfx:java.lang.String,sfx:java.lang.String)java.lang.String|escapeString(s:java.lang.String,keepUnicodePrintables:boolean,doNotEscapeList:java.util.Set)java.lang.String|escapeString(s:java.lang.CharSequence)java.lang.String|escapeString(s:java.lang.String,keepUnicodePrintables:boolean)java.lang.String|isPrintableChar(c:char)boolean|formatHexNumbers(list:java.util.Collection)java.lang.String|escapeByte(v:int)java.lang.String|escapeCharacter(c:char)java.lang.String|escapeCharacter(c:char,keepUnicodePrintables:boolean)java.lang.String;
C;0;GenericCodeFormatter;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.GenericCodeFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.render.GenericCodeFormatter()|com.pnfsoftware.jeb.core.units.code.asm.render.GenericCodeFormatter(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory);getMemory()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getLabelPrefix()java.lang.String|getLabelSuffix()java.lang.String|formatMnemonic(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,prependPrefix:boolean,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|getCodeUnit()com.pnfsoftware.jeb.core.units.INativeCodeUnit|setCodeUnit(pbcu:com.pnfsoftware.jeb.core.units.INativeCodeUnit)void|formatOperands(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|formatPrefix(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)int|formatOperand(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,opnd:com.pnfsoftware.jeb.core.units.code.IInstructionOperand,opndIndexGlobal:int,opndDepth:int,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|addPrefix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|addSuffix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|formatRegister(regValue:long,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|getRegisterName(registerIdentifier:long)java.lang.String|getDataSeparator()java.lang.String|formatAddress(address:long,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|formatAddress(address:long,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|getProcedureDefinitionEnd()java.lang.String|getOperandSeparator()java.lang.String|getRawDataDeclarator(bitsize:int)java.lang.String|getArrayElementPerLine()int|formatDataDeclarator(size:int,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|getProcedureDefinitionStart()java.lang.String|getMemoryAccessPrefix()java.lang.String|getMemoryAccessSuffix()java.lang.String|getNumberFormatter(opnd:com.pnfsoftware.jeb.core.units.code.IInstructionOperand,createIfNone:boolean)com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter|getNumberFormatter(item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem)com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter|getDefaultNumberFormatter()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter|getDefaultAddressFormatter()com.pnfsoftware.jeb.core.units.code.asm.render.AddressFormatter|createItemIdForAddress(address:long)long|formatInstruction(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|getMultiLineCommentBegin()java.lang.String|getBestClassIdForAddress(address:long)com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|formatRelativeAddress(opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric,address:long,out:com.pnfsoftware.jeb.core.output.code.CodeDocumentPart)void|createItemIdForRegister(regCode:long)long|createItemIdForImmediate(insnAddress:long,opndIndexGlobal:int)long|getMultiLineCommentEnd()java.lang.String|getInlineCommentString()java.lang.String|setMnemonicRightPaddingLength(length:int)void|generateExtraMethodComment(address:long)java.lang.String|getMemoryAccessSegmentInfo(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,opnd:com.pnfsoftware.jeb.core.units.code.IInstructionOperand)java.lang.String|getMnemonicRightPaddingLength()int|getMemoryAccessSizeInfo(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,opnd:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandSized)java.lang.String;MNEMONIC_RIGHT_PADDING_LENGTH_DEFAULT:int
C;0;GenericZipEntry;com.pnfsoftware.jeb.util.encoding.zip;com.pnfsoftware.jeb.util.encoding.zip.GenericZipEntry;java.lang.Object;;;getName()java.lang.String|getMethod()int|getSize()long|isDirectory()boolean|getCompressedSize()long|getCrc()long|getExtra()byte[]|getTime()long|getComment()java.lang.String|getInternalEntry()java.util.zip.ZipEntry;
C;0;GlobalLog;com.pnfsoftware.jeb.util.logging;com.pnfsoftware.jeb.util.logging.GlobalLog;java.lang.Object;;com.pnfsoftware.jeb.util.logging.GlobalLog();status(format:java.lang.String,params:java.lang.Object[])void|getLogger(name:java.lang.String,level:int)com.pnfsoftware.jeb.util.logging.ILogger|getLogger(clazz:java.lang.Class,level:int)com.pnfsoftware.jeb.util.logging.ILogger|getLogger(clazz:java.lang.Class)com.pnfsoftware.jeb.util.logging.ILogger|getLogger()com.pnfsoftware.jeb.util.logging.ILogger|setEnabledLevel(level:int)void|setEnabledLevel(level:int,updateExistingLoggers:boolean)void|getEnabledLevel()int|catching(logger:com.pnfsoftware.jeb.util.logging.ILogger,t:java.lang.Throwable,message:java.lang.String)void|catching(logger:com.pnfsoftware.jeb.util.logging.ILogger,t:java.lang.Throwable)void|addDestinationStream(out:java.io.OutputStream)com.pnfsoftware.jeb.util.logging.StreamSink|removeDestinationStream(out:java.io.OutputStream)com.pnfsoftware.jeb.util.logging.StreamSink|removeDestinationBuffer(buffer:java.util.List)com.pnfsoftware.jeb.util.logging.BufferSink|clearGlobalFilters()void|getInternalLogger(clazz:java.lang.Class)com.pnfsoftware.jeb.util.logging.ILogger|removeGlobalFilter(pattern:java.lang.String)void|isGloballyDisabled(logger:com.pnfsoftware.jeb.util.logging.ILogger)boolean|addDestinationBuffer(buffer:java.util.List)com.pnfsoftware.jeb.util.logging.BufferSink|getDestinationBuffers()java.util.List|getDestinationStreams()java.util.List|catchingDebug(logger:com.pnfsoftware.jeb.util.logging.ILogger,t:java.lang.Throwable)void|catchingDebug(logger:com.pnfsoftware.jeb.util.logging.ILogger,t:java.lang.Throwable,message:java.lang.String)void|parseLevel(s:java.lang.String)int|levelToString(level:int)java.lang.String|removeStatusSink(sink:com.pnfsoftware.jeb.util.logging.LogStatusSink)void|getRegularSinks()java.util.List|getStatusSinks()java.util.List|addGlobalFilter(pattern:java.lang.String,requiredLevel:int)void|addGlobalFilter(mute:boolean)void|addStatusSink(sink:com.pnfsoftware.jeb.util.logging.LogStatusSink)void;LEVEL_ALL:int|LEVEL_DISABLED:int|LEVEL_TRACE:int|LEVEL_DEBUG:int|LEVEL_INFO:int|LEVEL_WARN:int|LEVEL_ERROR:int|LEVEL_CATCHING:int|LEVEL_STATUS:int
C;1;Group;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType.Group;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Group[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Group;POINTER:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Group|INTEGER:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Group|FLOAT:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Group
C;0;Guid;com.pnfsoftware.jeb.core.units.code.wincommon;com.pnfsoftware.jeb.core.units.code.wincommon.Guid;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.wincommon.Guid(data:byte[])|com.pnfsoftware.jeb.core.units.code.wincommon.Guid(data:byte[],offset:int)|com.pnfsoftware.jeb.core.units.code.wincommon.Guid(data:byte[],nocopy:boolean);equals(obj:java.lang.Object)boolean|toString()java.lang.String|toString(microsoftStyleDecoding:boolean,useSeparators:boolean,useBrackets:boolean)java.lang.String|hashCode()int|random()com.pnfsoftware.jeb.core.units.code.wincommon.Guid|parse(b:java.nio.ByteBuffer)com.pnfsoftware.jeb.core.units.code.wincommon.Guid|parse(s:java.lang.String,microsoftStyleEncoding:boolean)com.pnfsoftware.jeb.core.units.code.wincommon.Guid;
C;0;Hash;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.Hash;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.Hash();calculateSHA256(data:byte[])byte[]|calculateMD5(data:byte[])byte[]|calculateCRC32(data:byte[])int|calculateSHA1(data:byte[])byte[];
C;0;HashCalculator;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.HashCalculator;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.HashCalculator(in:java.io.InputStream,flags:int);compute()boolean|getSize()long|getSha256()byte[]|sha256(in:java.io.InputStream)byte[]|sha1(in:java.io.InputStream)byte[]|getCrc32()long|getSha1()byte[]|md5(in:java.io.InputStream)byte[]|crc32(in:java.io.InputStream)java.lang.Long|getAdler32()long|adler32(in:java.io.InputStream)java.lang.Long|getMd5()byte[];CRC32:int|ADLER32:int|MD5:int|SHA1:int|SHA256:int
C;0;HeadlessClient;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.HeadlessClient;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.HeadlessClient();main(args:java.lang.String[])void;
C;0;HeadlessClientContext;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.HeadlessClientContext;com.pnfsoftware.jeb.client.AbstractClientContext;com.pnfsoftware.jeb.client.api.IClientContext;com.pnfsoftware.jeb.client.HeadlessClientContext();start()void|stop()void|initialize(argv:java.lang.String[])void|displayDemoInformation(demoInfo:java.lang.String)void|notifySupportExpired()void|onUpdatedSoftware(changelist:java.lang.String,oldVersion:com.pnfsoftware.jeb.core.Version)void|retrieveLicenseKey(licdata:java.lang.String)java.lang.String|notifyFloatingClient(notification:com.pnfsoftware.jeb.core.events.ControllerNotification)void|displayEula(eula:java.lang.String)boolean|checkUpdate()boolean|setupController()boolean;
C;0;HexDumpDocument;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.HexDumpDocument;com.pnfsoftware.jeb.core.output.text.impl.AbstractTextDocument;;com.pnfsoftware.jeb.core.output.text.impl.HexDumpDocument(input:com.pnfsoftware.jeb.core.input.IInput)|com.pnfsoftware.jeb.core.output.text.impl.HexDumpDocument(input:com.pnfsoftware.jeb.core.input.IInput,unit:com.pnfsoftware.jeb.core.units.IUnit);getInput()com.pnfsoftware.jeb.core.input.IInput|getDocumentPart(anchorId:long,linesAfter:int,linesBefore:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getAnchorCount()long|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.text.ICoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String|dispose()void;
C;1;HexaNotationType;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter.HexaNotationType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType|prefix()java.lang.String|suffix()java.lang.String;_h_suffix:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType|_0x_prefix:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType
C;0;HtmlFormatter;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.HtmlFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.output.text.HtmlFormatter(doc:com.pnfsoftware.jeb.core.output.text.ITextDocument,styleprv:com.pnfsoftware.jeb.core.output.text.IItemStyleInfoProvider,title:java.lang.String,insertCopyright:boolean);generate()java.lang.String;
C;0;HtmlTypedContentProperties;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.HtmlTypedContentProperties;java.lang.Object;com.pnfsoftware.jeb.util.base.ITypedContentProperties;com.pnfsoftware.jeb.util.base.HtmlTypedContentProperties(anchor:java.lang.String);getAnchor()java.lang.String;
I;0;IActionData;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.IActionData;;;;getValue(key:java.lang.String)java.lang.Object|setValue(key:java.lang.String,value:java.lang.Object)void;
I;0;IActionDefinition;com.pnfsoftware.jeb.core.actions;com.pnfsoftware.jeb.core.actions.IActionDefinition;;;;getName()java.lang.String|getDescription()java.lang.String;
I;0;IActionableCell;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.IActionableCell;;com.pnfsoftware.jeb.core.output.table.IVisualCell|com.pnfsoftware.jeb.core.output.IActionableItem;;;
I;0;IActionableItem;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.IActionableItem;;;;getItemId()long|getItemFlags()int;ITEM_TYPE_MASK:long|ITEM_TYPE_IDENTITY:long|ROLE_MASTER:int
I;0;IActionableNode;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.IActionableNode;;com.pnfsoftware.jeb.core.output.tree.IVisualNode|com.pnfsoftware.jeb.core.output.IActionableItem;;;
I;0;IActionableTextItem;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.IActionableTextItem;;com.pnfsoftware.jeb.core.output.text.IVisualTextItem|com.pnfsoftware.jeb.core.output.IActionableItem;;;
I;0;IAddressableUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IAddressableUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getAddressLabels()java.util.Map|getAddressLabel(address:java.lang.String)java.lang.String|getItemObject(id:long)java.lang.Object|getAddressOfItem(id:long)java.lang.String|getItemAtAddress(address:java.lang.String)long|isValidAddress(address:java.lang.String)boolean;
I;0;IAliasType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IAliasType;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;getAliasedType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;
I;0;IAnchor;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.IAnchor;;;;getLineIndex()int|getIdentifier()long;
I;0;IApkUnit;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IApkUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getPermissions()java.util.List|getManifest()com.pnfsoftware.jeb.core.units.IXmlUnit|getPackageName()java.lang.String|getSignatureSchemeV2Block()com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block|getSignatureSchemeVersionFlags()int|getSignatureSchemeV3Block()com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV3Block|getApplicationName()java.lang.String|getMainActivity()java.lang.String|getLibrariesUnit()com.pnfsoftware.jeb.core.units.IUnit|isDebuggable()boolean|getReceivers()java.util.List|isMultiDex()boolean|getServices()java.util.List|getDex()com.pnfsoftware.jeb.core.units.code.android.IDexUnit|hasApplication()boolean|getActivities()java.util.List|getProviders()java.util.List|getAssetsUnit()com.pnfsoftware.jeb.core.units.IUnit|dynamic()com.pnfsoftware.jeb.core.units.code.android.IDexDynamic|getResourceUnit()com.pnfsoftware.jeb.core.units.IUnit;
I;0;IApplicationDatabase;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IApplicationDatabase;;;;;
I;0;IArchiveUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IArchiveUnit;;com.pnfsoftware.jeb.core.units.IUnit;;;
I;0;IArrayType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IArrayType;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;getElementType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getElementCount()int;
I;0;IArtifact;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IArtifact;;com.pnfsoftware.jeb.util.events.IEventSource|com.pnfsoftware.jeb.core.IUnitCreator;;getName()java.lang.String|getParent()com.pnfsoftware.jeb.core.IUnitCreator|setName(name:java.lang.String)void|getInput()com.pnfsoftware.jeb.core.input.IInput|getCreationTimestamp()long|getNotes()java.lang.String|setNotes(notes:java.lang.String)void;
I;0;IAsciiable;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.IAsciiable;;;;encode()java.lang.String;
I;0;IAutocompleteListProvider;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.IAutocompleteListProvider;;;;getAutocompleteList(token:java.lang.String)com.pnfsoftware.jeb.util.interpreter.AutocompletionResult;
I;0;IBasicBlock;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IBasicBlock;;;;get(index:int)com.pnfsoftware.jeb.core.units.code.IInstruction|size()int|getInstructions()java.util.List|getInputBlocks()java.util.List|getOutputBlocks()java.util.List|getFirstAddress()long|getEndAddress()long|getLastAddress()long;
I;0;IBinaryFrames;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IBinaryFrames;;;;add(data:byte[])com.pnfsoftware.jeb.core.units.IBinaryFrames|get(index:int)byte[]|count()int|pullCurrent()byte[]|pull(index:int)byte[]|toBytes()byte[];
I;0;IBinaryPattern;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBinaryPattern;;;;getMask()byte[]|getExtra()java.lang.Object|getProcessorMode()int|getRealStartOffset()int|getBinary()byte[]|validate(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,address:long,buffer:byte[],offset:int,offsetEnd:int)boolean;
I;0;IBinaryUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IBinaryUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getInput()com.pnfsoftware.jeb.core.input.IInput|getConsummedSize()int|getMimeType()java.lang.String;
I;0;IBranchResolution;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchResolution;;;;isEmpty()boolean|isResolved()boolean|getTargets()java.util.List|getResolvedTarget()com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchTarget|getCandidates()java.util.List;
I;0;IBranchTarget;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchTarget;;;;getInternalAddress()com.pnfsoftware.jeb.core.units.code.IEntryPointDescription|getRoutine()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|isInternal()boolean;
I;0;ICArrayElement;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICArrayElement;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression;;getArray()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|getElementIndex()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;
I;0;ICAssignment;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICAssignment;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDeclaration;;isCombinedOperatorAssignment()boolean|getCombinedOperator()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperator|isUnaryOperatorAssignment()boolean|isSimpleAssignment()boolean|getUnaryOperator(r:boolean[])void|getLeft()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression|getRight()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;
I;0;ICBlock;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|java.lang.Iterable;;get(index:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|isEmpty()boolean|size()int|getLast()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;
I;0;ICBreak;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBreak;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICControlBreaker;;;
I;0;ICCall;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCall;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getMethod()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod|isStatic()boolean|isSuperCall()boolean|getCallsite()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|getArgumentCount()int|getCandidates()java.util.List|getArguments()java.util.List;
I;0;ICClass;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDeclaration;;getFields()java.util.List|getMethods()java.util.List|getSupertypes()java.util.List|getClasstype()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType;
I;0;ICCompound;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCompound;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getBlocks()java.util.List;
I;0;ICConditionalStatement;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConditionalStatement;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCompound;;size()int|sizeWithoutDefault()int|getConditionalBlocks()java.util.List|getDefaultBlock()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock|hasDefaultBlock()boolean|getBlocks()java.util.List;
I;0;ICConstant;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConstant;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;;getValue()java.lang.Object|getType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType;
I;0;ICConstantInteger;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConstantInteger;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConstant;;isPositive()boolean|isNegative()boolean|getValueAsLong()long|getFormatter()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter;
I;0;ICConstantString;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConstantString;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConstant;;getValue()java.lang.String|getValue()java.lang.Object;
I;0;ICContinue;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICContinue;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICControlBreaker;;;
I;0;ICControlBreaker;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICControlBreaker;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getLabel()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLabel;
I;0;ICDeclaration;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDeclaration;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;;;
I;0;ICDefinition;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDefinition;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDeclaration|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression;;getName()java.lang.String|getType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|getIdentifier()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICIdentifier;
I;0;ICDoWhileStm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDoWhileStm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICWhileLoopStm;;;
I;0;ICElement;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;;;;duplicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement|replaceSubElement(oldElement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement,newElement:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)boolean|getPhysicalOffset()java.lang.Long|getElementType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CElementType|generate(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)void|getPhysicalOffsets()java.util.Collection|getSubElements()java.util.List|visitDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICVisitor,parent:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CVisitResults)boolean|visitDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICVisitor,parent:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement)boolean|visitDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICVisitor)boolean;
I;0;ICExpression;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;;duplicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|duplicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;
I;0;ICField;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICField;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDeclaration;;getFieldType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|getFieldName()java.lang.String|getOwnerType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|isExternal()boolean|getFlags()int;
I;0;ICForLoopStm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICForLoopStm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCompound;;getPostStatement()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|getPreStatement()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|getBody()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock|getPredicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICPredicate;
I;0;ICGoto;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICGoto;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getLabel()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLabel;
I;0;ICIdentifier;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICIdentifier;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression;;getAddress()long|getName()java.lang.String|getId()int|getType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|getIdentifierClass()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass|getOriginalName()java.lang.String;
I;0;ICIfStm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICIfStm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConditionalStatement;;getBranchPredicate(index:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICPredicate|getBranchPredicates()java.util.List|getBranchBody(index:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock;
I;0;ICInstanceField;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICInstanceField;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression;;getField()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICField|getInstance()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|isPointed()boolean;
I;0;ICJumpFar;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICJumpFar;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;;getJumpsite()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;
I;0;ICLabel;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLabel;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getName()java.lang.String|getOffset()long;
I;0;ICLeftExpression;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;;;
I;0;ICMethod;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICDeclaration;;getName()java.lang.String|isEmpty()boolean|getReturnType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|getParameters()java.util.List|getIndex()int|getClassType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|generateName(out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink,definition:boolean)void|getBody()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock|isExternal()boolean|getFlags()int;
I;0;ICNativeStatement;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICNativeStatement;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getOutputElements()java.util.List|getNativeAddress()long|getCommandName()java.lang.String|getInputElements()java.util.List;
I;0;ICOFFHeader;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ICOFFHeader;;;;getTimestampMs()long|getCharacteristics()int|getNumberOfSymbols()int|getSizeOfOptionalHeader()int|getPointerToSymbolTable()int|getNumberOfSections()int|getMachine()int|getTimeDateStamp()int;
I;0;ICOFFSectionHeader;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ICOFFSectionHeader;;;;getName()byte[]|getCharacteristics()int|getPointerToRawData()long|getVirtualAddress()long|getNumberOfLinenumbers()int|getPointerToLinenumbers()long|getPointerToRelocations()long|getNumberOfRelocations()int|getSizeOfRawData()long|getVirtualSize()long;
I;0;ICOperation;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;;getCountOfOperands()int|getSecondOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|getThirdOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|getOperator()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperator|getFirstOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;
I;0;ICOperator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperator;;;;getInternalOperatorType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType|getPrecedenceDelta(other:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperator)int|isValidForCombinedAssignment()boolean|isTertiary()boolean|isCast()boolean|isUnary()boolean|getCastType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType|isCustom()boolean|getOperandCount()int|getPrecedence()int|getAssociativity()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COperatorType$Associativity|isBinary()boolean;
I;0;ICPredicate;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICPredicate;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression;;getExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|isLitteralTrue()boolean|isLitteralFalse()boolean;
I;0;ICReturn;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICReturn;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;getExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|returnsVoid()boolean;
I;0;ICSource;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICSource;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;;getDeclarations()java.util.List;
I;0;ICStatement;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICStatement;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;;getIntermediateOffset()long;
I;0;ICSwitchStm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICSwitchStm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICConditionalStatement;;getSwitchedExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression|setSwitchedExpression(value:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression)void|getCaseKeys()java.util.Set|getCaseBodies()java.util.List|getCaseBody(key:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock|getKeysForBlock(b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock)java.util.List;
I;0;ICTuple;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICTuple;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICLeftExpression;;getElements()java.util.List;
I;0;ICType;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICType;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;;getSignature()java.lang.String|getBaseTypeSignature()java.lang.String;
I;0;ICVisitor;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICVisitor;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INodeVisitor;;;
I;0;ICWhileLoopStm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICWhileLoopStm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICCompound;;getBody()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICBlock|getPredicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICPredicate;
I;0;ICWhileStm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICWhileStm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICWhileLoopStm;;;
I;0;ICallGraph;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICallGraph;;;;recordExternalCall(callerInternalAddress:long,calleeExternalRtn:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,isSafe:boolean)void|recordInternalCall(callerInternalAddress:long,calleeInternalAddress:com.pnfsoftware.jeb.core.units.code.EntryPointDescription,isSafe:boolean)void|removeCallRelationship(address:long)void|getCalleeRoutines(caller:long,onlySafeCalls:boolean)java.util.List|recordUnresolvedCall(callerInternalAddress:long,calleeDereferencedAddress:long,isSafe:boolean)void|getCallers(rtn:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,onlySafeCalls:boolean)java.util.List|getCallers(callee:com.pnfsoftware.jeb.core.units.code.asm.analyzer.CallGraphVertex,onlySafeCalls:boolean)java.util.List|getCallees(rtn:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,onlySafeCalls:boolean)java.util.List|getCallees(callerInternalAddress:long,onlySafeCalls:boolean)java.util.List|getCallerRoutines(callee:com.pnfsoftware.jeb.core.units.code.EntryPointDescription,onlySafeCalls:boolean)java.util.List;
I;0;ICallGraphManager;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICallGraphManager;;;;getGlobalCallGraph()com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICallGraph;
I;0;ICallingConvention;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConvention;;;;getName()java.lang.String|getAlternateNames()java.util.List|getInputMultiSlotByIndex(index:int)com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|getInputSlotByIndex(index:int)com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|getReturnAddressSlot()com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|getSpoiledRegisters()java.util.List|getOutputDualSlot()com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|getSubsystemTypes()java.util.List|isStackCleanedByCaller()boolean|getProcessorTypes()java.util.List|getOutputSlot()com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|getCompilerTypes()java.util.List|isUnknown()boolean;
I;0;ICallingConventionManager;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConventionManager;;;;getCompilerType()com.pnfsoftware.jeb.core.units.codeobject.CompilerType|getProcessorType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getSubsystemType()com.pnfsoftware.jeb.core.units.codeobject.SubsystemType|getDefaultConvention()com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConvention|getConventions()java.util.List|getConvention(conventionName:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConvention;
I;0;ICell;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.ICell;;com.pnfsoftware.jeb.core.output.IItem;;getLabel()java.lang.String;
I;0;ICellCoordinates;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.ICellCoordinates;;;;getColumnIndex()int|getRowIndex()int;
I;0;ICertificateUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.ICertificateUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getCertificate()java.security.cert.Certificate;
I;0;IClassType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IClassType;;com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType;;getSubtypes()java.util.Collection|getSupertypes()java.util.Collection|getVirtualTables()java.util.List|getClassItem()com.pnfsoftware.jeb.core.units.code.asm.items.INativeClassItem|getInstanceFields()java.util.List|renameVirtualMethod(tableIndex:int,methodIndex:int,name:java.lang.String)boolean|collectVirtualMethodOverrides(tableIndex:int,methodIndex:int,overUp:java.util.Collection,overDown:java.util.Collection)boolean;
I;0;IClientContext;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IClientContext;;;;open(path:java.lang.String)com.pnfsoftware.jeb.core.units.IUnit|getProgramDirectory()java.lang.String|getEnginesContext()com.pnfsoftware.jeb.core.IEnginesContext|getSoftwareVersion()com.pnfsoftware.jeb.core.Version|getBaseDirectory()java.lang.String|getArguments()java.lang.String[]|getMaxMemory()long|getMainProject()com.pnfsoftware.jeb.core.IRuntimeProject|getUsedMemory()long|closeMainProject()boolean;
I;0;ICodeAnalyzerListener;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICodeAnalyzerListener;;;;onModelUpdate(model:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeModel)void;
I;0;ICodeClass;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeClass;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;getFields()java.util.List|getMethods()java.util.List|getPackage()com.pnfsoftware.jeb.core.units.code.ICodePackage|getSupertypes()java.util.List|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getImplementedInterfaces()java.util.List;
I;0;ICodeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;;;;;
I;0;ICodeData;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeData;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;;
I;0;ICodeField;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeField;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;getFieldType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType;
I;0;ICodeHierarchy;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeHierarchy;;;;getRoot()com.pnfsoftware.jeb.core.output.tree.ICodeNode|findNode(address:java.lang.String,bestEffort:boolean)com.pnfsoftware.jeb.core.output.tree.ICodeNode;
I;0;ICodeInstruction;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeInstruction;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;getInstruction()com.pnfsoftware.jeb.core.units.code.IInstruction;
I;0;ICodeItem;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeItem;;;;getAddress()java.lang.String|getName()java.lang.String|getName(effective:boolean)java.lang.String|getSignature()java.lang.String|getSignature(effective:boolean)java.lang.String|getIndex()int|isArtificial()boolean|getGenericFlags()int|getItemId()long|isInternal()boolean;FLAG_PUBLIC:int|FLAG_PRIVATE:int|FLAG_PROTECTED:int|FLAG_STATIC:int|FLAG_FINAL:int|FLAG_SYNCHRONIZED:int|FLAG_VOLATILE:int|FLAG_BRIDGE:int|FLAG_TRANSIENT:int|FLAG_VARARGS:int|FLAG_NATIVE:int|FLAG_INTERFACE:int|FLAG_ABSTRACT:int|FLAG_STRICT:int|FLAG_SYNTHETIC:int|FLAG_ANNOTATION:int|FLAG_ENUM:int|FLAG_CONSTRUCTOR:int|FLAG_DECLARED_SYNCHRONIZED:int|FLAG_INNER:int|FLAG_ANONYMOUS:int|FLAG_VIRTUAL:int|FLAG_DESTRUCTOR:int|FLAG_ARTIFICIAL:int|FLAG_INTERNAL:int
I;0;ICodeMethod;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeMethod;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;getParameterTypes()java.util.List|getReturnType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getInstructions()java.util.List;
I;0;ICodeNode;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.ICodeNode;;com.pnfsoftware.jeb.core.output.tree.IActionableNode;;getObject()com.pnfsoftware.jeb.core.units.code.ICodeItem|getParent()com.pnfsoftware.jeb.core.output.tree.ICodeNode|findNodeByObject(target:com.pnfsoftware.jeb.core.units.code.ICodeItem)com.pnfsoftware.jeb.core.output.tree.ICodeNode|getChildren()java.util.List;
I;0;ICodeObjectUnit;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit;;com.pnfsoftware.jeb.core.units.IBinaryUnit;;map(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory,wantedBase:long,applyRelocations:boolean)boolean|getSectionCount()int|getSegmentCount()int|getSegments(wflags:int,bflags:int)java.util.List|getSegments()java.util.List|getSymbols(mustHaveFlags:int,mustNotHaveFlags:int)java.util.List|getSymbols()java.util.List|getValidSegments()java.util.List|getSegment(i:int)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|getSection(i:int)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|getSections()java.util.List|getSections(wflags:int,bflags:int)java.util.List|getValidSections()java.util.List|convertRelativeAddressToFileOffset(rel:long)long|convertFileOffsetToRelativeAddress(offset:long)long|getImportedSymbols()java.util.List|getLoaderInformation()com.pnfsoftware.jeb.core.units.codeobject.ILoaderInformation|getRawMemoryMappedImage()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|getExportedSymbols()java.util.List;
I;0;ICodePackage;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodePackage;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;isRootPackage()boolean|getParentPackage()com.pnfsoftware.jeb.core.units.code.ICodePackage|getChildrenPackages()java.util.List|getChildren()java.util.List;
I;0;ICodePrototype;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodePrototype;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;getParameterTypes()java.util.List|getReturnType()com.pnfsoftware.jeb.core.units.code.ICodeType|isVariableArgument()boolean;
I;0;ICodeResolver;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.ICodeResolver;;;;determineOperandValue(context:com.pnfsoftware.jeb.core.units.code.asm.IMachineContext,instruction:com.pnfsoftware.jeb.core.units.code.IInstruction,index:int)com.pnfsoftware.jeb.core.units.code.asm.simulator.IResolvedOperandValue|determineNextAddress(context:com.pnfsoftware.jeb.core.units.code.asm.IMachineContext,instruction:com.pnfsoftware.jeb.core.units.code.IInstruction)com.pnfsoftware.jeb.core.units.code.IEntryPointDescription;
I;0;ICodeString;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeString;;com.pnfsoftware.jeb.core.units.code.ICodeData;;getValue()java.lang.String|getIdentifier()long;
I;0;ICodeType;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeType;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;getImplementingClass()com.pnfsoftware.jeb.core.units.code.ICodeClass;
I;0;ICodeUnit;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ICodeUnit;;com.pnfsoftware.jeb.core.units.IInteractiveUnit;;getClass(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeClass|getClasses()java.util.List|getField(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeField|getFields()java.util.List|getMethod(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeMethod|getMethods()java.util.List|getPackages()java.util.List|getStrings()java.util.List|getHierarchy()com.pnfsoftware.jeb.core.units.code.ICodeHierarchy|getDisassemblyDocument()com.pnfsoftware.jeb.core.output.text.ITextDocument|getAddressFromCodeCoordinates(cc:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)java.lang.String|getCodeCoordinatesFromAddress(address:java.lang.String)com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates|getTypes()java.util.List;
I;0;ICommandHandler;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.ICommandHandler;;com.pnfsoftware.jeb.util.interpreter.ICommandNode;;getParameters()java.util.List|getHelpDetails()java.lang.String;
I;0;ICommandInterpreter;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.ICommandInterpreter;;;;getName()java.lang.String|autoComplete(command:java.lang.String)com.pnfsoftware.jeb.util.interpreter.AutocompletionResult|getHistory()com.pnfsoftware.jeb.util.collect.ItemHistory|executeCommand(command:java.lang.String)com.pnfsoftware.jeb.util.base.ExecutionResult;
I;0;ICommandManager;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.ICommandManager;;com.pnfsoftware.jeb.util.interpreter.ICommandNode;;addChild(node:com.pnfsoftware.jeb.util.interpreter.ICommandNode)com.pnfsoftware.jeb.util.interpreter.ICommandNode;
I;0;ICommandNode;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.ICommandNode;;;;getName()java.lang.String|getParent()com.pnfsoftware.jeb.util.interpreter.ICommandManager|execute(tokens:java.util.List)com.pnfsoftware.jeb.util.base.ExecutionResult|getOptions()int|getChildren()java.util.List|getHelp()java.lang.String;QUOTES_AS_NORMAL_CHAR:int
I;0;ICommentManager;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICommentManager;;;;setComment(address:long,value:java.lang.String)boolean|getComment(address:long)java.lang.String|addComment(address:long,value:java.lang.String)boolean|getComments()java.util.Map;
I;0;ICompiler;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICompiler;;;;getName()java.lang.String;
I;0;ICompound;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.ICompound;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;getBlocks()java.util.List;
I;0;IConfiguration;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IConfiguration;;;;setProperty(key:java.lang.String,value:java.lang.Object)void|getProperty(key:java.lang.String)java.lang.Object|clearProperty(key:java.lang.String)void|getAllPropertyKeys()java.util.Set;
I;0;IControlFlowGraph;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IControlFlowGraph;;;;get(index:int)com.pnfsoftware.jeb.core.units.code.IBasicBlock|size()int|getBlockContaining(address:long)com.pnfsoftware.jeb.core.units.code.IBasicBlock|getGraphRepresentation(edges:java.util.List,irregularEdges:java.util.List)void|getInstruction(address:long)com.pnfsoftware.jeb.core.units.code.IInstruction|getInstructions()java.util.List|getBlocks()java.util.List|getBlockAt(base:long)com.pnfsoftware.jeb.core.units.code.IBasicBlock;
I;0;ICoordinates;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.ICoordinates;;;;getColumnOffset()int|getLineDelta()int|getAnchorId()long;
I;0;ICoreContext;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.ICoreContext;;com.pnfsoftware.jeb.util.events.IEventSource;;close()void|createEnginesContext(dataProvider:com.pnfsoftware.jeb.core.dao.IDataProvider,clientInformation:com.pnfsoftware.jeb.core.JebClientInformation)com.pnfsoftware.jeb.core.IEnginesContext|getOptions()com.pnfsoftware.jeb.core.CoreOptions|getDefaultEnginesContexts()com.pnfsoftware.jeb.core.IEnginesContext|listEnginesContexts()java.util.List|closeEnginesContext(context:com.pnfsoftware.jeb.core.IEnginesContext)void|getVersion()com.pnfsoftware.jeb.core.Version;
I;0;IDalvikInstruction;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstruction;;com.pnfsoftware.jeb.core.units.code.ILocatedInstruction;;isArray()boolean|getParameters()com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstructionParameter[]|getParameterSecondIndexType()int|getParameterFirstIndexType()int|isPseudoInstruction()boolean|getParameterIndexType()int|getOpcode()int|getCode()byte[]|isSwitch()boolean|getArrayData()com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstructionArrayData|getSwitchData()com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstructionSwitchData;TYPE_REG:int|TYPE_IMM:int|TYPE_IDX:int|TYPE_BRA:int|TYPE_RGR:int|TYPE_IDX2:int|INDEX_TO_STRING:int|INDEX_TO_TYPE:int|INDEX_TO_FIELD:int|INDEX_TO_METHOD:int|INDEX_TO_PROTOTYPE:int|INDEX_TO_CALL_SITE:int|INDEX_TO_METHOD_HANDLE:int|INDEX_IS_INLINE_OFFSET:int|INDEX_IS_VTABLE_OFFSET:int|INDEX_IS_FIELD_OFFSET:int
I;0;IDalvikInstructionArrayData;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstructionArrayData;;;;getOffset()int|getElements()byte[][];
I;0;IDalvikInstructionParameter;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstructionParameter;;com.pnfsoftware.jeb.core.units.code.IInstructionOperand;;getValue()long|getType()int;
I;0;IDalvikInstructionSwitchData;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstructionSwitchData;;;;getOffset()int|getElements()int[][];
I;0;IDataProvider;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IDataProvider;;;;getConfiguration()com.pnfsoftware.jeb.core.properties.IConfiguration|getApplicationDatabase()com.pnfsoftware.jeb.core.dao.IApplicationDatabase|getProjectDatabase()com.pnfsoftware.jeb.core.dao.IFileDatabase|getPluginStore()com.pnfsoftware.jeb.core.dao.IFileStore|getFileStore()com.pnfsoftware.jeb.core.dao.IFileStore|getUserDatabase()com.pnfsoftware.jeb.core.dao.IUserDatabase;
I;0;IDataProvider;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.IDataProvider;;;;getDataBytes(key:java.lang.String,id:int)byte[]|getDataSize(key:java.lang.String,id:int)long;
I;0;IDebuggerBreakpoint;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint;;;;getAddress()java.lang.String|setEnabled(enabled:boolean)boolean|isEnabled()boolean|getUnitAddress()com.pnfsoftware.jeb.core.units.UnitAddress;
I;0;IDebuggerEventData;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerEventData;;;;getAddress()java.lang.String|getType()com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType|getOutput()byte[]|getThreadId()long|getReturnValue()com.pnfsoftware.jeb.core.units.code.debug.ITypedValue|getUnitAddress()com.pnfsoftware.jeb.core.units.UnitAddress;
I;0;IDebuggerMachineInformation;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerMachineInformation;;;;getName()java.lang.String|getLocation()java.lang.String|getInformation()java.lang.String|getProcesses()java.util.List|getFlags()int;FLAG_AVAILABLE:int
I;0;IDebuggerModule;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerModule;;;;getName()java.lang.String|getId()long|getBaseAddress()long;
I;0;IDebuggerProcess;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerProcess;;;;;
I;0;IDebuggerProcessInformation;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerProcessInformation;;;;getName()java.lang.String|getId()long|getFlags()int;FLAG_DEBUGGABLE:int
I;0;IDebuggerTargetEnumerator;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerTargetEnumerator;;;;listMachines()java.util.List;
I;0;IDebuggerTargetInformation;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerTargetInformation;;;;getStringDescription()java.lang.String|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getProcessorType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType;
I;0;IDebuggerThread;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerThread;;;;getName()java.lang.String|getLocation()java.lang.String|getId()long|resume()boolean|suspend()boolean|getRegisters()com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank|setRegisters(registers:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank)boolean|getFrameCount()int|getFrame(index:int)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerThreadStackFrame|stepInto()boolean|stepOut()boolean|stepOver()boolean|getFrames()java.util.List|getStatus()com.pnfsoftware.jeb.core.units.code.debug.DebuggerThreadStatus;
I;0;IDebuggerThreadStackFrame;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerThreadStackFrame;;;;getAddress()java.lang.String|getId()long|getInternalParameter(index:int,typeInformation:java.lang.String)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerVariable|getVariables()java.util.List|setVariable(variable:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerVariable)boolean;
I;0;IDebuggerUnit;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit;;com.pnfsoftware.jeb.core.units.IInteractiveUnit;;run()boolean|getThreads()java.util.List|attach(setupInformation:com.pnfsoftware.jeb.core.units.code.debug.impl.DebuggerSetupInformation)boolean|detach()boolean|unregisterDebuggee(unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit)boolean|getPotentialDebuggees()java.util.List|getTargetInformation()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerTargetInformation|convertToUnitAddress(address:java.lang.String)com.pnfsoftware.jeb.core.units.UnitAddress|canPerformOperation(op:com.pnfsoftware.jeb.core.units.code.debug.DebuggerOperationType)boolean|getMemory()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerVirtualMemory|convertSymbolicAddressToMemoryToAddress(symbol:java.lang.String,unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit)long|getProcessor()com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor|getTargetEnumerator()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerTargetEnumerator|getSuspendPolicy(eventType:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType)com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy|setBreakpoint(memoryAddress:long)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint|setBreakpoint(address:java.lang.String,unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint|setBreakpoint(memoryAddress:long,processorMode:int)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint|isPaused()boolean|clearBreakpoints()boolean|readMemory(memoryAddress:long,size:int,dst:byte[],dstOffset:int)int|registerDebuggee(unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit)boolean|getModules()java.util.List|isAttached()boolean|getBreakpoint(memoryAddress:long)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint|getBreakpoint(address:java.lang.String,unit:com.pnfsoftware.jeb.core.units.code.ICodeUnit)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint|clearBreakpoint(breakpoint:com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint)boolean|setDefaultThread(threadId:long)boolean|writeMemory(memoryAddress:long,size:int,src:byte[],srcOffset:int)int|getBreakpoints()java.util.List|pause()boolean|getDefaultThread()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerThread|restart()boolean|getThreadById(threadId:long)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerThread|setSuspendPolicy(eventType:com.pnfsoftware.jeb.core.units.code.debug.DebuggerEventType,suspendPolicy:com.pnfsoftware.jeb.core.units.code.debug.DebuggerSuspendPolicy)boolean|hasDefaultThread()boolean|terminate()boolean;
I;0;IDebuggerUnitIdentifier;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnitIdentifier;;com.pnfsoftware.jeb.core.units.IUnitIdentifier;;getTargetEnumerator()com.pnfsoftware.jeb.core.units.code.debug.IDebuggerTargetEnumerator;
I;0;IDebuggerVariable;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerVariable;;;;getName()java.lang.String|format()java.lang.String|setTypeHint(typeHint:java.lang.String)boolean|canEditValue()boolean|setTypedValue(value:com.pnfsoftware.jeb.core.units.code.debug.ITypedValue)boolean|getTypedValue()com.pnfsoftware.jeb.core.units.code.debug.ITypedValue|getAlternateName()java.lang.String|canEditType()boolean|getFlags()int;FLAG_PUBLIC:int|FLAG_PRIVATE:int|FLAG_PROTECTED:int|FLAG_STATIC:int|FLAG_FINAL:int
I;0;IDebuggerVirtualMemory;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.IDebuggerVirtualMemory;;com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory;;findBytes(address:long,maxsize:long,pattern:byte[])long;
I;0;IDecompilerUnit;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IDecompilerUnit;;com.pnfsoftware.jeb.core.units.IInteractiveUnit;;getDecompiledUnit(identifier:java.lang.String)com.pnfsoftware.jeb.core.units.code.ISourceUnit|getCodeUnit()com.pnfsoftware.jeb.core.units.code.ICodeUnit|getOutputType()com.pnfsoftware.jeb.core.units.code.DecompilerOutputType|canDecompile(identifier:java.lang.String)boolean|decompileMethod(identifier:java.lang.String)boolean|decompileClass(identifier:java.lang.String)boolean|decompile(identifier:java.lang.String)com.pnfsoftware.jeb.core.units.code.ISourceUnit|decompileField(identifier:java.lang.String)boolean|getInferredTypes(msig:java.lang.String,moff:int,varindex:int)java.util.List;
I;1;IDelimiterFinder;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.TokenExtractor.IDelimiterFinder;;;;isDelimiter(c:char)boolean;
I;0;IDeserializationEventHandler;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.IDeserializationEventHandler;;;;notifyObjectCreated(c:java.lang.Class,o:java.lang.Object)void;
I;0;IDexAnnotation;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotation;;;;getElements()java.util.List|getTypeIndex()int;
I;0;IDexAnnotationElement;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationElement;;;;getValue()com.pnfsoftware.jeb.core.units.code.android.dex.IDexValue|getNameIndex()int;
I;0;IDexAnnotationForField;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationForField;;;;getAnnotationItemSet()java.util.List|getFieldIndex()int;
I;0;IDexAnnotationForMethod;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationForMethod;;;;getAnnotationItemSet()java.util.List|getMethodIndex()int;
I;0;IDexAnnotationForParameter;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationForParameter;;;;getAnnotationItemSets()java.util.List|getMethodIndex()int;
I;0;IDexAnnotationItem;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationItem;;;;getAnnotation()com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotation|getVisibility()int;VISIBILITY_BUILD:int|VISIBILITY_RUNTIME:int|VISIBILITY_SYSTEM:int
I;0;IDexAnnotationsDirectory;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationsDirectory;;;;getClassAnnotations()java.util.List|getParametersAnnotations()java.util.List|getFieldsAnnotations()java.util.List|getMethodsAnnotations()java.util.List;
I;0;IDexCallSite;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexCallSite;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem;;getCallSiteValues()java.util.List|getLinkerMethodHandleIndex()int|getDynamicMethodNameIndex()int|getDynamicMethodPrototypeIndex()int|generate(effective:boolean)java.lang.String|getCallSiteValue(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexValue;
I;0;IDexClass;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexClass;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem|com.pnfsoftware.jeb.core.units.code.ICodeClass;;getFields()java.util.List|getMethods()java.util.List|setName(name:java.lang.String)boolean|getSuperTypeIndex()int|getInterfaceTypeIndexes()int[]|getClassTypeIndex()int|getStaticInitializers()java.util.List|getSourceStringIndex()int|getAnnotationsDirectory()com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotationsDirectory|getAccessFlags()int|getData()com.pnfsoftware.jeb.core.units.code.android.dex.IDexClassData;
I;0;IDexClassData;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexClassData;;;;getStaticFields()java.util.List|getDirectMethods()java.util.List|getInstanceFields()java.util.List|getVirtualMethods()java.util.List;
I;0;IDexCodeItem;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexCodeItem;;;;getExceptionItems()java.util.List|getInstructionsOffset()int|isCompleteBytecode()boolean|getInputArgumentCount()int|getInstructionsSize()int|getControlFlowGraph()com.pnfsoftware.jeb.core.units.code.android.controlflow.CFG|getOutputArgumentCount()int|getInstruction(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstruction|getInstructions()java.util.List|getGaps()java.util.Map|getInstructionAt(offsetInMethod:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDalvikInstruction|getRegisterCount()int|getDebugInfo()com.pnfsoftware.jeb.core.units.code.android.dex.IDexDebugInfo;
I;0;IDexDebugInfo;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexDebugInfo;;;;getParameterNameIndexes()int[]|getLineInfo(address:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexDebugLine;DBG_END_SEQUENCE:int|DBG_ADVANCE_PC:int|DBG_ADVANCE_LINE:int|DBG_START_LOCAL:int|DBG_START_LOCAL_EXTENDED:int|DBG_END_LOCAL:int|DBG_RESTART_LOCAL:int|DBG_SET_PROLOGUE_END:int|DBG_SET_EPILOGUE_BEGIN:int|DBG_SET_FILE:int|DBG_FIRST_SPECIAL:int|DBG_LINE_BASE:int|DBG_LINE_RANGE:int
I;0;IDexDebugLine;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexDebugLine;;;;getLineNumber()int|getVariablesRestart()java.util.List|getSourceIndex()int|isPrologueEnd()boolean|getVariables()java.util.List|isEpilogueBegin()boolean|getVariablesEnd()java.util.List;
I;0;IDexDebugVariable;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexDebugVariable;;;;getAddress()int|getSignatureIndex()int|getNameIndex()int|getRegister()int|getTypeIndex()int;
I;0;IDexDecompilerUnit;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IDexDecompilerUnit;;com.pnfsoftware.jeb.core.units.code.IDecompilerUnit;;runStandardSyntaxTreeOptimizationPass(m:com.pnfsoftware.jeb.core.units.code.java.IJavaMethod)int;
I;0;IDexDisassemblyDocument;com.pnfsoftware.jeb.core.units.code.android.render;com.pnfsoftware.jeb.core.units.code.android.render.IDexDisassemblyDocument;;com.pnfsoftware.jeb.core.output.text.ITextDocument;;getItemDisassembly(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|setPropertyOverrides(propertyOverrides:com.pnfsoftware.jeb.core.units.code.android.render.DexDisassemblyProperties)void|getPropertyOverrides()com.pnfsoftware.jeb.core.units.code.android.render.DexDisassemblyProperties|getUnit()com.pnfsoftware.jeb.core.units.code.android.IDexUnit;
I;0;IDexDynamic;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IDexDynamic;;;;registerDynamicJni(javaSignature:java.lang.String,lib:com.pnfsoftware.jeb.core.units.IUnit,jniFunctionPointer:long)void|getJniMethods(javaSignature:java.lang.String)java.util.List;
I;0;IDexExceptionHandler;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexExceptionHandler;;;;getAddress()int|getTypeIndex()int;
I;0;IDexExceptionItem;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexExceptionItem;;;;getTryAddress()int|getHandlers()java.util.List|getTrySize()int;
I;0;IDexField;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexField;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem|com.pnfsoftware.jeb.core.units.code.ICodeField;;getName(effective:boolean)java.lang.String|setName(name:java.lang.String)boolean|getSignature(effective:boolean)java.lang.String|getFieldType()com.pnfsoftware.jeb.core.units.code.android.dex.IDexType|getFieldType()com.pnfsoftware.jeb.core.units.code.ICodeType|getIndex()int|getClassTypeIndex()int|getFieldTypeIndex()int|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.android.dex.IDexType|getStaticInitializer()com.pnfsoftware.jeb.core.units.code.android.dex.IDexValue|getNameIndex()int|getData()com.pnfsoftware.jeb.core.units.code.android.dex.IDexFieldData;
I;0;IDexFieldData;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexFieldData;;;;getAccessFlags()int|getFieldIndex()int;
I;0;IDexFile;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IDexFile;;;;getMap()com.pnfsoftware.jeb.core.units.code.android.dex.IDexMap|getMethodsPoolSize()int|getCallSitesPoolOffset()int|getExpectedSignature()byte[]|getActualSignature()byte[]|getPrototypesPoolOffset()int|getFieldsPoolSize()int|getMethodsPoolOffset()int|getClassesPoolSize()int|getExpectedFileSize()int|getLinkSectionSize()int|getStringsPoolSize()int|getLinkSectionOffset()int|getTypesPoolOffset()int|getClassesPoolOffset()int|getDataSectionOffset()int|getMethodHandlesPoolSize()int|getCallSitesPoolSize()int|getExpectedChecksum()int|getMethodHandlesPoolOffset()int|getDataSectionSize()int|getStringsPoolOffset()int|getPrototypesPoolSize()int|getActualChecksum()int|getFieldsPoolOffset()int|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getTypesPoolSize()int|getOwnerUnit()com.pnfsoftware.jeb.core.units.code.android.IDexUnit|getHeaderSize()int|getMapOffset()int|getVersion()int|getData()byte[];
I;0;IDexItem;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;isRenamed()boolean;
I;0;IDexMap;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexMap;;;;getEntries()java.util.Collection|getEntry(id:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexMap$Entry;TYPE_HEADER_ITEM:int|TYPE_STRING_ID_ITEM:int|TYPE_TYPE_ID_ITEM:int|TYPE_PROTO_ID_ITEM:int|TYPE_FIELD_ID_ITEM:int|TYPE_METHOD_ID_ITEM:int|TYPE_CLASS_DEF_ITEM:int|TYPE_CALL_SITE_ID_ITEM:int|TYPE_METHOD_HANDLE_ITEM:int|TYPE_MAP_LIST:int|TYPE_TYPE_LIST:int|TYPE_ANNOTATION_SET_REF_LIST:int|TYPE_ANNOTATION_SET_ITEM:int|TYPE_CLASS_DATA_ITEM:int|TYPE_CODE_ITEM:int|TYPE_STRING_DATA_ITEM:int|TYPE_DEBUG_INFO_ITEM:int|TYPE_ANNOTATION_ITEM:int|TYPE_ENCODED_ARRAY_ITEM:int|TYPE_ANNOTATIONS_DIRECTORY_ITEM:int
I;0;IDexMethod;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethod;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem|com.pnfsoftware.jeb.core.units.code.ICodeMethod;;getName(effective:boolean)java.lang.String|setName(name:java.lang.String)boolean|getSignature(effective:boolean)java.lang.String|getIndex()int|getClassTypeIndex()int|getPrototypeIndex()int|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.android.dex.IDexType|getNameIndex()int|getData()com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethodData;
I;0;IDexMethodData;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethodData;;;;getAccessFlags()int|getMethodIndex()int|getCodeItem()com.pnfsoftware.jeb.core.units.code.android.dex.IDexCodeItem;
I;0;IDexMethodHandle;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethodHandle;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem;;getFieldOrMethodIndex()int|getMethodHandleType()int|generate(effective:boolean)java.lang.String|isFieldSetter()boolean|isMethodInvoker()boolean|isFieldGetter()boolean|isFieldAccessor()boolean;METHOD_HANDLE_TYPE_STATIC_PUT:int|METHOD_HANDLE_TYPE_STATIC_GET:int|METHOD_HANDLE_TYPE_INSTANCE_PUT:int|METHOD_HANDLE_TYPE_INSTANCE_GET:int|METHOD_HANDLE_TYPE_INVOKE_STATIC:int|METHOD_HANDLE_TYPE_INVOKE_INSTANCE:int|METHOD_HANDLE_TYPE_INVOKE_DIRECT:int|METHOD_HANDLE_TYPE_INVOKE_CONSTRUCTOR:int|METHOD_HANDLE_TYPE_INVOKE_INTERFACE:int
I;0;IDexPackage;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexPackage;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem|com.pnfsoftware.jeb.core.units.code.ICodePackage;;getName(effective:boolean)java.lang.String|setName(name:java.lang.String)boolean;
I;0;IDexPrototype;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexPrototype;;;;getReturnTypeIndex()int|getParameterTypeIndexes()int[]|generate(effective:boolean)java.lang.String|getShortyIndex()int|getShorty()java.lang.String;
I;0;IDexString;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexString;;com.pnfsoftware.jeb.core.units.code.ICodeString;;setValue(value:java.lang.String)void;
I;0;IDexType;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexType;;com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem|com.pnfsoftware.jeb.core.units.code.ICodeType;;getImplementingClass()com.pnfsoftware.jeb.core.units.code.android.dex.IDexClass|getImplementingClass()com.pnfsoftware.jeb.core.units.code.ICodeClass;
I;0;IDexUnit;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IDexUnit;;com.pnfsoftware.jeb.core.units.code.ICodeUnit;;getClass(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexClass|getClass(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexClass|getClass(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeClass|getClasses()java.util.List|getField(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeField|getField(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexField|getField(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexField|getFields()java.util.List|getMethod(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeMethod|getMethod(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethod|getMethod(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethod|getMethods()java.util.List|getPackage(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexPackage|getPackages()java.util.List|getType(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexType|getString(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexString|getStrings()java.util.List|getPrototype(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexPrototype|getPrototypes()java.util.List|addType(typeString:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexType|addField(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexField|addMethod(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethod|getInstructionCount()long|getBadTypeCount()int|moveToPackage(src:com.pnfsoftware.jeb.core.units.code.android.dex.IDexItem,dst:com.pnfsoftware.jeb.core.units.code.android.dex.IDexPackage)boolean|getDisassembly()java.lang.String|getCallSites()java.util.List|getMethodHandles()java.util.List|getDexFiles()java.util.List|getCallSite(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexCallSite|getMethodHandle(index:int)com.pnfsoftware.jeb.core.units.code.android.dex.IDexMethodHandle|addPrototype(prototypeString:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexPrototype|addString(value:java.lang.String)com.pnfsoftware.jeb.core.units.code.android.dex.IDexString|getDisassemblyDocument()com.pnfsoftware.jeb.core.units.code.android.render.IDexDisassemblyDocument|getDisassemblyDocument()com.pnfsoftware.jeb.core.output.text.ITextDocument|getTypes()java.util.List;ACC_PUBLIC:int|ACC_PRIVATE:int|ACC_PROTECTED:int|ACC_STATIC:int|ACC_FINAL:int|ACC_SYNCHRONIZED:int|ACC_VOLATILE:int|ACC_BRIDGE:int|ACC_TRANSIENT:int|ACC_VARARGS:int|ACC_NATIVE:int|ACC_INTERFACE:int|ACC_ABSTRACT:int|ACC_STRICT:int|ACC_SYNTHETIC:int|ACC_ANNOTATION:int|ACC_ENUM:int|ACC_CONSTRUCTOR:int|ACC_DECLARED_SYNCHRONIZED:int
I;0;IDexValue;com.pnfsoftware.jeb.core.units.code.android.dex;com.pnfsoftware.jeb.core.units.code.android.dex.IDexValue;;;;getBoolean()boolean|getByte()byte|getShort()short|getChar()char|getInt()int|getLong()long|getFloat()float|getDouble()double|getAnnotation()com.pnfsoftware.jeb.core.units.code.android.dex.IDexAnnotation|getArray()java.util.List|getType()int|isNull()boolean|getMethodTypeIndex()int|getMethodHandleIndex()int|getFieldIndex()int|getEnumIndex()int|getMethodIndex()int|getStringIndex()int|getTypeIndex()int;VALUE_BYTE:int|VALUE_SHORT:int|VALUE_CHAR:int|VALUE_INT:int|VALUE_LONG:int|VALUE_FLOAT:int|VALUE_DOUBLE:int|VALUE_METHOD_TYPE:int|VALUE_METHOD_HANDLE:int|VALUE_STRING:int|VALUE_TYPE:int|VALUE_FIELD:int|VALUE_METHOD:int|VALUE_ENUM:int|VALUE_ARRAY:int|VALUE_ANNOTATION:int|VALUE_NULL:int|VALUE_BOOLEAN:int
I;0;IDuplicatedUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IDuplicatedUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getOriginal()com.pnfsoftware.jeb.core.units.IUnit;
I;0;IDynamicContentManager;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IDynamicContentManager;;;;getMethodName(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)java.lang.String|getComment(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)java.lang.String|setLocalVariableName(methodIndex:int,varOffset:long,name:java.lang.String)void|getStructureFieldName(typeSignature:java.lang.String,fieldOffset:int)java.lang.String|getNativeInstructionFormat(nativeAddress:long)java.lang.String|getPackageOfMethod(methodIndex:int)java.lang.String|getLocalVariableItemId(methodIndex:int,varOffset:long)long|getSyntheticIdentifierItemId(methodIndex:int,varId:int)long|getLocalVariableName(methodIndex:int,varOffset:long)java.lang.String|getStructureFieldItemId(typeSignature:java.lang.String,fieldOffset:int)long|getObjectItemId(object:java.lang.Object)long|getTypeSignature(typeSignature:java.lang.String)java.lang.String|getMethodItemId(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)long|getLabelName(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)java.lang.String|getLabelItemId(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates)long|setLabelName(coordinates:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates,name:java.lang.String)void|getTypeItemId(typeSignature:java.lang.String)long;
I;0;IDynamicTargetPlugin;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IDynamicTargetPlugin;;com.pnfsoftware.jeb.core.IPlugin;;getPrimaryTarget()com.pnfsoftware.jeb.core.units.IUnit|isTarget(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean|setPrimaryTarget(unit:com.pnfsoftware.jeb.core.units.IUnit)void;
I;0;IEAssign;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEAssign;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;duplicateWithNewOperands(dst:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEAssign|isRoutineCall()boolean|isBreakingFlow()boolean|getLeftOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getRightOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getSrcOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getDstOperand()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getBranchDetails()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEBranchDetails;
I;0;IEBranchDetails;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEBranchDetails;;;;getNativePrototypeHint()com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem|getStackPointerDeltaValue()int|getDef()java.util.List|getUse()java.util.List|getCandidates()java.util.List;
I;0;IECall;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECall;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;getPrototype()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype|getParameterExpressions()java.util.List|getSpoiledExpressions()java.util.List|getReturnExpressions()java.util.List|addSpoiledVariables(spoiledVariables:java.util.List)void|getStackPointerDelta()int|isFailsafePrototype()boolean|getDynamicTargetCandidates()java.util.List|getReturnLocation()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|isReturnExpressionUnused()boolean|getCallSite()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|isStaticCallsite()boolean;
I;0;IECompose;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;getParts()java.util.List|getLowPart()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getPartsCount()int|getHighPart()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getPart(index:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|replacePart(index:int,newPart:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)void;
I;0;IECond;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECond;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;getExpressionFalse()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getExpressionTrue()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getPredicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
I;0;IEConverter;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEConverter;;;;initialize()void|convert(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|convert(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,delayBuild:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|getProgramCounter()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|getRegisterBitsize()int|createStackMemoryAccess(address:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|getPrototypeHandler(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEPrototypeHandler|convertReturnLocation(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|convertReturnExpressions(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype)java.util.List|convertParameterExpressions(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype,targetRoutine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,addSlotCount:int)java.util.List|buildFailsafePrototype(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext,stm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype|defaultPCConversion(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)int|getAddressBitsize()int|getReturnAddressRegister()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|initializeStateRegisters(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState,optionalNativeProgramCounter:java.lang.Long)void|resolveCustomCalls(pbcu:com.pnfsoftware.jeb.core.units.INativeCodeUnit,ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)boolean|getProcessorMode(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)int|getRegisterVariableFromNativeRegisterId(nativeRegId:long)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|getNativeRegisterIdFromRegisterVariable(regVar:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar,shortForm:boolean)long|isSegmentEMemReferencingPrimaryMemory(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem)java.lang.Boolean|determineStackPointerDeltaAfterIRCall(prototype:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype,addSlotCount:int)java.lang.Integer|determineStackPointerDeltaFromSimulation(simuinfo:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.SimulationPointInformation)java.lang.Integer|getDefaultBranchToRoutineSideEffects(optionalRoutine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEBranchDetails|getStackSlotSize()int|getStackPointer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|getGlobalContext()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEGlobalContext|insertReturns(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)int|formatStatistics()java.lang.String;
I;0;IEGeneric;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;com.pnfsoftware.jeb.core.units.code.IInstructionOperand;;getPriority()int|verify()void|duplicate()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|slice(begin:int,end:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|slice(r:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IERange)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getDefinedOrUsedAsDestination(def:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges,use:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges)void|getBitsize()int|part(cnt:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|countSuccessiveBits(ones:boolean,fromMsb:boolean,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECond|replaceSubExpression(oldExp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,newExp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|getSubExpressions(list:java.util.List)void|getExplicitlyUsed(use:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges)void|evaluateUnsignedLong(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)long|bit(pos:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|visitDepthPre(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor)boolean|visitDepthPre(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor,parent:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EVisitResults)boolean|visitDepthPre(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor,parent:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|evaluateAddress(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)long|replaceVar(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar,repl:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)int|copyTypeFrom(src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|visitDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor)boolean|visitDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor,parent:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)boolean|visitDepthPost(visitor:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor,parent:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.EVisitResults)boolean|msb()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|zeroExtend(newBitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getUsed(use:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges)void|accessesMemory()boolean|evaluate(state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|signExtend(newBitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|leftShift(shift:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|leftShift(shift:int,bitSize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|lsb()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|rightShift(shift:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|rightShift(shift:int,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|equalsEx(obj:java.lang.Object,includeType:boolean)boolean;
I;0;IEGlobalContext;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEGlobalContext;;;;getAddressBitsize()int|addRoutineContext(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)void|createVirtualRegister(id:int,name:java.lang.String,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|createVirtualRegister(name:java.lang.String,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|getRoutineContexts()java.util.List|createBranchDetails(def:java.util.List,use:java.util.List,fallbackStackPointerDelta:int,nativePrototypeHint:com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem,dynamicTargetCandidates:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEBranchDetails|createBranchDetails(def:java.util.List,use:java.util.List,fallbackStackPointerDelta:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEBranchDetails|canCreateVariable(id:int,bitsize:int)boolean|removeRoutineContext(ctx:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext)boolean|getConverter()com.pnfsoftware.jeb.core.units.code.asm.decompiler.AbstractConverter|getVariables(idStart:int,idEnd:int)java.util.Collection|isBigEndian()boolean|createCompose(elts:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose|createCompose(elts:java.util.Collection)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose|createCond(p:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECond|createOperation(optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,op2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|createOperation(optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|createMem(opaddr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|createMem(segment:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,opaddr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|createImm(v:long,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|createImm(v:byte[],bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|getVar(id:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|getAllVariables()java.util.Collection|getAllRegisters()java.util.Collection|getAllRegisters(exclusions:java.util.Set)java.util.Collection|createRange(begin:int,end:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IERange|getVarSafe(id:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|buildState()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState|createSlice(e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitstart:int,bitend:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESlice|createRegister(name:java.lang.String,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar|createRegister(id:int,name:java.lang.String,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar;
I;0;IEImm;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;getValue()java.math.BigInteger|expand(bits:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|truncate(bits:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|canReadAsUnsignedLong()boolean|getValueAsAddress()long|getValueAsUnsignedLong()long|getValueAsLong()long|zeroExtend(newBitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|signExtend(newBitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getUnsignedValue()java.math.BigInteger|_neg()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_remU(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_or(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_shl(cnt:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_divU(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_shr(cnt:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_sar(cnt:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_rol(cnt:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_and(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_xor(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_cmp(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)int|_sub(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_div(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_clearbit(pos:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_add(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|canReadAsLong()boolean|_mul(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_not()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_setbit(pos:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_mulU(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_ror(cnt:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_cmpU(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)int|_rem(val:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_signum()int|_pow(exponent:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|_testbit(pos:int)boolean|canReadAsAddress()boolean;
I;0;IEJump;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJump;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;getFallthroughAddress(instructionAddress:long)int|getBranchAddress()int|setCondition(condition:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)void|setBranchAddress(branchAddress:int)void|getCondition()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
I;0;IEJumpFar;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJumpFar;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;getJumpSite()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getCondition()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
I;0;IELFHeader;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IELFHeader;;;;getType()int|getEntry()long|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getBitsize()int|getSectionHeaderTableEntrySize()int|getProgramHeaderTableEntrySize()int|getSectionHeaderTableOffset()long|getProgramHeaderTableOffet()long|getSectionHeaderTableEntryNumber()int|getProgramHeaderTableEntryNumber()int|getHeaderSize()int|getMachine()int|getFlags()int|getAbiVersion()int|getOsabi()int;
I;0;IELFProgramEntry;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IELFProgramEntry;;;;getSize()long|getOffset()long|getVirtualAddress()long|getPhysicalAddress()long|getFlags()int|getSegmentType()int|getVirtualSize()long;
I;0;IELFSectionEntry;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IELFSectionEntry;;;;getAddress()long|getName()java.lang.String|getType()int|getSize()long|getOffset()long|getFlags()long|getExtraInfo()int;
I;0;IELFUnit;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IELFUnit;;com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit;;getProgramEntries()java.util.List|getSectionEntries()java.util.List|getHeader()com.pnfsoftware.jeb.core.units.codeobject.IELFHeader|getImageUnit()com.pnfsoftware.jeb.core.units.IUnit;
I;0;IEMem;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;getReference()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getSegment()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
I;0;IENop;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IENop;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;;
I;0;IEOperation;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;getOperand1()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getOperand2()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getOperationType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType;
I;0;IEOptimizerInfo;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEOptimizerInfo;;;;getInformation()com.pnfsoftware.jeb.core.IPluginInformation|setEnabled(enabled:boolean)void|isEnabled()boolean;
I;0;IEPrototypeHandler;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEPrototypeHandler;;;;refineWildcardPrototype()int|retrieveTypesAndVars(params:java.util.List,aretType:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType[])void|applyTypesToVars()void;
I;0;IERange;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IERange;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;shift(delta:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IERange|getBegin()int|getEnd()int|getRangeLength()int;
I;0;IEReturn;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEReturn;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;getValue()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
I;0;IERoutineContext;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext;;;;convertNativeAddress(address:long)java.lang.Long|convertNativeAddress(address:long,logConversionErrors:boolean)java.lang.Long|getProgramCounterId()int|getStackPointerId()int|registerConvertedAddressRange(nativeAddress:long,intermediateOffset:int,interOffsetEnd:int)void|createBranchAssign(dst:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,subroutineCall:boolean)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEAssign|registerConvertedAddress(nativeAddress:long,intermediateOffset:int)void|createUntranslatedInstruction(nativeAddress:long,nativeMnemonic:java.lang.String,irOperands:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEUntranslatedInstruction|convertIntermediateOffset(offset:int)java.lang.Long|convertIntermediateOffset(offset:int,logConversionErrors:boolean)java.lang.Long|isKeepingNonDefaultCfgs()boolean|registerAdditionalConvertedAddress(nativeAddress:long,expectedOffset:int)void|getCfg()com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG|getCfg(tag:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG|getGlobalContext()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEGlobalContext|setCfgDefaultTag(tag:java.lang.String)void|createSwitch(controlExpression:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,defaultAddress:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESwitch|getRoutineData()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodDataItem|setCfg(tag:java.lang.String,cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,makeDefault:boolean)void|createAssign(dst:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,src:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEAssign|getStatements()java.util.List|createCompose(elts:java.util.Collection)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose|createCompose(elts:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric[])com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECompose|createCond(p:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,a:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,b:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IECond|createOperation(optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|createOperation(optype:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType,op1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,op2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEOperation|createReturn(value:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEReturn|setStatements(statements:java.util.List,verify:boolean,buildCfg:boolean)void|getCfgDefaultTag()java.lang.String|createMem(segment:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,opaddr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|createMem(opaddr:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEMem|createAssignIf(assignTpl:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEAssign,predicate:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEAssign|createImm(v:byte[],bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|createImm(v:long,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEImm|isTyped()boolean|createJump(branchAddress:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJump|createJump(branchAddress:int,condition:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJump|createJumpFar(jumpSite:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJumpFar|createJumpFar(jumpSite:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,condition:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEJumpFar|createNop(template:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IENop|createNop()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IENop|getWildcardTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardTypeManager|getRoutine()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager;CFGTAG_STKANA:java.lang.String|CFGTAG_TYPED:java.lang.String|CFGTAG_FINAL_PRENORM:java.lang.String|CFGTAG_FINAL:java.lang.String|CFGTAG_UNFLATTENED:java.lang.String|CFGTAG_SYMBOLICALLY_SIMPLIFIED:java.lang.String
I;0;IESlice;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESlice;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;;getWholeExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getBitEnd()int|getBitStart()int|getRange()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IERange;
I;0;IEState;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState;;;;getValue(id:int)long|setValue(id:int,value:long)void|setMemory(vm:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory)void|getMemory()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|readMemory(address:long,buffer:byte[])boolean|writeMemory(address:long,buffer:byte[])boolean|getValueSafe(id:int)java.lang.Long|hasValue(id:int)boolean|removeValue(id:int)boolean|isBigEndian()boolean|getSegmentBase(segment:int)long|setSegmentBase(segment:int,base:long)void;
I;0;IEStatement;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|com.pnfsoftware.jeb.core.units.code.IInstruction;;getContext()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|setSize(newsize:int)void|addLowerLevelAddress(address:long)void|getLowerLevelAddresses()java.util.Collection|copyLowerLevelAddresses(srcStm:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)void|replaceDefinedVar(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar,repl:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar)int|replaceVar(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar,repl:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,doNotReplaceDefinedVariables:boolean)int|writesMemory()boolean|adjustSize(delta:int)void;
I;0;IESwitch;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESwitch;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;setDefaultAddress(defaultAddress:int)void|getControlExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|setControlExpression(controlExpression:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)void|getDefaultAddress()int|addCase(value:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric,target:int)void|getCases()java.util.List;
I;0;IEUntranslatedInstruction;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEUntranslatedInstruction;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement;;getTag(key:java.lang.String)java.lang.Object|getTag()java.lang.Object|getSideEffectUseMemory()boolean|setIndirectRoutineCall(flowinfo:com.pnfsoftware.jeb.core.units.code.IFlowInformation)void|getResultExpression()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getParameterExpressions()java.util.List|setResultExpression(resultExpression:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)void|addSideEffectUsedVariable(vars:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar[])void|getParameterExpression(index:int)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|getSideEffectWriteMemory()boolean|getSideEffectUsedVariables()java.util.Set|getNativeMnemonic()java.lang.String|setSideEffectWriteMemory(writeMemory:boolean)void|addSideEffectDefinedVariable(vars:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar[])void|setSideEffectUseMemory(useMemory:boolean)void|getSideEffectDefinedVariables()java.util.Set|getNativeAddress()long|getTags()java.util.Map|setBreakingFlow(flowinfo:com.pnfsoftware.jeb.core.units.code.IFlowInformation)void|setTag(tag:java.lang.Object)void|setTag(key:java.lang.String,tag:java.lang.Object)void|setRoutineCall(flowinfo:com.pnfsoftware.jeb.core.units.code.IFlowInformation)void;
I;0;IEVar;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric|com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariable;;getName()java.lang.String|getId()int;ID_PHYSICAL_REGISTER:int|ID_PHYSICAL_REGISTER_END:int|ID_VIRTUAL_REGISTER:int|ID_VIRTUAL_REGISTER_END:int|ID_REGISTER:int|ID_REGISTER_END:int|ID_SYMBOL:int|ID_SYMBOL_END:int|ID_MEMVAR:int|ID_MEMVAR_END:int|IDL_PSEUDO_VAR:int|ID_PSEUDO_VAR:int|IDL_SPECIAL:int|IDL_SPECIAL_END:int|IDL_PRIMARY_MIRROR:int|IDL_PRIMARY_MIRROR_END:int|IDL_ADDITIONAL_MIRROR:int|IDL_ADDITIONAL_MIRROR_END:int|IDL_PAIRREG:int|IDL_PAIRREG_END:int|IDL_SYMBOL:int|IDL_SYMBOL_END:int|IDL_SSAVAR:int|IDL_SSAVAR_END:int|IDL_STACKVAR:int|IDL_STACKVAR_BASE:int|IDL_STACKVAR_END:int
I;0;IEVisitor;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVisitor;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INodeVisitor;;;
I;0;IEncodedMemoryArea;com.pnfsoftware.jeb.core.units.code.asm.processor.memory;com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea;;;;getLength()int|decode(code:byte[])long|decodeInt(code:byte[])int;
I;0;IEnginesContext;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IEnginesContext;;com.pnfsoftware.jeb.util.events.IEventSource;;close()void|getExecutorService()java.util.concurrent.ExecutorService|getNetworkUtility()com.pnfsoftware.jeb.util.net.INet|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getDataProvider()com.pnfsoftware.jeb.core.dao.IDataProvider|getProject(key:java.lang.String)com.pnfsoftware.jeb.core.IRuntimeProject|getProject(index:int)com.pnfsoftware.jeb.core.IRuntimeProject|saveProject(key:java.lang.String)boolean|saveProject(projectKey:java.lang.String,persistenceKey:java.lang.String,optionalParameters:java.util.Map)boolean|getPluginManager()com.pnfsoftware.jeb.core.IPluginManager|setIdentifierEnabled(identifier:com.pnfsoftware.jeb.core.units.IUnitIdentifier,enabled:boolean)boolean|isIdentifierEnabled(identifier:com.pnfsoftware.jeb.core.units.IUnitIdentifier)boolean|getNativeSignatureDBManager()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureDBManager|getTypeLibraryService()com.pnfsoftware.jeb.core.units.code.asm.type.TypeLibraryService|getDebuggerUnitIdentifiers()java.util.List|getUnitIdentifiers()java.util.List|getEnginesPlugins()java.util.List|getProjects()java.util.List|unloadProject(key:java.lang.String)boolean|getCoreContext()com.pnfsoftware.jeb.core.ICoreContext|loadProject(key:java.lang.String,callback:com.pnfsoftware.jeb.util.base.IProgressCallback)com.pnfsoftware.jeb.core.IRuntimeProject|loadProject(key:java.lang.String)com.pnfsoftware.jeb.core.IRuntimeProject;PreserveForwardCompatibility:java.lang.String
I;0;IEnginesPlugin;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IEnginesPlugin;;com.pnfsoftware.jeb.core.IPlugin;;load(context:com.pnfsoftware.jeb.core.IEnginesContext)void|execute(context:com.pnfsoftware.jeb.core.IEnginesContext,executionOptions:java.util.Map)void|execute(context:com.pnfsoftware.jeb.core.IEnginesContext)void|getExecutionOptionDefinitions()java.util.List;
I;0;IEntryPointDescription;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IEntryPointDescription;;;;getAddress()long|isUnknownAddress()boolean|getMode()int;
I;0;IEnumerationElement;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IEnumerationElement;;;;getName()java.lang.String|getValue()int;
I;0;IEnumerationType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IEnumerationType;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;getConstants()java.util.List;
I;0;IEvent;com.pnfsoftware.jeb.util.events;com.pnfsoftware.jeb.util.events.IEvent;;;;getType()java.lang.Object|getTimestamp()long|shouldStopPropagation()boolean|getData()java.lang.Object|getSource()com.pnfsoftware.jeb.util.events.IEventSource;
I;0;IEvent2;com.pnfsoftware.jeb.util.events.deprecated_v2;com.pnfsoftware.jeb.util.events.deprecated_v2.IEvent2;;;;getType()java.lang.Object|getTimestamp()long|shouldStopPropagation()boolean|getData()java.lang.Object|getSource()com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2|setSource(source:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2)void;
I;0;IEventListener;com.pnfsoftware.jeb.util.events;com.pnfsoftware.jeb.util.events.IEventListener;;;;onEvent(e:com.pnfsoftware.jeb.util.events.IEvent)void;
I;0;IEventListener2;com.pnfsoftware.jeb.util.events.deprecated_v2;com.pnfsoftware.jeb.util.events.deprecated_v2.IEventListener2;;;;onEvent(e:com.pnfsoftware.jeb.util.events.deprecated_v2.IEvent2)void;
I;0;IEventSource;com.pnfsoftware.jeb.util.events;com.pnfsoftware.jeb.util.events.IEventSource;;;;addListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|countListeners()int|removeListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|insertListener(index:int,listener:com.pnfsoftware.jeb.util.events.IEventListener)void|setParentSource(parentSource:com.pnfsoftware.jeb.util.events.IEventSource)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.IEvent)void|getListeners()java.util.List|getParentSource()com.pnfsoftware.jeb.util.events.IEventSource;
I;0;IEventSource2;com.pnfsoftware.jeb.util.events.deprecated_v2;com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2;;;;addListener(listener:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventListener2)void|countListeners()int|removeListener(listener:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventListener2)boolean|setParentSource(parentSource:com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.deprecated_v2.IEvent2)void|getParentSource()com.pnfsoftware.jeb.util.events.deprecated_v2.IEventSource2;
I;0;IExtractor;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.IExtractor;;;;extract(e:java.lang.Object)java.lang.Object;
I;0;IFileDatabase;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IFileDatabase;;;;getDatabaseReader(key:java.lang.String)com.pnfsoftware.jeb.core.dao.IFileDatabaseReader|getDatabaseWriter(key:java.lang.String)com.pnfsoftware.jeb.core.dao.IFileDatabaseWriter|loadFile(key:java.lang.String,version:int)byte[]|getFileWriter(key:java.lang.String)java.io.OutputStream|deleteFile(key:java.lang.String,version:int)boolean|hasFile(key:java.lang.String,version:int)boolean|getFileReader(key:java.lang.String)java.io.InputStream|saveFile(key:java.lang.String,version:int,data:byte[])boolean;
I;0;IFileDatabaseReader;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IFileDatabaseReader;;;;close()void|getRecordDescription(type:int)com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader$RecordDescription|getRecordDescriptions()java.util.List|getBackingFile()java.io.File|getRecord(r:com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader$RecordDescription)java.io.InputStream|getRecord(type:int)java.io.InputStream|hasBackingFile()boolean;
I;0;IFileDatabaseWriter;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IFileDatabaseWriter;;;;close()void|endRecord(out:java.io.OutputStream)void|getBackingFile()java.io.File|beginRecord(type:int,flags:int)java.io.OutputStream|hasBackingFile()boolean;
I;0;IFileStore;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IFileStore;;;;remove(key:java.lang.String)boolean|get(key:java.lang.String)byte[]|put(data:byte[])java.lang.String|put(key:java.lang.String,data:byte[])java.lang.String|list()java.util.List|has(key:java.lang.String)boolean|getStoreLocation()java.lang.String;
I;0;IFlowInformation;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IFlowInformation;;;;isBrokenUnknown()boolean|isBrokenKnown()boolean|getTargets()java.util.List|isBroken()boolean|getDelaySlotCount()int|mustComputeFallThrough()boolean;
I;0;IFormattingContextFactory;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.IFormattingContextFactory;;;;createFormattingContext(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.Object;
I;0;IGenericDocument;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.IGenericDocument;;;;getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|dispose()void;
I;0;IGenericJarBrowser;com.pnfsoftware.jeb.util.encoding.zip;com.pnfsoftware.jeb.util.encoding.zip.IGenericJarBrowser;;com.pnfsoftware.jeb.util.encoding.zip.IGenericZipBrowser;;getCertificates(name:java.lang.String)java.security.cert.Certificate[];
I;0;IGenericZipBrowser;com.pnfsoftware.jeb.util.encoding.zip;com.pnfsoftware.jeb.util.encoding.zip.IGenericZipBrowser;;java.lang.AutoCloseable;;close()void|getEntries()java.util.Map|getEntry(name:java.lang.String)com.pnfsoftware.jeb.util.encoding.zip.GenericZipEntry|readEntry(name:java.lang.String)byte[]|getEntryStream(name:java.lang.String)java.io.InputStream;
I;0;IGlobalAnalyzer;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IGlobalAnalyzer;;;;perform()boolean;
I;0;IGraphicalClientContext;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IGraphicalClientContext;;com.pnfsoftware.jeb.client.api.IClientContext;;executeAsyncWithReturn(taskName:java.lang.String,callable:java.util.concurrent.Callable)java.lang.Object|displayQuestionBox(caption:java.lang.String,message:java.lang.String,defaultValue:java.lang.String)java.lang.String|displayMessageBox(caption:java.lang.String,message:java.lang.String,iconType:com.pnfsoftware.jeb.client.api.IconType,bgType:com.pnfsoftware.jeb.client.api.ButtonGroupType)int|getFocusedFragment()com.pnfsoftware.jeb.client.api.IUnitFragment|displayList(caption:java.lang.String,message:java.lang.String,headers:java.lang.String[],rows:java.lang.Object[][])int|openView(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean|executeAsync(taskName:java.lang.String,runnable:java.lang.Runnable)void|getFocusedView()com.pnfsoftware.jeb.client.api.IUnitView|getViews()java.util.List|getViews(targetUnit:com.pnfsoftware.jeb.core.units.IUnit)java.util.List|findFragment(unit:com.pnfsoftware.jeb.core.units.IUnit,label:java.lang.String,focus:boolean)com.pnfsoftware.jeb.client.api.IUnitFragment;
I;0;IIRSimulationContext;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IIRSimulationContext;;;;recordSupportRoutineCall(addres:long,routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)boolean|getCodeUnit()com.pnfsoftware.jeb.core.units.INativeCodeUnit|recordComment(address:long,comment:java.lang.String)boolean;
I;0;IInput;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.IInput;;;;close()void|getChannel()java.nio.channels.SeekableByteChannel|getHeader()java.nio.ByteBuffer|getCurrentSize()long|getStream()java.io.InputStream;IDEAL_HEADER_SIZE:int
I;0;IInputLocation;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.IInputLocation;;;;;
I;0;IInputRecord;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IInputRecord;;;;getSize()long|getContentsSha256()byte[]|getSeenCount()int;
I;0;IInsnEmulator;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator;;;;compute(code:byte[],instructionAddress:long,mode:int,armOperands:com.pnfsoftware.jeb.core.units.code.IInstructionOperand[],context:com.pnfsoftware.jeb.core.units.code.asm.IMachineContext)java.lang.Long|getBranchType()com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator$BranchType|isPCUpdated()boolean;
I;0;IInstruction;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IInstruction;;;;format(context:java.lang.Object)java.lang.String|getSize()int|getPrefix()java.lang.String|getBreakingFlow(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.IFlowInformation|getRoutineCall(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.IFlowInformation|getDefUse(def:java.util.List,use:java.util.List,context:java.lang.Object)void|canThrow()boolean|isConditional()boolean|getProcessorMode()int|getMnemonic()java.lang.String|getOperands()com.pnfsoftware.jeb.core.units.code.IInstructionOperand[]|getCode()byte[]|getIndirectRoutineCall(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.IFlowInformation;
I;0;IInstructionAugmenter;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IInstructionAugmenter;;;;getRegisterValueResolution(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.IRegistersResolution|isCallNotReturning(instructionAddress:long)boolean|isArtificialEndOfBlock(instructionAddress:long)boolean|getDynamicBranchResolution(instructionAddress:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchResolution;
I;0;IInstructionFlagProvider;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionFlagProvider;;;;getFlag(code:byte[])java.lang.CharSequence;
I;0;IInstructionOperand;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.IInstructionOperand;;;;format(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,address:long)java.lang.String;
I;0;IInstructionOperandCMA;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandCMA;;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric;;getMemoryIndexRegister()long|getMemoryDisplacement()long|getMemoryBaseRegister()long|getMemoryScale()int;
I;0;IInstructionOperandGeneric;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric;;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandSized|com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandRegisterBased;;getPrefix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|getSuffix(insn:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|getOperandType()int|getOperandValue(address:long)long|getOperandValue()long|getAlias(value:long)java.lang.String;TYPE_REG:int|TYPE_IMM:int|TYPE_ADDR:int|TYPE_RELADDR:int|TYPE_MEMREG:int|TYPE_MEMIMM:int|TYPE_ALIAS:int|TYPE_LIST:int|TYPE_CMA:int|TYPE_USER_1:int
I;0;IInstructionOperandList;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandList;;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric;;merge(address:long)com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric|getSeparator()java.lang.String|getOperands()com.pnfsoftware.jeb.core.units.code.IInstructionOperand[];
I;0;IInstructionOperandRegisterBased;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandRegisterBased;;com.pnfsoftware.jeb.core.units.code.IInstructionOperand;;getRegisterName(registerIdentifier:long)java.lang.String;
I;0;IInstructionOperandSized;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandSized;;com.pnfsoftware.jeb.core.units.code.IInstructionOperand;;getOperandBitsize()int;
I;0;IInteractiveUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IInteractiveUnit;;com.pnfsoftware.jeb.core.units.IAddressableUnit;;setComment(address:java.lang.String,comment:java.lang.String)boolean|getComment(address:java.lang.String)java.lang.String|getAddressActions(address:java.lang.String)java.util.List|getMetadataManager()com.pnfsoftware.jeb.core.units.IMetadataManager|locationToAddress(location:com.pnfsoftware.jeb.core.input.IInputLocation)java.lang.String|addressToLocation(address:java.lang.String)com.pnfsoftware.jeb.core.input.IInputLocation|getComments()java.util.Map|getGlobalActions()java.util.List|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData,notify:boolean)boolean|getItemActions(id:long)java.util.List|canExecuteAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext)boolean|prepareExecution(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean;
I;0;IItem;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.IItem;;;;;
I;0;IItemStyleInfoProvider;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.IItemStyleInfoProvider;;;;getStyle(id:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers)com.pnfsoftware.jeb.core.output.text.StyleInfo;
I;0;IJavaAnnotation;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaAnnotation;;com.pnfsoftware.jeb.core.units.code.java.INonStatement;;getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getElements()java.util.List;
I;0;IJavaAnnotationElement;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaAnnotationElement;;;;getName()com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|getValue()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;
I;0;IJavaArithmeticExpression;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaArithmeticExpression;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getLeft()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|getRight()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|getOperator()com.pnfsoftware.jeb.core.units.code.java.IJavaOperator;
I;0;IJavaArrayElt;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaArrayElt;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression;;getArray()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|getIndex()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setIndex(index:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void|setArray(array:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void;
I;0;IJavaAssignment;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaAssignment;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;isCombinedOperatorAssignment()boolean|getCombinedOperator()com.pnfsoftware.jeb.core.units.code.java.IJavaOperator|isUnaryOperatorAssignment()boolean|isSimpleAssignment()boolean|setCombinedOperator(operator:com.pnfsoftware.jeb.core.units.code.java.IJavaOperator)void|getUnaryOperator(r:boolean[])void|getLeft()com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression|getRight()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setUnaryOperator(isIncrement:boolean,isPrefixed:boolean)void|setLeft(left:com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression)void|setRight(right:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void;
I;0;IJavaBlock;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaBlock;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;add(stm:com.pnfsoftware.jeb.core.units.code.java.IStatement)void|remove(index:int)com.pnfsoftware.jeb.core.units.code.java.IStatement|get(index:int)com.pnfsoftware.jeb.core.units.code.java.IStatement|size()int|set(index:int,stm:com.pnfsoftware.jeb.core.units.code.java.IStatement)void|insert(index:int,stm:com.pnfsoftware.jeb.core.units.code.java.IStatement)void;
I;0;IJavaBreak;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaBreak;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;setLabel(label:com.pnfsoftware.jeb.core.units.code.java.IJavaLabel)void|getLabel()com.pnfsoftware.jeb.core.units.code.java.IJavaLabel;
I;0;IJavaCall;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaCall;;com.pnfsoftware.jeb.core.units.code.java.IStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getMethod()com.pnfsoftware.jeb.core.units.code.java.IJavaMethod|setMethod(method:com.pnfsoftware.jeb.core.units.code.java.IJavaMethod,superCall:boolean)void|isSuperCall()boolean|addArgument(arg:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void|removeArgument(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|getArgument(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|insertArgument(index:int,arg:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void|getArguments()java.util.List;
I;0;IJavaClass;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaClass;;com.pnfsoftware.jeb.core.units.code.java.INonStatement;;getName()java.lang.String|getAnnotations()java.util.List|getFields()java.util.List|getMethods()java.util.List|getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getInnerClasses()java.util.List|getImplementedInterfaces()java.util.List|getSupertype()com.pnfsoftware.jeb.core.units.code.java.IJavaType;
I;0;IJavaConditionalExpression;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaConditionalExpression;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getLeft()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|getRight0()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|getRight1()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;
I;0;IJavaConstant;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaConstant;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getBoolean()boolean|getByte()byte|getShort()short|getChar()char|getInt()int|getLong()long|getFloat()float|getDouble()double|getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|isNull()boolean|getString()java.lang.String|isZero()boolean|isPositive()boolean|isNegative()boolean|isTrue()boolean|isFalse()boolean|isString()boolean|isMinusOne()boolean|isOne()boolean;
I;0;IJavaConstantFactory;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaConstantFactory;;;;createLong(v:long)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createString(v:java.lang.String)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createBoolean(v:boolean)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createShort(v:short)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createInt(v:int)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createFloat(v:float)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createByte(v:byte)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createChar(v:char)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createNull()com.pnfsoftware.jeb.core.units.code.java.IJavaConstant|createDouble(v:double)com.pnfsoftware.jeb.core.units.code.java.IJavaConstant;
I;0;IJavaContinue;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaContinue;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;setLabel(label:com.pnfsoftware.jeb.core.units.code.java.IJavaLabel)void|getLabel()com.pnfsoftware.jeb.core.units.code.java.IJavaLabel;
I;0;IJavaDefinition;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaDefinition;;com.pnfsoftware.jeb.core.units.code.java.IStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression;;getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getIdentifier()com.pnfsoftware.jeb.core.units.code.java.IJavaIdentifier;
I;0;IJavaDoWhile;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaDoWhile;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;getBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getPredicate()com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate|setPredicate(p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate)void|setBody(b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void;
I;0;IJavaElement;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaElement;;;;replaceSubElement(oldElement:com.pnfsoftware.jeb.core.units.code.java.IJavaElement,newElement:com.pnfsoftware.jeb.core.units.code.java.IJavaElement)boolean|getPhysicalOffset()int|getElementType()com.pnfsoftware.jeb.core.units.code.java.JavaElementType|getTagMap()java.util.Map|getSubElements()java.util.List;
I;0;IJavaExpression;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;com.pnfsoftware.jeb.core.units.code.java.IJavaElement;;;
I;0;IJavaFactories;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaFactories;;;;getOperatorFactory()com.pnfsoftware.jeb.core.units.code.java.IJavaOperatorFactory|createConditionalExpression(left:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,right0:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,right1:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaConditionalExpression|getConstantFactory()com.pnfsoftware.jeb.core.units.code.java.IJavaConstantFactory|createArithmeticExpression(left:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,operator:com.pnfsoftware.jeb.core.units.code.java.IJavaOperator,right:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaArithmeticExpression|createTypeReference(type:com.pnfsoftware.jeb.core.units.code.java.IJavaType)com.pnfsoftware.jeb.core.units.code.java.IJavaTypeReference|createInstanceField(instance:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,field:com.pnfsoftware.jeb.core.units.code.java.IJavaField)com.pnfsoftware.jeb.core.units.code.java.IJavaInstanceField|createStaticField(classType:com.pnfsoftware.jeb.core.units.code.java.IJavaType,field:com.pnfsoftware.jeb.core.units.code.java.IJavaField)com.pnfsoftware.jeb.core.units.code.java.IJavaStaticField|createSynchronizedBlock(lock:com.pnfsoftware.jeb.core.units.code.java.IJavaIdentifier,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)com.pnfsoftware.jeb.core.units.code.java.IJavaSynchronizedBlock|createSwitch(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaSwitch|createSwitch(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,switchOnString:boolean)com.pnfsoftware.jeb.core.units.code.java.IJavaSwitch|createReturn(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaReturn|createBlock()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|createContinue(label:com.pnfsoftware.jeb.core.units.code.java.IJavaLabel)com.pnfsoftware.jeb.core.units.code.java.IJavaContinue|createDoWhile(b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock,p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate)com.pnfsoftware.jeb.core.units.code.java.IJavaDoWhile|createNew(type:com.pnfsoftware.jeb.core.units.code.java.IJavaType,method:com.pnfsoftware.jeb.core.units.code.java.IJavaMethod,arguments:java.util.List)com.pnfsoftware.jeb.core.units.code.java.IJavaNew|createPredicate(left:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,op:com.pnfsoftware.jeb.core.units.code.java.IJavaOperator,right:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate|createThrow(throwable:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaThrow|createCall(m:com.pnfsoftware.jeb.core.units.code.java.IJavaMethod,superCall:boolean)com.pnfsoftware.jeb.core.units.code.java.IJavaCall|createIf(p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)com.pnfsoftware.jeb.core.units.code.java.IJavaIf|createAssignment(left:com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression,right:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaAssignment|getTypeFactory()com.pnfsoftware.jeb.core.units.code.java.IJavaTypeFactory|createBreak(label:com.pnfsoftware.jeb.core.units.code.java.IJavaLabel)com.pnfsoftware.jeb.core.units.code.java.IJavaBreak|createFor(pre:com.pnfsoftware.jeb.core.units.code.java.IStatement,p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate,post:com.pnfsoftware.jeb.core.units.code.java.IStatement,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)com.pnfsoftware.jeb.core.units.code.java.IJavaFor|createNewArray(type:com.pnfsoftware.jeb.core.units.code.java.IJavaType,areSizes:boolean,sizesOrInits:java.util.List)com.pnfsoftware.jeb.core.units.code.java.IJavaNewArray|createNewArray(type:com.pnfsoftware.jeb.core.units.code.java.IJavaType,size:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaNewArray|createArrayElt(array:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,index:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)com.pnfsoftware.jeb.core.units.code.java.IJavaArrayElt|createGoto(label:com.pnfsoftware.jeb.core.units.code.java.IJavaLabel)com.pnfsoftware.jeb.core.units.code.java.IJavaGoto|createWhile(p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)com.pnfsoftware.jeb.core.units.code.java.IJavaWhile;
I;0;IJavaField;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaField;;com.pnfsoftware.jeb.core.units.code.java.INonStatement;;getName()java.lang.String|getAnnotations()java.util.List|isStatic()boolean|getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getSignature()java.lang.String|getInitialValue()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;
I;0;IJavaFor;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaFor;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;getPostStatement()com.pnfsoftware.jeb.core.units.code.java.IStatement|getBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getPredicate()com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate|setInitializer(initializer:com.pnfsoftware.jeb.core.units.code.java.IStatement)void|setPostStatement(poststm:com.pnfsoftware.jeb.core.units.code.java.IStatement)void|setPredicate(p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate)void|getInitializer()com.pnfsoftware.jeb.core.units.code.java.IStatement|setBody(b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void;
I;0;IJavaGoto;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaGoto;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;setLabel(label:com.pnfsoftware.jeb.core.units.code.java.IJavaLabel)void|getLabel()com.pnfsoftware.jeb.core.units.code.java.IJavaLabel;
I;0;IJavaIdentifier;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaIdentifier;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression;;getName()java.lang.String;
I;0;IJavaIf;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaIf;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;size()int|getBranchPredicate(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate|setBranchPredicate(index:int,p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate)void|getDefaultBlock()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getBranchBody(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|insertBranch(index:int,p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void|removeBranch(index:int)void|setBranchBody(index:int,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void;
I;0;IJavaInstanceField;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaInstanceField;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression;;getField()com.pnfsoftware.jeb.core.units.code.java.IJavaField|getInstance()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setField(field:com.pnfsoftware.jeb.core.units.code.java.IJavaField)void|setInstance(instance:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void;
I;0;IJavaLabel;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaLabel;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;getName()java.lang.String;
I;0;IJavaLeftExpression;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression;;com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;;
I;0;IJavaMethod;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaMethod;;com.pnfsoftware.jeb.core.units.code.java.INonStatement;;getName()java.lang.String|getReturnType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|isStatic()boolean|getParameterAnnotations(index:int)java.util.List|getParameters()java.util.List|getSignature()java.lang.String|getAnonymousClasses()java.util.List|getMethodAnnotations()java.util.List|getClassType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getInnerClasses()java.util.List;
I;0;IJavaMonitor;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaMonitor;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;isEnter()boolean|getLock()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;
I;0;IJavaNew;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaNew;;com.pnfsoftware.jeb.core.units.code.java.IStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getMethod()com.pnfsoftware.jeb.core.units.code.java.IJavaMethod|getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getArguments()java.util.List;
I;0;IJavaNewArray;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaNewArray;;com.pnfsoftware.jeb.core.units.code.java.IStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|getSizes()java.util.List|getInitialValues()java.util.List;
I;0;IJavaOperator;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaOperator;;;;toString()java.lang.String|isCast()boolean|isUnary()boolean|getCastType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|isBinary()boolean|isArithmetic()boolean|getOperatorType()com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|isLogical()boolean;
I;0;IJavaOperatorFactory;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaOperatorFactory;;;;createOperator(s:java.lang.String)com.pnfsoftware.jeb.core.units.code.java.IJavaOperator;
I;0;IJavaPredicate;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate;;com.pnfsoftware.jeb.core.units.code.java.IJavaArithmeticExpression;;reverse()void|isLitteralTrue()boolean|isLitteralFalse()boolean;
I;0;IJavaReturn;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaReturn;;com.pnfsoftware.jeb.core.units.code.java.IJavaTerminalStatement;;getExpression()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setExpression(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void;
I;0;IJavaSourceUnit;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaSourceUnit;;com.pnfsoftware.jeb.core.units.code.ISourceUnit;;optimize()int|getClassElement()com.pnfsoftware.jeb.core.units.code.java.IJavaClass|getFactories()com.pnfsoftware.jeb.core.units.code.java.IJavaFactories;
I;0;IJavaStaticField;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaStaticField;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaLeftExpression;;getField()com.pnfsoftware.jeb.core.units.code.java.IJavaField;
I;0;IJavaSwitch;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaSwitch;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;replaceSubElement(oldElement:com.pnfsoftware.jeb.core.units.code.java.IJavaElement,newElement:com.pnfsoftware.jeb.core.units.code.java.IJavaElement)boolean|getSwitchedExpression()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setSwitchedExpression(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void|isSwitchOnInteger()boolean|convertToSwitchOnString(updatedSwitchedOnValue:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression,indexToStringMap:java.util.Map)void|convertToSwitchOnInteger(updatedSwitchedOnValue:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void|addCase(casekeymap:java.util.Map,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void|addCase(keys:java.util.List,b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void|getCaseKeys()java.util.SortedSet|getCaseBodies()java.util.List|getCaseBody(key:int)com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getCaseBody(stringkey:java.lang.String)com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getDefaultBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|setDefaultBody(b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void|isSwitchOnString()boolean|getStringMap()java.util.Map|hasDefaultBody()boolean;
I;0;IJavaSynchronizedBlock;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaSynchronizedBlock;;;;getBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|setLock(lock:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void|setBody(b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void|getLock()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;
I;0;IJavaTerminalStatement;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaTerminalStatement;;com.pnfsoftware.jeb.core.units.code.java.IStatement;;getExpression()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setExpression(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void;
I;0;IJavaThrow;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaThrow;;com.pnfsoftware.jeb.core.units.code.java.IJavaTerminalStatement;;getExpression()com.pnfsoftware.jeb.core.units.code.java.IJavaExpression|setExpression(e:com.pnfsoftware.jeb.core.units.code.java.IJavaExpression)void;
I;0;IJavaTry;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaTry;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;getCatchIdentifier(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaIdentifier|getTryBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getCatchBody(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getCatchType(index:int)com.pnfsoftware.jeb.core.units.code.java.IJavaType|getFinallyBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getCatchCount()int;
I;0;IJavaType;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaType;;;;getSignature()java.lang.String;
I;0;IJavaTypeFactory;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaTypeFactory;;;;createType(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.java.IJavaType;
I;0;IJavaTypeReference;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaTypeReference;;com.pnfsoftware.jeb.core.units.code.java.INonStatement|com.pnfsoftware.jeb.core.units.code.java.IJavaExpression;;getType()com.pnfsoftware.jeb.core.units.code.java.IJavaType|setType(type:com.pnfsoftware.jeb.core.units.code.java.IJavaType)void;
I;0;IJavaWhile;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IJavaWhile;;com.pnfsoftware.jeb.core.units.code.java.ICompound;;getBody()com.pnfsoftware.jeb.core.units.code.java.IJavaBlock|getPredicate()com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate|setPredicate(p:com.pnfsoftware.jeb.core.units.code.java.IJavaPredicate)void|setBody(b:com.pnfsoftware.jeb.core.units.code.java.IJavaBlock)void;
I;0;IJniEndpoint;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IJniEndpoint;;;;getAddress()java.lang.Long|isStatic()boolean|getMethodName()java.lang.String|getUnit()com.pnfsoftware.jeb.core.units.IUnit;
I;0;IJsonUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IJsonUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getDocument()java.lang.Object;
I;1;IKeyExtractor;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.CFBytesTrie.IKeyExtractor;;;;extract(object:java.lang.Object)byte[];
I;0;ILabelManager;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.ILabelManager;;;;getAlternateLabels(address:long)java.util.Collection|getPrimaryLabels()java.util.Map|removeLabel(address:long)boolean|isLegalLabel(label:java.lang.String)boolean|isLegalLabel(label:java.lang.String,address:java.lang.Long,legalized:java.lang.StringBuilder)boolean|resolveLabel(label:java.lang.String)java.lang.Long|setLabel(address:long,label:java.lang.String,allowAdjusting:boolean,allowAlternates:boolean,mustBePrimary:boolean)boolean|getLabel(item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMemoryItem,addressDelta:long,policy:com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy)java.lang.String|getLabel(address:long,addressDelta:long,policy:com.pnfsoftware.jeb.core.units.code.asm.analyzer.AutoLabelPolicy)java.lang.String;
I;0;ILine;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.ILine;;;;getMarks()java.util.List|getItems()java.util.List|getText()java.lang.CharSequence;EMPTY_LINE:com.pnfsoftware.jeb.core.output.text.ILine
I;0;ILiveArtifact;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.ILiveArtifact;;;;load(wantedType:java.lang.String,softDelegation:boolean,doNotProcessUnit:boolean)boolean|getRuntimeProject()com.pnfsoftware.jeb.core.IRuntimeProject|getUnits()java.util.List|getArtifact()com.pnfsoftware.jeb.core.IArtifact|getMainUnit()com.pnfsoftware.jeb.core.units.IUnit;
I;0;ILoaderInformation;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ILoaderInformation;;;;getImageBase()long|getEntryPoint()long|getImageSize()long|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getCompilationTimestamp()long|getTargetProcessor()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getTargetSubsystem()com.pnfsoftware.jeb.core.units.codeobject.SubsystemType|getWordSize()int|getOverlayOffset()long|getVersion()java.lang.String|getFlags()int;FLAG_HAS_SYMBOLS:int|FLAG_HAS_RELOCATION:int|FLAG_LIBRARY_FILE:int|FLAG_OBJECT_FILE:int|FLAG_PURE_CODE:int
I;0;ILocatedInstruction;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ILocatedInstruction;;com.pnfsoftware.jeb.core.units.code.IInstruction;;getOffset()long|getBreakingFlow()com.pnfsoftware.jeb.core.units.code.IFlowInformation|getRoutineCall()com.pnfsoftware.jeb.core.units.code.IFlowInformation|getIndirectRoutineCall()com.pnfsoftware.jeb.core.units.code.IFlowInformation;
I;0;ILogger;com.pnfsoftware.jeb.util.logging;com.pnfsoftware.jeb.util.logging.ILogger;;;;log(level:int,raw:boolean,format:java.lang.String,params:java.lang.Object[])void|getName()java.lang.String|debug(format:java.lang.String,params:java.lang.Object[])void|status(format:java.lang.String,params:java.lang.Object[])void|error(format:java.lang.String,params:java.lang.Object[])void|warning(format:java.lang.String,params:java.lang.Object[])void|trace(format:java.lang.String,params:java.lang.Object[])void|i(format:java.lang.String,params:java.lang.Object[])void|warn(format:java.lang.String,params:java.lang.Object[])void|info(format:java.lang.String,params:java.lang.Object[])void|setEnabledLevel(level:int)void|getEnabledLevel()int|severe(format:java.lang.String,params:java.lang.Object[])void|catching(t:java.lang.Throwable,message:java.lang.String)void|catching(t:java.lang.Throwable)void|fine(format:java.lang.String,params:java.lang.Object[])void|catchingSilent(t:java.lang.Throwable)void;
I;0;IMachineContext;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.IMachineContext;;;;getInformation()com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessorInformation|getRegisters()com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank|getMemory()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory;
I;0;IManglingEngine;com.pnfsoftware.jeb.core.units.code.asm.mangling;com.pnfsoftware.jeb.core.units.code.asm.mangling.IManglingEngine;;;;unmangle(mangledString:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.mangling.IUnmangledData;
I;0;IMasterOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizer;;;;getTarget()java.lang.Object|setTarget(t:java.lang.Object)void|unregisterInstrumenter(instrumenter:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizerInstrumenter)boolean|getRegisteredOptimizers(groupId:int)java.util.List|getRegisteredOptimizers()java.util.List|unregisterOptimizer(entry:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry)boolean|registerInstrumenter(instrumenter:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizerInstrumenter)void|registerOptimizer(group:int,opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|registerOptimizer(opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|registerOptimizer(group:int,opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer,priority:double)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry|getMode()int|setMode(mode:int)int|perform()int;
I;0;IMasterOptimizerInstrumenter;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizerInstrumenter;;;;preAllOptimizationsCallback(target:java.lang.Object)void|postAllOptimizationsCallback(target:java.lang.Object)void|preOptimizationCallback(target:java.lang.Object,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry)void|postOptimizationCallback(target:java.lang.Object,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry,cnt:int,executionTimeMs:long)void;
I;0;IMemoryAllocListener;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryAllocListener;;;;onAllocEvent(e:com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryAllocEvent)void;
I;0;IMemoryFreeListener;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryFreeListener;;;;onFreeEvent(e:com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryFreeEvent)void;
I;0;IMemoryModel;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel;;;;isEmpty()boolean|size()int|getItemAt(address:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getBitsize()int|getNextItem(address:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getItemOverOrGap(address:long,lowerBound:long,upperBound:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getFirstItem()com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getLastItem()com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getItemOver(address:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getView()java.util.SortedMap|getView(fromAddress:java.lang.Long,toAddress:java.lang.Long)java.util.SortedMap|getItemsInRange(addressBegin:long,includePartialFirstItem:boolean,addressEnd:long,includePartialLastItem:boolean)java.util.SortedMap|isEmptyRange(address:long,size:int)boolean|getPreviousItem(address:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getGapFactory()com.pnfsoftware.jeb.util.collect.ISegmentFactory|getLabelManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.ILabelManager|getContinuousItemsInRange(addressBegin:long,addressEnd:long)java.util.SortedMap|getCommentManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICommentManager|addListener(listener:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModelListener)void|removeListener(listener:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModelListener)void;
I;0;IMemoryModelListener;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModelListener;;;;onModelUpdate(event:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEvent)void;
I;0;IMemoryPropertyListener;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryPropertyListener;;;;onEndiannessChangeEvent(e:com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryPropertyEvent)void;
I;0;IMemoryProtectionListener;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryProtectionListener;;;;onProtectionEvent(e:com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryProtectionEvent)void;
I;0;IMemoryWriteListener;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryWriteListener;;;;onMemoryWriteEvent(e:com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryWriteEvent)void;
I;0;IMetadataGroup;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IMetadataGroup;;;;getName()java.lang.String|getType()com.pnfsoftware.jeb.core.units.MetadataGroupType|getAllData()java.util.Map|setData(address:java.lang.String,data:java.lang.Object)boolean|getData(address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.Object|getData(address:java.lang.String)java.lang.Object;
I;0;IMetadataManager;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IMetadataManager;;;;getGroupCount()int|getGroupByName(name:java.lang.String)com.pnfsoftware.jeb.core.units.IMetadataGroup|getGroups()java.util.List|addGroup(group:com.pnfsoftware.jeb.core.units.IMetadataGroup)boolean|removeGroup(index:int)boolean|insertGroup(index:int,group:com.pnfsoftware.jeb.core.units.IMetadataGroup)boolean|removeGroupByName(name:java.lang.String)boolean;
I;0;IMethodStackMemoryModel;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMethodStackMemoryModel;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel;;getSlotSize()int;
I;0;IMonitorInfoProvider;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.IMonitorInfoProvider;;;;setProbingPeriod(millis:long)void|setTimeout(millis:long)void|getTimeout()long|getProbingPeriod()long|onInterrupt()void;
I;0;IMultiSegmentMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.IMultiSegmentMap;;;;add(segment:com.pnfsoftware.jeb.util.collect.ISegment)com.pnfsoftware.jeb.util.collect.ISegment|clear()void|isEmpty()boolean|size()int|getFirstSegmentContaining(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|getSegmentsContaining(key:java.lang.Comparable)java.util.List;
I;0;INativeAttribute;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.INativeAttribute;;;;getValue()java.lang.Object|getType()java.lang.String|importTo(item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem)boolean|isPrintable()boolean;
I;0;INativeClassDataItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeClassDataItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeMemoryItem;;;
I;0;INativeClassItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeClassItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|com.pnfsoftware.jeb.core.units.code.ICodeClass;;getConstructors()java.util.List|getFields()java.util.List|getMethods()java.util.List|getStaticFields()java.util.List|getSubtypes()java.util.List|getSupertypes()java.util.List|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getDestructors()java.util.List|getStaticMethods()java.util.List|getVirtualTables()java.util.List|getNonVirtualMethods()java.util.List|getInstanceFields()java.util.List|getImplementedInterfaces()java.util.List|getInstanceMethods()java.util.List|getVirtualMethods(onlyDefinedInThisClass:boolean)java.util.List|renameVirtualMethod(method:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,name:java.lang.String)boolean|collectVirtualMethodOverrides(method:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,overUp:java.util.Collection,overDown:java.util.Collection)boolean|getCoordinatesOfVirtualMethod(method:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.util.base.Couple;
I;0;INativeCodeAdvancedAnalyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAdvancedAnalyzer;;;;analyzeInternalRoutines(methods:java.util.Collection)void|analyzeRoutines(methods:java.util.Collection)void|perform()void;
I;0;INativeCodeAnalyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer;;;;getMemory()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|getContainer()com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit|needsAnalysis()boolean|isAnalyzing()boolean|getAnalysisCount()int|defineData(address:long,type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem|defineData(address:long,type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,appliedSize:int)com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem|analyze()void|getProcessor()com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor|getDetectedCompiler()com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICompiler|getUnmanglerService()com.pnfsoftware.jeb.core.units.code.asm.mangling.UnmanglerService|getAnalysisRanges()com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryRanges|getDebugInformationPolicy()com.pnfsoftware.jeb.core.units.code.asm.analyzer.DebugInformationPolicy|enqueuePointerForAnalysis(pointer:com.pnfsoftware.jeb.core.units.code.PointerDescription,permission:int,flags:int)boolean|enqueuePointerForAnalysis(pointer:com.pnfsoftware.jeb.core.units.code.PointerDescription)boolean|enqueuePointerForAnalysis(pointer:com.pnfsoftware.jeb.core.units.code.PointerDescription,permission:int)boolean|clearAnalysisQueue()boolean|requestAnalysisInterruption()void|recordDynamicBranchTarget(instructionAddress:long,resolved:boolean,target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchTarget,prepareAnalysis:boolean)boolean|getAdvancedAnalyzer()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAdvancedAnalyzer|getAnalyzerExtensionsManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension|recordDynamicRegisterValue(instructionAddress:long,postExec:boolean,register:long,value:long)boolean|unrecordDynamicBranchTarget(instructionAddress:long,resolved:boolean,target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IBranchTarget)boolean|getModel()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeModel|getTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager;PERMISSION_GENTLE:int|PERMISSION_FORCEFUL:int|PERMISSION_DIRTY:int|FLAG_NO_ROUTINE:int|FLAG_CODE_CONTIGUOUS:int|FLAG_CALLEE_GENTLE_ANALYSIS:int|FLAG_CALLEE_FORCEFUL_ANALYSIS:int|FLAG_CALLEE_DIRTY_ANALYSIS:int
I;0;INativeCodeAnalyzerExtension;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension;;;;initialize(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|preprocessImage(passIndex:int)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|postprocessImage(passIndex:int)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|determineRoutineStackPointerDelta(routine:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getPrologueLooking(address:long,addressMax:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getPossiblePaddingSize(address:long,addressMax:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|typeManagerInitialized(typeman:com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager)void|isCandidateSwitchDispatcher(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,insns:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|determineSwitchInformation(address:long,base:long,inBlocks:java.util.Map,dstBlocks:java.util.Map)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|shouldForceRoutineEnd(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|isTrampolineToDynResRoutine(routine:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|determinePotentialPointers(address:long,insn:com.pnfsoftware.jeb.core.units.code.IInstruction,values:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getProbableEntryPoints(address:long,addressMax:long)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|isNonReturningRoutine(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult;
I;0;INativeCodeAnalyzerExtensionsManager;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension;;registerExtension(ext:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension)void|registerExtension(ext:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension,priority:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager$ExtensionPriority)void|registerExtensions(listExt:java.util.List,removePreviousExtensions:boolean)void;
I;0;INativeCodeModel;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeModel;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel|com.pnfsoftware.jeb.core.units.code.asm.analyzer.IInstructionAugmenter;;isRoutineHeader(address:long)boolean|isBasicBlockHeader(address:long)boolean|getBasicBlockHeader(address:long)com.pnfsoftware.jeb.core.units.code.asm.cfg.BasicBlock|getContainedRoutineAddresses(address:long)java.util.List|getCallGraphManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICallGraphManager|getRoutineAddresses()java.util.List|getReferenceManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceManager;
I;0;INativeCodeUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.INativeCodeUnit;;com.pnfsoftware.jeb.core.units.code.ICodeUnit|com.pnfsoftware.jeb.corei.parsers.asm.analyzer.IMethodManager;;getClass(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeClass|getClass(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.items.INativeClassItem|getClasses()java.util.List|getField(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.items.INativeFieldItem|getField(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeField|getFields()java.util.List|getMethod(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getMethod(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ICodeMethod|getMethods()java.util.List|getPackages()java.util.List|setMemory(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory)void|getFieldByIndex(index:int)com.pnfsoftware.jeb.core.units.code.asm.items.INativeFieldItem|getImageSize()long|setDataTypeAt(address:long,type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)boolean|getClassByIndex(index:int)com.pnfsoftware.jeb.core.units.code.asm.items.INativeClassItem|setProcessor(proc:com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor)void|getCodeFormatter()com.pnfsoftware.jeb.core.units.code.asm.render.GenericCodeFormatter|setCodeFormatter(codeFormatter:com.pnfsoftware.jeb.core.units.code.asm.render.GenericCodeFormatter)void|getMemory()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|performAnalysis(async:boolean,includeAdvancedAnalysis:java.lang.Boolean,onCompletion:java.lang.Runnable)boolean|getDataTypeAt(address:long)com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|setDataAt(address:long,type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,name:java.lang.String)boolean|setDataAt(address:long,type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,name:java.lang.String,undefineOverlappingItems:boolean)boolean|getStrings()java.util.List|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|setStringAt(address:long,addressMax:long,stringType:com.pnfsoftware.jeb.core.units.code.asm.type.StringType,minChars:int,maxChars:int,undefineOverlappingItems:boolean)boolean|setStringAt(address:long,addressMax:long,stringType:com.pnfsoftware.jeb.core.units.code.asm.type.StringType,minChars:int,maxChars:int)boolean|getMethodByIndex(index:int)com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getCodeModel()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeModel|getCodeAnalyzer()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer|undefineItem(address:long)boolean|getNativeItemAt(address:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|setRoutineAt(address:long,procmode:int,permission:int)boolean|setRoutineAt(address:long)boolean|setRoutineAt(address:long,procmode:int)boolean|setCodeAt(address:long,procmode:int,undefineOverlappingItems:boolean)boolean|getProcessor()com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor|getTypeLibraryService()com.pnfsoftware.jeb.core.units.code.asm.type.TypeLibraryService|getDisassemblyDocument()com.pnfsoftware.jeb.core.units.code.asm.render.INativeDisassemblyDocument|getDisassemblyDocument()com.pnfsoftware.jeb.core.output.text.ITextDocument|getInternalMethod(memoryAddress:long,addressIsEntryPoint:boolean)com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getAnalyzerExtension()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension|performInitialAnalysis()boolean|getCanonicalMemoryAddress(address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)long|getCanonicalMemoryAddress(address:java.lang.String)long|isAnalysisCompleted()boolean|getVirtualImageBase()long|getCodeObjectContainer()com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit|setAnalyzerExtension(ext:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension)void|getInternalMethods()java.util.List|getInternalMethods(memoryAddress:long)java.util.List|setVirtualImageBase(virtualImageBase:long)void|getCodeAnalyzerExtensionsManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtensionsManager|isInitialAnalysisDone()boolean|getSymbolicStringAddress(address:long)java.lang.String|getSymbolicStringAddress(address:long,sspref:int)java.lang.String|getNativeItemsOver(address:long,size:int)java.util.SortedMap|setRoutinePrototype(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,prototypeString:java.lang.String)boolean|setRoutineReferenceAt(address:long,routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)boolean|getEntryPointAddress()long|setRoutineSignature(routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,signatureString:java.lang.String,prototypeOnly:boolean)boolean|getPhysicalImageDelta()long|setPhysicalImageBase(physicalImageBase:long)void|getHighLevelEntryPointAddress()long|getNativeItemOver(address:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|getSignatureManager()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureDBManager|getTypes()java.util.List|getTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager|getItemObject(arg0:long)java.lang.Object|getItemObject(id:long)com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|getLock()com.pnfsoftware.jeb.core.units.IUnitLock;
I;0;INativeContinuousItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeMemoryItem|com.pnfsoftware.jeb.util.collect.ISegment;;getMemorySize()long;
I;0;INativeDataItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|com.pnfsoftware.jeb.core.units.code.ICodeData;;getField()com.pnfsoftware.jeb.core.units.code.asm.items.INativeFieldItem|getType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;
I;0;INativeDecompilationTarget;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilationTarget;;;;getProperties()com.pnfsoftware.jeb.core.units.code.asm.decompiler.TargetProperties|getContext()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IERoutineContext|getPipelineErrorDescription()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IPipelineErrorDescription|getHighLevelDecompilationStage()com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|getCreationTimestamp()long|isDone()boolean|getDecompiler()com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit|isSuccess()boolean|getConverter()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEConverter|isFailure()boolean|getIROptimizer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.EMasterOptimizer|getRoutine()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getStatus()com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus;
I;0;INativeDecompilerExtension;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerExtension;;;;pipelineHookPoint(target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilationTarget)com.pnfsoftware.jeb.core.units.code.asm.decompiler.DecompilationStatus|setAdditionalIRTypes(target:com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilationTarget,cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)void|getSourceCustomizer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ISourceCustomizer|customizeIROptimizer(optimizer:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.EMasterOptimizer)void|getGlobalAnalyzer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IGlobalAnalyzer|customAnalysis(simulationContext:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IIRSimulationContext,offset:long,insn:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement,state:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEState)void;
I;0;INativeDecompilerPlugin;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.INativeDecompilerPlugin;;com.pnfsoftware.jeb.core.units.code.asm.INativePlugin;;getDecompilerExtension()com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerExtension|getConverter(unit:com.pnfsoftware.jeb.core.units.INativeCodeUnit)com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEConverter;
I;0;INativeDecompilerUnit;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit;;com.pnfsoftware.jeb.core.units.code.IDecompilerUnit;;getDecompiledUnit(identifier:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeSourceUnit|getDecompiledUnit(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ISourceUnit|getCodeUnit()com.pnfsoftware.jeb.core.units.code.ICodeUnit|getCodeUnit()com.pnfsoftware.jeb.core.units.INativeCodeUnit|getOnDemandIROptimizers(identifier:java.lang.String)java.util.List|resetDecompilation(identifier:java.lang.String,reDecompile:boolean)void|decompileMethod(method:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,decompile:boolean,wantedStage:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage,properties:com.pnfsoftware.jeb.core.units.code.asm.decompiler.TargetProperties)com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilationTarget|decompileMethod(method:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeSourceUnit|decompile(arg0:java.lang.String)com.pnfsoftware.jeb.core.units.code.ISourceUnit|decompile(identifier:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeSourceUnit|decompile(identifier:java.lang.String,properties:com.pnfsoftware.jeb.core.units.code.asm.decompiler.TargetProperties)com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeSourceUnit|getConverter()com.pnfsoftware.jeb.core.units.code.asm.decompiler.IEConverter|getWildcardTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardTypeManager|getTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager;
I;0;INativeDisassemblerPlugin;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.INativeDisassemblerPlugin;;com.pnfsoftware.jeb.core.units.code.asm.INativePlugin;;canBeProcessedOutsideCodeObject()boolean|getCodeFormatter()com.pnfsoftware.jeb.core.units.code.asm.render.GenericCodeFormatter|getMemory(parent:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|getProcessor(parent:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor|getAnalyzerExtension()com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzerExtension;
I;0;INativeDisassemblyDocument;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.INativeDisassemblyDocument;;com.pnfsoftware.jeb.core.output.text.ITextDocument;;setPropertyOverrides(propertyOverrides:com.pnfsoftware.jeb.core.units.code.asm.render.NativeDisassemblyProperties)void|getDisassemblyPart(address:long,addressEnd:long)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getPropertyOverrides()com.pnfsoftware.jeb.core.units.code.asm.render.NativeDisassemblyProperties|getUnit()com.pnfsoftware.jeb.core.units.INativeCodeUnit;
I;0;INativeFeature;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.INativeFeature;;;;getValue()java.lang.Object|getType()java.lang.String|match(feature:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeFeature)boolean|deepCopy()com.pnfsoftware.jeb.core.units.code.asm.sig.INativeFeature;
I;0;INativeFieldItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeFieldItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|com.pnfsoftware.jeb.core.units.code.ICodeField;;getFieldType()com.pnfsoftware.jeb.core.units.code.ICodeType|getFieldType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getData()com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem;
I;0;INativeInstructionItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeInstructionItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeContinuousItem|com.pnfsoftware.jeb.core.units.code.ICodeInstruction;;getHints(create:boolean)com.pnfsoftware.jeb.core.units.code.asm.items.InstructionHints;
I;0;INativeItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem;;com.pnfsoftware.jeb.core.units.code.ICodeItem;;setName(name:java.lang.String)void|getAttributes()java.util.Map|isAutoGenerated()boolean|setAutoGenerated(autogenerated:boolean)void|hasAttribute(name:java.lang.String)boolean|removeAttribute(name:java.lang.String)boolean|getAttribute(name:java.lang.String,clazz:java.lang.Class)java.lang.Object|setAttribute(name:java.lang.String,data:java.lang.Object)boolean|addListener(listener:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItemListener)void|removeListener(listener:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItemListener)void;
I;0;INativeItemListener;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItemListener;;;;onNativeItemEvent(event:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEvent)void;
I;0;INativeMemoryItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeMemoryItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem;;getMemoryAddress()long|getLabel()java.lang.String;
I;0;INativeMethodDataItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodDataItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeMemoryItem;;getTrampolineTarget()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getMethodReferences()java.util.List|getStackframeManager()com.pnfsoftware.jeb.core.units.code.asm.analyzer.IStackframeManager|getSPDeltaOnReturn()java.lang.Integer|setSPDeltaOnReturn(spdelta:java.lang.Integer)void|getStackframeModel()com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMethodStackMemoryModel|getRoutine()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getCFG()com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG;
I;0;INativeMethodItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|com.pnfsoftware.jeb.core.units.code.ICodeMethod;;getParameterTypes()java.util.List|getReturnType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getReturnType()com.pnfsoftware.jeb.core.units.code.ICodeType|getClassType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getClassType()com.pnfsoftware.jeb.core.units.code.ICodeType|getInstructions()java.util.List|getNonReturning()java.lang.Boolean|getPrototype()com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem|setNonReturning(nonReturning:java.lang.Boolean)void|getParameterNames()java.util.List|getRoutineAddress()java.lang.Long|getData()com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodDataItem;
I;0;INativePlugin;com.pnfsoftware.jeb.core.units.code.asm;com.pnfsoftware.jeb.core.units.code.asm.INativePlugin;;com.pnfsoftware.jeb.core.units.IUnitPlugin;;setupCustomProperties(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void;
I;0;INativeSignature;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature;;;;getAttributes()java.util.List|match(signature:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature)boolean|getAlternateNames()java.util.List|getConfidenceLevel()com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel|matchExactly(signature:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature)boolean|getTargetName()java.lang.String|getPossibleNames()java.util.List|getFlags()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureFlags;
I;0;INativeSignaturePackage;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignaturePackage;;;;count()int|getSignatures()java.util.List|getMetadata()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageMetadata;
I;0;INativeSourceUnit;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeSourceUnit;;com.pnfsoftware.jeb.core.units.code.ISourceUnit;;getDecompilationTargets()java.util.List|getDecompiler()com.pnfsoftware.jeb.core.units.code.IDecompilerUnit|getDecompiler()com.pnfsoftware.jeb.core.units.code.asm.decompiler.INativeDecompilerUnit|getRootElement()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICElement;
I;0;INativeStringItem;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.INativeStringItem;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem|com.pnfsoftware.jeb.core.units.code.ICodeString;;getStringType()com.pnfsoftware.jeb.core.units.code.asm.type.StringType;
I;0;INativeType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|com.pnfsoftware.jeb.core.units.code.ICodeType;;getSize()int|getReference()com.pnfsoftware.jeb.core.units.code.asm.type.IReferenceType|getTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager;
I;0;INet;com.pnfsoftware.jeb.util.net;com.pnfsoftware.jeb.util.net.INet;;;;query(url:java.lang.String,parameters:java.util.Map)java.lang.String|query(url:java.lang.String)java.lang.String|query(url:java.lang.String,parameters:java.util.Map,serverHeaders:java.util.Map)java.lang.String|duplicate()com.pnfsoftware.jeb.util.net.INet|getConnectTimeout()int|getReadTimeout()int|setConnectTimeout(timeout:int)void|setReadTimeout(timeout:int)void|getSecureSocketInfo()com.pnfsoftware.jeb.util.net.SecureSocketInfo|setSecureSocketInfo(info:com.pnfsoftware.jeb.util.net.SecureSocketInfo)void|queryBinary(url:java.lang.String,parameters:java.util.Map,serverHeaders:java.util.Map)byte[]|queryBinary(url:java.lang.String,urlParams:java.util.Map,serverHeaders:java.util.Map,progressCallback:com.pnfsoftware.jeb.util.base.IProgressCallback)byte[]|queryBinary(url:java.lang.String,parameters:java.util.Map)byte[]|queryBinary(url:java.lang.String)byte[]|downloadBinary(dstfile:java.io.File,url:java.lang.String,urlParams:java.util.Map,serverHeaders:java.util.Map,progressCallback:com.pnfsoftware.jeb.util.base.IProgressCallback)long|setUserAgent(userAgent:java.lang.String)void|getWriteTimeout()int|setWriteTimeout(timeout:int)void|getUserAgent()java.lang.String|post(url:java.lang.String,urlParams:java.util.Map,bodyParams:java.util.Map)java.lang.String|post(url:java.lang.String,urlParams:java.util.Map,bodyParams:java.util.Map,serverHeaders:java.util.Map)java.lang.String|postMultipart(url:java.lang.String,formParams:java.util.Map,formFiles:java.util.Map,serverHeaders:java.util.Map)java.lang.String|postMultipart(url:java.lang.String,formParams:java.util.Map,formFiles:java.util.Map)java.lang.String;
I;0;INode;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.INode;;com.pnfsoftware.jeb.core.output.IItem;;getAdditionalLabels()java.lang.String[]|getLabel()java.lang.String|getChildren()java.util.List;
I;0;INode;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode;;;;;
I;0;INodeCoordinates;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.INodeCoordinates;;;;getPath()java.util.List;
I;0;INodeHandler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INodeHandler;;;;process(node:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode,e:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEGeneric;
I;0;INodeVisitor;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.INodeVisitor;;;;process(e:java.lang.Object,parent:java.lang.Object,results:com.pnfsoftware.jeb.core.units.code.asm.decompiler.IVisitResults)void;
I;0;INonStatement;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.INonStatement;;com.pnfsoftware.jeb.core.units.code.java.IJavaElement;;;
C;0;IO;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.IO;java.lang.Object;;com.pnfsoftware.jeb.util.io.IO();createDirectory(path:java.lang.String)boolean|createDirectory(f:java.io.File)boolean|createTempFile(exactname:java.lang.String)java.io.File|createTempFile()java.io.File|isFile(path:java.lang.String)boolean|listFiles(folderpath:java.lang.String)java.util.List|listFiles(folder:java.io.File)java.util.List|getExtension(path:java.lang.String)java.lang.String|getExtension(file:java.io.File)java.lang.String|getRelativePath(file:java.io.File,base:java.io.File)java.lang.String|getFirstShortLE(path:java.lang.String)short|copyStream(input:java.io.InputStream,output:java.io.OutputStream)long|copyStream(input:java.io.InputStream,output:java.io.OutputStream,buffer:byte[])long|readInputLineSafe()java.lang.String|deleteDirectoryContents(dir:java.io.File)boolean|deleteDirectoryOnExit(dir:java.io.File)void|parsePathElements(s:java.lang.String)java.util.List|sanitizePathUnsafe(path:java.lang.String)java.lang.String|escapeFileNameStrict(filename:java.lang.String,newChar:char)java.lang.String|escapeFileNameStrict(filename:java.lang.String)java.lang.String|createFoldersForFile(file:java.io.File)void|readInputStream(in:java.io.InputStream)byte[]|getCwd()java.lang.String|readFile(file:java.io.File,maxAllowedSize:long)byte[]|readFile(file:java.io.File)byte[]|readFile(path:java.lang.String)byte[]|writeFile(file:java.io.File,str:java.lang.String,charsetName:java.lang.String)void|writeFile(file:java.io.File,data:byte[],offset:int,size:int,createDirs:boolean)void|writeFile(file:java.io.File,data:byte[],createDirs:boolean)void|writeFile(file:java.io.File,data:byte[],offset:int,size:int)void|writeFile(file:java.io.File,data:byte[])void|writeFile(file:java.io.File,str:java.lang.String)void|deleteFile(file:java.io.File)boolean|getParentFile2(file:java.io.File)java.io.File|renameFile(src:java.io.File,dst:java.io.File,mode:int)boolean|expandPath(path:java.lang.String)java.lang.String|setCwd(cwd:java.lang.String)java.lang.String|getFirstByte(path:java.lang.String)byte|deleteDirectory(path:java.lang.String)boolean|deleteDirectory(dir:java.io.File)boolean|readLinesSafe(file:java.io.File)java.util.List|readLinesSafe(file:java.io.File,encoding:java.nio.charset.Charset)java.util.List|createTempFolder(folderName:java.lang.String)java.io.File|copyAsync(input:java.io.InputStream,output:java.io.OutputStream)java.lang.Thread|readFileSafe(file:java.io.File)byte[]|getTempFolder()java.io.File|copyFile(src:java.io.File,dst:java.io.File,overwrite:boolean)void|writeLinesSafe(output:java.io.OutputStream,lines:java.util.List,encoding:java.nio.charset.Charset)boolean|writeLinesSafe(file:java.io.File,lines:java.util.List)boolean|writeLinesSafe(file:java.io.File,lines:java.util.List,encoding:java.nio.charset.Charset)boolean|writeLinesSafe(output:java.io.OutputStream,lines:java.util.List)boolean|compressFolder(folderPath:java.lang.String,zipfilePath:java.lang.String)boolean|escapeFileName(filename:java.lang.String,newChar:char)java.lang.String|escapeFileName(filename:java.lang.String)java.lang.String|sanitizePath(path:java.lang.String,isSinglePathElement:boolean,replaceBlankCharacters:boolean)java.lang.String|extractToFolder(inputZipFile:java.io.File,outputFolder:java.io.File)void|createFile(file:java.io.File,createDirs:boolean)boolean|writeFileSafe(file:java.io.File,data:byte[],createDirs:boolean)boolean|writeFileSafe(file:java.io.File,data:byte[],offset:int,size:int,createDirs:boolean)boolean|noExtension(path:java.lang.String)java.lang.String|noExtension(file:java.io.File)java.io.File|compareFiles(file0:java.io.File,file1:java.io.File)boolean|replaceExtension(file:java.io.File,extension:java.lang.String)java.io.File|writeLines(file:java.io.File,lines:java.util.List,encoding:java.nio.charset.Charset)void|writeLines(output:java.io.OutputStream,lines:java.util.List,encoding:java.nio.charset.Charset)void|writeLines(file:java.io.File,lines:java.util.List)void|writeLines(output:java.io.OutputStream,lines:java.util.List)void|getFirstIntLE(path:java.lang.String)int|readLines(file:java.io.File)java.util.List|readLines(input:java.io.InputStream,encoding:java.nio.charset.Charset)java.util.List|readLines(input:java.io.InputStream)java.util.List|readLines(file:java.io.File,encoding:java.nio.charset.Charset)java.util.List;
I;0;IOperable;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IOperable;;;;verifyOperation(req:com.pnfsoftware.jeb.client.api.OperationRequest)boolean|doOperation(req:com.pnfsoftware.jeb.client.api.OperationRequest)boolean;
I;0;IOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IOperandBuilder;;;;buildOperand(code:byte[],mode:int)com.pnfsoftware.jeb.core.units.code.IInstructionOperand;
I;0;IOptFilterCanDiscard;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptFilterCanDiscard;;;;check(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,insnAddress:long,regDef:int)boolean;
I;0;IOptimizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer;;com.pnfsoftware.jeb.core.IPlugin;;getType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType|getTarget()java.lang.Object|setTarget(target:java.lang.Object)java.lang.Object|getPostProcessingAction()int|getDefaultPriority()double|getRequiredModeThreshold()int|getPreferredExecutionStage()int|perform()int|getClassId()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId;PPA_NONE:int|PPA_OPTIMIZATION_PASS_FULL:int|PPA_OPTIMIZATION_PASS_CLEANUP:int
I;0;IOptionDefinition;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IOptionDefinition;;;;getName()java.lang.String|getDefaultValue()java.lang.String|getDescription()java.lang.String;
I;0;IPECOFFUnit;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IPECOFFUnit;;com.pnfsoftware.jeb.core.units.codeobject.ICodeObjectUnit;;getSectionHeaders()com.pnfsoftware.jeb.core.units.codeobject.ICOFFSectionHeader[]|getPEOptionalHeader()com.pnfsoftware.jeb.core.units.codeobject.IPEOptionalHeader|getCOFFHeader()com.pnfsoftware.jeb.core.units.codeobject.ICOFFHeader;
I;0;IPEDataDirectory;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IPEDataDirectory;;;;getSize()long|getPosition()long;
I;0;IPEOptionalHeader;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.IPEOptionalHeader;;;;getImageBase()long|getSubsystem()short|getMajorOperatingSystemVersion()short|getMinorLinkerVersion()byte|getAddressOfEntryPoint()long|getMinorOperatingSystemVersion()short|getSectionAlignment()int|getMajorImageVersion()short|getMajorLinkerVersion()byte|getSizeOfInitializedData()long|getMinorImageVersion()short|getMajorSubsystemVersion()short|getSizeOfUninitializedData()long|getMinorSubsystemVersion()short|getDllCharacteristics()short|getWin32VersionValue()int|getSizeOfHeapReserve()long|getNumberOfRvaAndSizes()long|getSizeOfStackReserve()long|getSizeOfHeapCommit()long|getSizeOfStackCommit()long|getMagic()short|getCheckSum()int|getSizeOfCode()long|getLoaderFlags()int|getDataDirectory()com.pnfsoftware.jeb.core.units.codeobject.IPEDataDirectory[]|getBaseOfCode()long|getBaseOfData()long|getFileAlignment()int|getSizeOfHeaders()long|getSizeOfImage()long;
I;0;IPackage;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IPackage;;com.pnfsoftware.jeb.core.units.code.ICodePackage;;getTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager;
I;0;IPackageManager;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IPackageManager;;;;getPackages()java.util.List|moveToPackage(item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem,dst:com.pnfsoftware.jeb.core.units.code.asm.type.IPackage)boolean|createPackage(fqname:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IPackage|createPackage(parent:com.pnfsoftware.jeb.core.units.code.asm.type.IPackage,simplename:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IPackage|deletePackage(pkg:com.pnfsoftware.jeb.core.units.code.asm.type.IPackage)boolean|getPackageOfItem(item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem)com.pnfsoftware.jeb.core.units.code.asm.type.IPackage;
I;0;IPipelineErrorDescription;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IPipelineErrorDescription;;;;getRootClassname()java.lang.String|getStacktrace()java.lang.String|getRootMessage()java.lang.String;
I;0;IPlugin;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IPlugin;;;;getPluginInformation()com.pnfsoftware.jeb.core.IPluginInformation|setData(key:java.lang.Object,value:java.lang.Object)void|getData(key:java.lang.Object)java.lang.Object|dispose()void;
I;0;IPluginInformation;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IPluginInformation;;;;getName()java.lang.String|getMaximumCoreVersion()com.pnfsoftware.jeb.core.Version|getMinimumCoreVersion()com.pnfsoftware.jeb.core.Version|getAuthor()java.lang.String|getVersion()com.pnfsoftware.jeb.core.Version|getDescription()java.lang.String;
I;0;IPluginManager;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IPluginManager;;;;load(classpath:java.lang.String,classname:java.lang.String)java.lang.Class|load(plugin:java.io.File)java.util.List|getEnginesContext()com.pnfsoftware.jeb.core.IEnginesContext|getClassloader()java.lang.ClassLoader;
I;0;IPrimitiveSizes;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveSizes;;;;getLongDoubleSize()int|getShortSize()int|getLongSize()int|getFloatSize()int|getCharSize()int|getIntSize()int|getLongLongSize()int|getDoubleSize()int;
I;0;IPrimitiveType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;isSigned()boolean|isUnsigned()boolean|getCategory()com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory;
I;0;IPrimitiveTypeManager;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveTypeManager;;;;getType(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType|isCharacter(t:com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType)boolean|isFloat(t:com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType)boolean|isInteger(t:com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType)boolean|getExactIntegerBySize(size:int,signed:boolean)com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType|isUnsignedInteger(t:com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType)boolean|getExactFloatBySize(size:int)com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType|isVoid(t:com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType)boolean|getTypes()java.util.Collection|getSizes()com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveSizes|getIntegerBySize(size:int,signed:boolean)com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType|isSignedInteger(t:com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveType)boolean;
I;0;IProcessor;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessor;;;;getType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getVariant()com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|createEntryPoint(address:long)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|createEntryPoint(address:long,defaultMode:int)com.pnfsoftware.jeb.core.units.code.EntryPointDescription|parseWithContext(context:com.pnfsoftware.jeb.core.units.code.asm.IMachineContext)com.pnfsoftware.jeb.core.units.code.IInstruction|getResolver()com.pnfsoftware.jeb.core.units.code.asm.simulator.ICodeResolver|setEndianness(endianness:com.pnfsoftware.jeb.util.io.Endianness)void|setVariant(variant:com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant)void|getMode()int|parseAt(vm:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory,address:long)com.pnfsoftware.jeb.core.units.code.IInstruction|parseAt(bytes:byte[],index:int,end:int)com.pnfsoftware.jeb.core.units.code.IInstruction|getDefaultMode()int|isRISC()boolean|setMode(newMode:int)int|getRegisterName(registerCode:long)java.lang.String|getSupportedVariants()java.util.Collection|getSupportedModes()java.util.Collection|getInstructionAlignment()int|setInstructionAlignment(align:int)void;MODE_INVALID:int|MODE_DEFAULT:int|MODE_16:int|MODE_32:int|MODE_64:int
I;0;IProcessorInformation;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessorInformation;;;;getEndianness()com.pnfsoftware.jeb.util.io.Endianness;
I;0;IProgressCallback;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.IProgressCallback;;;;progress(current:long,total:long)void;
I;0;IPropertyDefinition;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyDefinition;;;;getName()java.lang.String|getType()com.pnfsoftware.jeb.core.properties.IPropertyType|isInternal()boolean|getFlags()int|getDescription()java.lang.String;
I;0;IPropertyDefinitionManager;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager;;;;getParent()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getDefinition(name:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|getRegion()java.lang.String|addInternalDefinition(name:java.lang.String,type:com.pnfsoftware.jeb.core.properties.IPropertyType)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|addDefinition(name:java.lang.String,type:com.pnfsoftware.jeb.core.properties.IPropertyType,description:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|getChild(name:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getDefinitions()java.util.List|registerChild(child:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)boolean|getNamespace()java.lang.String|attachToParent(parent:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|removeDefinition(name:java.lang.String)void|isRoot()boolean|getChildren()java.util.List;
I;0;IPropertyManager;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyManager;;com.pnfsoftware.jeb.util.events.IEventSource;;getBoolean(name:java.lang.String,defaultOnNull:boolean)boolean|getBoolean(name:java.lang.String)boolean|getValue(name:java.lang.String,checkingDepth:int,validateValue:boolean)java.lang.Object|getValue(name:java.lang.String)java.lang.Object|setValue(name:java.lang.String,value:java.lang.Object)boolean|setValue(name:java.lang.String,value:java.lang.Object,validateValue:boolean,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setBoolean(name:java.lang.String,value:java.lang.Boolean,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setBoolean(name:java.lang.String,value:java.lang.Boolean)boolean|getInteger(name:java.lang.String,defaultOnNull:int)int|getInteger(name:java.lang.String)int|getString(name:java.lang.String)java.lang.String|getString(name:java.lang.String,defaultOnNull:java.lang.String)java.lang.String|getConfiguration()com.pnfsoftware.jeb.core.properties.IConfiguration|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|setString(name:java.lang.String,value:java.lang.String)boolean|setString(name:java.lang.String,value:java.lang.String,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setInteger(name:java.lang.String,value:java.lang.Integer)boolean|setInteger(name:java.lang.String,value:java.lang.Integer,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|getStringUnsafe(name:java.lang.String)java.lang.String|getBooleanUnsafe(name:java.lang.String)java.lang.Boolean|getIntegerUnsafe(name:java.lang.String)java.lang.Integer|dispose()void;DEPTH_CONFIGURATION_ONLY:int|DEPTH_MASTER:int|DEPTH_FULL:int
I;0;IPropertyType;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyType;;;;getName()java.lang.String|getDefault()java.lang.Object|validate(value:java.lang.Object)boolean;
I;0;IPropertyTypeBoolean;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyTypeBoolean;;com.pnfsoftware.jeb.core.properties.IPropertyType;;getDefault()java.lang.Boolean|getDefault()java.lang.Object;
I;0;IPropertyTypeInteger;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyTypeInteger;;com.pnfsoftware.jeb.core.properties.IPropertyType;;getDefault()java.lang.Object|getDefault()java.lang.Integer|getMax()int|getMin()int;
I;0;IPropertyTypePath;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyTypePath;;com.pnfsoftware.jeb.core.properties.IPropertyTypeString;;;
I;0;IPropertyTypeString;com.pnfsoftware.jeb.core.properties;com.pnfsoftware.jeb.core.properties.IPropertyTypeString;;com.pnfsoftware.jeb.core.properties.IPropertyType;;getMinLength()int|getMaxLength()int;
I;0;IPrototypeItem;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|com.pnfsoftware.jeb.core.units.code.ICodePrototype;;getParameterTypes()java.util.List|getReturnType()com.pnfsoftware.jeb.core.units.code.ICodeType|getReturnType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getRoutineName()java.lang.String|isNoReturn()boolean|getParameterNames()java.util.List|getCountOfParameters()int|getCallingConvention()com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConvention|getPrototypeAttributes()java.util.Collection;
I;0;IQuickStateObject;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IQuickStateObject;;;;reload(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean|isTargetUnit(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean;
C;0;IRCFGFormatter;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IRCFGFormatter;com.pnfsoftware.jeb.core.units.code.asm.cfg.CFGFormatter;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IRCFGFormatter(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IRCFGFormatter(cfg:com.pnfsoftware.jeb.core.units.code.asm.cfg.CFG,varprv:com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableProvider,formatFineGrained:boolean);extraInstructionDetails(arg0:long,arg1:com.pnfsoftware.jeb.core.units.code.IInstruction)java.lang.String|extraInstructionDetails(address:long,insn:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEStatement)java.lang.String;
I;0;IReference;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReference;;;;getAddress()long|getFlags()int;FLAG_DYNAMIC:int|FLAG_UNSURE:int
I;0;IReferenceManager;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceManager;;;;getReferencesToTarget(target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceTarget)java.util.Set|getReferencesToTarget(target:long)java.util.Set|unrecordReference(target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceTarget,referenceAddress:long)void|unrecordReference(target:long,reference:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReference)void|unrecordReference(target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceTarget,reference:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReference)void|unrecordReference(target:long,referenceAddress:long)void|recordReference(target:long,referenceAddress:long)void|recordReference(target:long,reference:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReference)void|recordReference(target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceTarget,referenceAddress:long)void|recordReference(target:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceTarget,reference:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReference)void;
I;0;IReferenceTarget;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IReferenceTarget;;;;getAddress()long|getItem()com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|isItem()boolean|isAddress()boolean;
I;0;IReferenceType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IReferenceType;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;getPointedType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getMainType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getReferenceCount()int;
I;0;IRegisterBank;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank;;;;getName(regnum:int)java.lang.String|getValue(regnum:int)byte[]|size()int|setValue(regnum:int,bytes:byte[])boolean|getProgramCounter()long|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getBitsize(regnum:int)int|setValueAsLong(regnum:int,value:long)boolean|getValueAsLong(regnum:int)java.lang.Long|getFlags()long|getLayout()com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout;
I;0;IRegisterBankLayout;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout;;;;getCountOfDescriptionEntries()int|getDescriptionEntries()java.util.Collection|getDescriptionEntry(regnum:int)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry;
I;0;IRegistersResolution;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IRegistersResolution;;;;isEmpty()boolean|getAll(postExec:boolean)java.util.Map;
I;0;IResolvedOperandElementValue;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.IResolvedOperandElementValue;;;;getBytes()byte[]|getType()int;TYPE_UNKNOWN:int|TYPE_POINTER:int
I;0;IResolvedOperandValue;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.IResolvedOperandValue;;;;getBytes()byte[]|getElements()java.util.List;
I;0;IRoutineTable;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.IRoutineTable;;;;get(index:int)com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem|getAddress()long|size()int|find(vmethod:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem)int|getAll()java.util.List;
I;0;IRuntimeProject;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IRuntimeProject;;com.pnfsoftware.jeb.util.events.IEventSource;;getName()java.lang.String|getKey()java.lang.String|getContext()com.pnfsoftware.jeb.core.IEnginesContext|setName(name:java.lang.String)void|close()void|getEnginesContext()com.pnfsoftware.jeb.core.IEnginesContext|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getUptime()long|isReloaded()boolean|findUnit(unitClazz:java.lang.Class)com.pnfsoftware.jeb.core.units.IUnit|getProcessor()com.pnfsoftware.jeb.core.units.IUnitProcessor|getArtifactCount()int|destroyUnit(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean|getInputRecords()java.util.List|getLiveArtifacts()java.util.List|findUnits(unitClazz:java.lang.Class)java.util.List|getRecordedTimestamp()long|getPersistenceStrategy()int|finishArtifactProcessing(a:com.pnfsoftware.jeb.core.ILiveArtifact)void|setPersistenceStrategy(strategy:int)void|getCreationTimestamp()long|getLiveArtifact(index:int)com.pnfsoftware.jeb.core.ILiveArtifact|processArtifact(artifact:com.pnfsoftware.jeb.core.IArtifact)com.pnfsoftware.jeb.core.ILiveArtifact|processArtifact(artifact:com.pnfsoftware.jeb.core.IArtifact,wantedType:java.lang.String,softDelegation:boolean,doNotProcessUnit:boolean)com.pnfsoftware.jeb.core.ILiveArtifact|getNotes()java.lang.String|setNotes(notes:java.lang.String)void;defaultProjectPropertiesNamespace:java.lang.String|ArtifactProcessingDepth:java.lang.String|AlwaysProcessDuplicateInputs:java.lang.String|CompressPersistedProject:java.lang.String|PersistenceStrategy:java.lang.String
I;0;ISafeLock;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.ISafeLock;;;;rw()com.pnfsoftware.jeb.util.concurrent.ACLock|ro()com.pnfsoftware.jeb.util.concurrent.ACLock;
I;0;IScript;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IScript;;;;run(context:com.pnfsoftware.jeb.client.api.IClientContext)void;
I;0;ISegment;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ISegment;;;;getBegin()java.lang.Comparable|getEnd()java.lang.Comparable;
I;0;ISegmentFactory;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ISegmentFactory;;;;create(begin:java.lang.Object,end:java.lang.Object)java.lang.Object;
I;0;ISegmentGapVerifier;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ISegmentGapVerifier;;;;verify(begin:java.lang.Object,end:java.lang.Object)com.pnfsoftware.jeb.util.collect.ISegmentGapVerifier$VerificationCode;
I;0;ISegmentInformation;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation;;;;getName()java.lang.String|getAlignment()long|getSizeInMemory()long|getOffsetInMemory()long|getOffsetInFile()long|getSizeInFile()long|getFlags()int;FLAG_WRITE:int|FLAG_READ:int|FLAG_EXECUTE:int|FLAG_RWX:int|FLAG_INVALID:int|FLAG_ALLOC_ON_WRITE:int|FLAG_SYNTHETIC:int
I;0;ISegmentMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ISegmentMap;;java.util.NavigableMap;;add(segment:com.pnfsoftware.jeb.util.collect.ISegment)com.pnfsoftware.jeb.util.collect.ISegment|put(arg0:java.lang.Object,arg1:java.lang.Object)java.lang.Object|put(key:java.lang.Comparable,segment:com.pnfsoftware.jeb.util.collect.ISegment)com.pnfsoftware.jeb.util.collect.ISegment|putAll(m:java.util.Map)void|getOverlappingSegmentsMap(begin:java.lang.Comparable,includeFirstPartialSegment:boolean,end:java.lang.Comparable,includeLastPartialSegment:boolean)java.util.SortedMap|getSegmentContaining(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|isEmptyRange(begin:java.lang.Comparable,end:java.lang.Comparable)boolean|getSegmentAfter(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|getSegmentBefore(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|contiguousSubMap(begin:java.lang.Comparable,end:java.lang.Comparable,factory:com.pnfsoftware.jeb.util.collect.ISegmentFactory)java.util.SortedMap|generateGapItems(begin:java.lang.Comparable,allowHeader:boolean,end:java.lang.Comparable,allowTrailer:boolean,factory:com.pnfsoftware.jeb.util.collect.ISegmentFactory,addItemsToMap:boolean)java.util.List|generateGaps(begin:java.lang.Comparable,allowHeader:boolean,end:java.lang.Comparable,allowTrailer:boolean)java.util.List|generateGaps(begin:java.lang.Comparable,allowHeader:boolean,end:java.lang.Comparable,allowTrailer:boolean,verifier:com.pnfsoftware.jeb.util.collect.ISegmentGapVerifier)java.util.List|fillGaps(begin:java.lang.Comparable,end:java.lang.Comparable,factory:com.pnfsoftware.jeb.util.collect.ISegmentFactory)java.util.List;
I;0;ISigningStrategy;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.ISigningStrategy;;;;getAttributeSigners(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem)java.util.Set|getFeatureSigners(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem)java.util.Set;
I;0;ISimpleFilter;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.ISimpleFilter;;;;check(value:java.lang.Object)boolean;
I;0;ISourceCustomizer;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ISourceCustomizer;;;;generateNativeStatement(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICNativeStatement,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean|generateFieldDeclarationLine(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICField,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean|generateMethodDeclarationLine(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICMethod,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean|preFieldsGeneration(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean|generateOperation(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICOperation,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean|generateClassDeclarationLine(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean|preMethodsGeneration(elt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICClass,out:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.COutputSink)boolean;
I;0;ISourceUnit;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.ISourceUnit;;com.pnfsoftware.jeb.core.units.IInteractiveUnit;;getSourceDocument()com.pnfsoftware.jeb.core.output.text.ITextDocument|getFullyQualifiedName()java.lang.String|getFileExtension()java.lang.String|getDecompiler()com.pnfsoftware.jeb.core.units.code.IDecompilerUnit;
I;0;IStackframeManager;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.IStackframeManager;;;;undefineItem(address:long)boolean|defineItem(address:long,type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)com.pnfsoftware.jeb.core.units.code.asm.items.INativeDataItem|getModel()com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel;
I;0;IStatement;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.IStatement;;com.pnfsoftware.jeb.core.units.code.java.IJavaElement;;;
I;0;IStructureType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType;;com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;;getField(index:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|getFields()java.util.List|getFieldAt(offset:int,bitstart:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|getFieldAt(offset:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|getAlignment()int|getFieldsWithGaps()java.util.List|getFieldByName(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|isUnion()boolean|getFieldsCount()int|getIndexOfField(field:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField)int|getFieldAfter(offset:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|getFieldOver(offset:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|isCircular(type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)boolean|isStructure()boolean|getPadding()int;
I;0;IStructureTypeField;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField;;;;getName(includeBitfield:boolean)java.lang.String|getName()java.lang.String|isSynthetic()boolean|getType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getSize()int|getOffset()int|getAlignment()int|getBitsize()int|getBitstart()int|getLastOffset()int|isBitfield()boolean|getBitend()int;
I;0;ISymbolInformation;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ISymbolInformation;;;;getName()java.lang.String|getType()com.pnfsoftware.jeb.core.units.codeobject.SymbolType|getProcessorMode()int|getSymbolSize()long|getIdentifier()long|getRelativeAddress()long|getSymbolRelativeAddress()long|getSymbolDataTypeInformation()java.lang.String|getFlags()int;FLAG_IMPORTED:int|FLAG_EXPORTED:int|FLAG_FUNCTION_CODE_CONTIGUOUS:int|FLAG_METADATA:int
I;0;ITableDocument;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.ITableDocument;;com.pnfsoftware.jeb.util.events.IEventSource|com.pnfsoftware.jeb.core.output.IGenericDocument;;getTable()com.pnfsoftware.jeb.core.output.table.ITableDocumentPart|getTablePart(start:int,count:int)com.pnfsoftware.jeb.core.output.table.ITableDocumentPart|getColumnLabels()java.util.List|getRowCount()int|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.table.ICellCoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.table.ICellCoordinates)java.lang.String;
I;0;ITableDocumentPart;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.ITableDocumentPart;;;;getRows()java.util.List|getFirstRowIndex()int;
I;0;ITableRow;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.ITableRow;;;;getCells()java.util.List;
I;0;ITelemetryDatabase;com.pnfsoftware.jeb.client.telemetry;com.pnfsoftware.jeb.client.telemetry.ITelemetryDatabase;;;;close()void|record(eventName:java.lang.String,properties:java.util.Map)boolean|record(eventName:java.lang.String,key0:java.lang.String,value0:java.lang.String,key1:java.lang.String,value1:java.lang.String)boolean|record(eventName:java.lang.String,key0:java.lang.String,value0:java.lang.String)boolean|record(eventName:java.lang.String)boolean;
I;0;ITelemetryEndpoint;com.pnfsoftware.jeb.client.telemetry;com.pnfsoftware.jeb.client.telemetry.ITelemetryEndpoint;;;;dump(records:java.util.List)boolean|canDump()boolean;
I;0;ITextDocument;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.ITextDocument;;com.pnfsoftware.jeb.util.events.IEventSource|com.pnfsoftware.jeb.core.output.IGenericDocument;;getFirstAnchor()long|getDocumentPart2(anchorBegin:long,anchorEnd:long)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getInitialAnchor()long|getDocumentPart(anchorId:long,linesAfter:int,linesBefore:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getDocumentPart(anchorId:long,linesAfter:int)com.pnfsoftware.jeb.core.output.text.ITextDocumentPart|getAnchorCount()long|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.text.ICoordinates|addressToCoordinates(address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.CoordinatesConversionPrecision)com.pnfsoftware.jeb.core.output.text.ICoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.text.ICoordinates)java.lang.String;
I;0;ITextDocumentPart;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.ITextDocumentPart;;;;getLines()java.util.List|getAnchors()java.util.List;
I;0;ITextItem;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.ITextItem;;com.pnfsoftware.jeb.core.output.IItem;;getLength()int|getOffset()int|getOffsetEnd()int|getLine()com.pnfsoftware.jeb.core.output.text.ILine|getText()java.lang.String;
I;0;ITextMark;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.ITextMark;;;;getObject()java.lang.Object|getName()java.lang.String|getOffset()int;
I;0;ITreeDocument;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.ITreeDocument;;com.pnfsoftware.jeb.util.events.IEventSource|com.pnfsoftware.jeb.core.output.IGenericDocument;;getColumnLabels()java.util.List|getRoots()java.util.List|getInitialExpansionLevel()int|addressToCoordinates(address:java.lang.String)com.pnfsoftware.jeb.core.output.tree.INodeCoordinates|coordinatesToAddress(coordinates:com.pnfsoftware.jeb.core.output.tree.INodeCoordinates)java.lang.String;
I;0;ITypeIdProvider;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.ITypeIdProvider;;;;addAll(provider:com.pnfsoftware.jeb.util.serialization.ITypeIdProvider)void|getId(c:java.lang.Class)int|getType(id:int)java.lang.Class|getMap()java.util.Map|getReverseMap()java.util.Map;
I;0;ITypeLibrary;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.ITypeLibrary;;;;getName()java.lang.String|getCompilerType()com.pnfsoftware.jeb.core.units.codeobject.CompilerType|getPrimaryProcessorType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getPrimarySubsystemType()com.pnfsoftware.jeb.core.units.codeobject.SubsystemType|getConstantManager()com.pnfsoftware.jeb.core.units.code.asm.type.CodeConstantManager|getSubsystemTypes()java.util.List|getCreationTimestamp()long|getProcessorTypes()java.util.List|getAuthor()java.lang.String|getRoutines()java.util.Collection|getGroupId()int|getTypes(filter:com.pnfsoftware.jeb.util.base.ISimpleFilter)java.util.Collection|getTypes()java.util.Collection|getPriorityOrder()double|getUuid()int|getVersion()int|getDescription()java.lang.String;
I;0;ITypeManager;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager;;;;getType(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|getType(signature:java.lang.String,allowImportingFromTypelibs:boolean)com.pnfsoftware.jeb.core.units.code.asm.type.INativeType|verify(type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)void|createClassType(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IClassType|createClassType(signature:java.lang.String,padding:int,alignment:int)com.pnfsoftware.jeb.core.units.code.asm.type.IClassType|getCompilerType()com.pnfsoftware.jeb.core.units.codeobject.CompilerType|createReference(baseType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)com.pnfsoftware.jeb.core.units.code.asm.type.IReferenceType|createReference(baseType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,refCount:int)com.pnfsoftware.jeb.core.units.code.asm.type.IReferenceType|getProcessorType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getPrimitives()com.pnfsoftware.jeb.core.units.code.asm.type.IPrimitiveTypeManager|getPointerSize()int|deleteType(type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)boolean|createAlias(signature:java.lang.String,aliasedType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)com.pnfsoftware.jeb.core.units.code.asm.type.IAliasType|getVoidReference()com.pnfsoftware.jeb.core.units.code.asm.type.IReferenceType|getParser()com.pnfsoftware.jeb.core.units.code.asm.type.TypeStringParser|createArray(baseType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,arraySize:int)com.pnfsoftware.jeb.core.units.code.asm.type.IArrayType|getSubsystemType()com.pnfsoftware.jeb.core.units.codeobject.SubsystemType|getPrototypes()java.util.Collection|createPrototype(returnType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,parameterTypes:java.util.List)com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem|createPrototype(callingConvention:com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConvention,returnType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,parameterTypes:java.util.List,attributes:java.util.Collection)com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem|createStructure(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType|createUnion(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType|getTypeLibraryService()com.pnfsoftware.jeb.core.units.code.asm.type.TypeLibraryService|createEnumeration(signature:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.IEnumerationType|getCallingConventionManager()com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConventionManager|addStructureField(type:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType,fieldName:java.lang.String,fieldType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|addStructureField(type:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType,fieldName:java.lang.String,fieldType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,offset:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|addStructureField(type:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType,fieldName:java.lang.String,fieldType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,offset:int,bitsize:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|addStructureField(type:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType,fieldName:java.lang.String,fieldType:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType,offset:int,bitsize:int,alignment:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField|createStructureOrUnion(signature:java.lang.String,padding:int,alignment:int)com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType|removeStructureField(type:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType,field:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField)boolean|renameStructureField(type:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType,field:com.pnfsoftware.jeb.core.units.code.asm.type.IStructureTypeField,newName:java.lang.String)boolean|getTypes(filter:com.pnfsoftware.jeb.util.base.ISimpleFilter)java.util.Collection|getTypes()java.util.Collection;
I;0;ITypedContentProperties;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.ITypedContentProperties;;;;;
I;0;ITypedValue;com.pnfsoftware.jeb.core.units.code.debug;com.pnfsoftware.jeb.core.units.code.debug.ITypedValue;;;;format()java.lang.String|getValue()java.lang.Object|getTypeName()java.lang.String;TYPE_RAW:java.lang.String|TYPE_BOOLEAN:java.lang.String|TYPE_BYTE:java.lang.String|TYPE_CHARACTER:java.lang.String|TYPE_SHORT:java.lang.String|TYPE_INTEGER:java.lang.String|TYPE_LONG:java.lang.String|TYPE_FLOAT:java.lang.String|TYPE_DOUBLE:java.lang.String|TYPE_STRING:java.lang.String|TYPE_OBJECT:java.lang.String|TYPE_ARRAY:java.lang.String
I;0;IUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnit;;com.pnfsoftware.jeb.util.events.IEventSource|com.pnfsoftware.jeb.core.IUnitCreator;;getName()java.lang.String|getParent()com.pnfsoftware.jeb.core.IUnitCreator|setName(name:java.lang.String)void|getRealName()java.lang.String|setParent(parent:com.pnfsoftware.jeb.core.IUnitCreator)void|process()boolean|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getNotificationManager()com.pnfsoftware.jeb.core.units.IUnitNotificationManager|postDeserialization(prj:com.pnfsoftware.jeb.core.IRuntimeProject)void|initializePropertyObjects(parent:com.pnfsoftware.jeb.core.IUnitCreator,processor:com.pnfsoftware.jeb.core.units.IUnitProcessor,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|getCreationTimestamp()long|generateQuickState()com.pnfsoftware.jeb.core.units.IQuickStateObject|getChildren()java.util.List|getNotes()java.lang.String|setNotes(notes:java.lang.String)void|dispose()void|getFormatter()com.pnfsoftware.jeb.core.output.IUnitFormatter|addChildUnit(unit:com.pnfsoftware.jeb.core.units.IUnit)void|getInterpreters()java.util.List|setRealName(name:java.lang.String)void|isDisposed()boolean|removeChild(unit:com.pnfsoftware.jeb.core.units.IUnit)void|setUnitProcessor(processor:com.pnfsoftware.jeb.core.units.IUnitProcessor)void|getFormatType()java.lang.String|getStatus()java.lang.String|isProcessed()boolean|getContributions()java.util.List|canBePersisted()boolean|addChild(unit:com.pnfsoftware.jeb.core.units.IUnit)void|addChild(unit:com.pnfsoftware.jeb.core.units.IUnit,persisted:boolean)void|getDescription()java.lang.String|getIconData()byte[]|getUnitProcessor()com.pnfsoftware.jeb.core.units.IUnitProcessor|getLock()com.pnfsoftware.jeb.core.units.IUnitLock|isTransientChild(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean;
I;0;IUnitContribution;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IUnitContribution;;com.pnfsoftware.jeb.core.IDynamicTargetPlugin;;getItemInformation(targetUnit:com.pnfsoftware.jeb.core.units.IAddressableUnit,itemId:long,itemText:java.lang.String)com.pnfsoftware.jeb.util.base.TypedContent|getLocationInformation(targetUnit:com.pnfsoftware.jeb.core.units.IAddressableUnit,location:java.lang.String)com.pnfsoftware.jeb.util.base.TypedContent;
I;0;IUnitCreator;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IUnitCreator;;com.pnfsoftware.jeb.util.events.IEventSource;;getName()java.lang.String|getParent()com.pnfsoftware.jeb.core.IUnitCreator;
I;0;IUnitDocumentPresentation;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.IUnitDocumentPresentation;;;;getId()long|getDocument()com.pnfsoftware.jeb.core.output.IGenericDocument|isDefaultRepresentation()boolean|getLabel()java.lang.String;
I;0;IUnitFilter;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.IUnitFilter;;;;check(unit:com.pnfsoftware.jeb.core.units.IUnit)boolean;
I;0;IUnitFormatter;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.IUnitFormatter;;;;insertPresentation(index:int,presentation:com.pnfsoftware.jeb.core.output.IUnitDocumentPresentation,persisted:boolean)void|getPresentationCount()int|removePresentation(index:int)void|getDocumentPresentations()java.util.List|isPersisted(index:int)boolean|getPresentation(index:int)com.pnfsoftware.jeb.core.output.IUnitDocumentPresentation|getPresentations()java.util.List|addPresentation(presentation:com.pnfsoftware.jeb.core.output.IUnitDocumentPresentation,persisted:boolean)void|dispose()void;
I;0;IUnitFragment;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IUnitFragment;;;;getActiveItemAsText()java.lang.String|setActiveAddress(address:java.lang.String)boolean|getUnit()com.pnfsoftware.jeb.core.units.IUnit|isActiveItem(item:com.pnfsoftware.jeb.core.output.IItem)boolean|getActiveAddress(precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.String|getActiveAddress()java.lang.String|getActiveItem()com.pnfsoftware.jeb.core.output.IItem;
I;0;IUnitIdentifier;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitIdentifier;;com.pnfsoftware.jeb.core.units.IUnitPlugin;;prepare(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.units.IUnit|acceptAnyInputBytes()boolean|canIdentify(input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator)boolean;
I;0;IUnitInterpreter;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitInterpreter;;com.pnfsoftware.jeb.core.IDynamicTargetPlugin|com.pnfsoftware.jeb.core.units.ICommandInterpreter;;;
I;0;IUnitLock;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitLock;;;;isLocked()boolean|a()com.pnfsoftware.jeb.util.concurrent.ACLock|a(blockTimeoutMs:long)com.pnfsoftware.jeb.util.concurrent.ACLock|getDefaultBlockTimeoutMs()long|isLockedByCurrentThread()boolean|verifyLocked()void;
I;0;IUnitNotification;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitNotification;;;;getAddress()java.lang.String|getKey()java.lang.String|getType()com.pnfsoftware.jeb.core.units.NotificationType|getTimestampMs()long|getDescription()java.lang.String;
I;0;IUnitNotificationManager;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitNotificationManager;;;;removeNotification(key:java.lang.String)boolean|getNotificationCount()int|getNotification(key:java.lang.String)com.pnfsoftware.jeb.core.units.IUnitNotification|getNotifications()java.util.List|addNotifications(c:java.util.Collection)void|addNotification(notification:com.pnfsoftware.jeb.core.units.IUnitNotification)void;
I;0;IUnitPlugin;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitPlugin;;com.pnfsoftware.jeb.core.IPlugin;;getPriority()double|initialize(parent:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getTypeIdProvider()com.pnfsoftware.jeb.util.serialization.ITypeIdProvider|getFormatType()java.lang.String;
I;0;IUnitProcessor;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitProcessor;;;;process(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator,wantedType:java.lang.String)com.pnfsoftware.jeb.core.units.IUnit|process(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator,wantedType:java.lang.String,softDelegation:boolean)com.pnfsoftware.jeb.core.units.IUnit|process(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.units.IUnit|process(name:java.lang.String,parent:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.units.IUnit|process(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator,wantedType:java.lang.String,softDelegation:boolean,doNotProcessUnit:boolean)com.pnfsoftware.jeb.core.units.IUnit|getPropertyManager()com.pnfsoftware.jeb.core.properties.IPropertyManager|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getDebuggerUnitIdentifiers()java.util.List|getUnitIdentifiers()java.util.List|getAlwaysProcessDuplicateInputs()boolean|getUnitIdentifier(type:java.lang.String)com.pnfsoftware.jeb.core.units.IUnitIdentifier|setProcessingDepth(depth:int)int|unregisterUnitIdentifier(identifier:com.pnfsoftware.jeb.core.units.IUnitIdentifier)boolean|setUnknownInputResolver(resolver:com.pnfsoftware.jeb.core.units.IUnknownInputResolver)void|getProcessingDepth()int|registerPlugin(identifier:com.pnfsoftware.jeb.core.units.IUnitPlugin)com.pnfsoftware.jeb.core.units.IUnitIdentifier|createDebugger(name:java.lang.String,parent:com.pnfsoftware.jeb.core.units.IUnit)com.pnfsoftware.jeb.core.units.code.debug.IDebuggerUnit|createDecompiler(name:java.lang.String,parent:com.pnfsoftware.jeb.core.units.IUnit)com.pnfsoftware.jeb.core.units.code.IDecompilerUnit;
I;0;IUnitProvider;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnitProvider;;;;getFormatter()com.pnfsoftware.jeb.core.output.IUnitFormatter|getFormatType()java.lang.String|getDescription()java.lang.String;
I;0;IUnitTextFragment;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IUnitTextFragment;;com.pnfsoftware.jeb.client.api.IUnitFragment;;getCaretCoordinates()com.pnfsoftware.jeb.core.output.text.ICoordinates|setCaretCoordinates(coord:com.pnfsoftware.jeb.core.output.text.ICoordinates,record:boolean)void|getSelectedText()java.lang.String;
I;0;IUnitView;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IUnitView;;;;getActiveFragment()com.pnfsoftware.jeb.client.api.IUnitFragment|setActiveFragment(fragment:com.pnfsoftware.jeb.client.api.IUnitFragment)void|setLabel(label:java.lang.String)void|getUnit()com.pnfsoftware.jeb.core.units.IUnit|getFragments()java.util.List|setFocus()void|setFragmentLabel(fragment:com.pnfsoftware.jeb.client.api.IUnitFragment,label:java.lang.String)void|getFragmentLabel(fragment:com.pnfsoftware.jeb.client.api.IUnitFragment)java.lang.String|getLabel()java.lang.String;
I;0;IUnknownInputResolver;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IUnknownInputResolver;;;;askForHelp(name:java.lang.String,input:com.pnfsoftware.jeb.core.input.IInput,parent:com.pnfsoftware.jeb.core.IUnitCreator)java.lang.String;
I;0;IUnmangledData;com.pnfsoftware.jeb.core.units.code.asm.mangling;com.pnfsoftware.jeb.core.units.code.asm.mangling.IUnmangledData;;;;getFull()java.lang.String|getSimple()java.lang.String;
I;0;IUnmangledRoutine;com.pnfsoftware.jeb.core.units.code.asm.mangling;com.pnfsoftware.jeb.core.units.code.asm.mangling.IUnmangledRoutine;;com.pnfsoftware.jeb.core.units.code.asm.mangling.IUnmangledData;;getName()java.lang.String|getReturnType()java.lang.String|getPrototype(noCppFeatures:boolean)java.lang.String|getPrototype(noCppFeatures:boolean,safeForParser:boolean)java.lang.String|getCallingConvention()java.lang.String;
I;0;IUserDatabase;com.pnfsoftware.jeb.core.dao;com.pnfsoftware.jeb.core.dao.IUserDatabase;;;;;
I;0;IVariable;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariable;;java.lang.Comparable|com.pnfsoftware.jeb.util.collect.ISegment;;getName()java.lang.String|getId()int|getBitsize()int|getIdFromBit(bitIndex:int)int|getIds()java.util.Collection|getBitFromId(bitId:int)int;
I;0;IVariableInformationProvider;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableInformationProvider;;;;getSame(id:int)java.util.Set;
I;0;IVariableProvider;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariableProvider;;;;get(id:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariable|getContaining(id:int)com.pnfsoftware.jeb.core.units.code.asm.cfg.IVariable;
I;0;IVirtualMemory;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory;;;;write(address:long,size:int,src:byte[],srcOffset:int)int|read(address:long,size:int,dst:byte[],dstOffset:int)int|check(address:long,size:int,protection:int)int|readInt(address:long,end:com.pnfsoftware.jeb.util.io.Endianness)int|readInt(address:long)int|writeInt(address:long,v:int)void|writeInt(address:long,v:int,end:com.pnfsoftware.jeb.util.io.Endianness)void|allocate(address:long,size:int,protection:int)void|duplicate()com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory|readByte(address:long)byte|readLong(address:long)long|readLong(address:long,end:com.pnfsoftware.jeb.util.io.Endianness)long|readShort(address:long,end:com.pnfsoftware.jeb.util.io.Endianness)short|readShort(address:long)short|getSpaceBits()int|writeBEShort(address:long,v:short)void|getPageSize()int|readLEShort(address:long)short|readLEInt(address:long)int|readBEInt(address:long)int|writeBEInt(address:long,v:int)void|readBELong(address:long)long|roundToPage(address:long)long|writeBELong(address:long,v:long)void|roundToSize(address:long)long|readPointer(address:long)long|writeLEInt(address:long,v:int)void|writeLEShort(address:long,v:short)void|writeLELong(address:long,v:long)void|freePage(address:long)void|readLELong(address:long)long|readBEShort(address:long)short|allocatePage(address:long,protection:int)void|addFreeListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryFreeListener)void|addWriteListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryWriteListener)void|addAllocListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryAllocListener)void|writePointer(address:long,ptr:long)void|writeShort(address:long,v:short)void|writeShort(address:long,v:short,end:com.pnfsoftware.jeb.util.io.Endianness)void|writeLong(address:long,v:long,end:com.pnfsoftware.jeb.util.io.Endianness)void|writeLong(address:long,v:long)void|writeByte(address:long,v:byte)void|removePropertyListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryPropertyListener)void|removeAllocListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryAllocListener)void|setPageProtection(address:long,protection:int)void|getAllocatedPageBases()java.util.Collection|addPropertyListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryPropertyListener)void|removeFreeListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryFreeListener)void|getPageProtection(address:long)int|addProtectionListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryProtectionListener)void|removeProtectionListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryProtectionListener)void|removeWriteListener(listener:com.pnfsoftware.jeb.core.units.code.asm.memory.IMemoryWriteListener)void|getStandardEndianess()com.pnfsoftware.jeb.util.io.Endianness|setStandardEndianness(endianness:com.pnfsoftware.jeb.util.io.Endianness)void|getAllocatedPageCount()int|isValidAddress(address:long)boolean|free(address:long,size:int)void;ACCESS_NONE:int|ACCESS_READ:int|ACCESS_WRITE:int|ACCESS_EXECUTE:int|ACCESS_RW:int|ACCESS_RX:int|ACCESS_RWX:int
I;0;IVirtualTableDefinition;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IVirtualTableDefinition;;;;size()int|getType()com.pnfsoftware.jeb.core.units.code.asm.type.IStructureType;
I;0;IVisitResults;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.IVisitResults;;;;interrupt(success:boolean)void|setReplacedNode(newNode:java.lang.Object)void|parentsIterator()java.util.Iterator|setVisitResult(success:boolean)void|skipChildren()void;FLAG_RECORD_PARENTS:int|FLAG_SKIP_ASSIGN_DST:int
I;0;IVisualCell;com.pnfsoftware.jeb.core.output.table;com.pnfsoftware.jeb.core.output.table.IVisualCell;;com.pnfsoftware.jeb.core.output.table.ICell|com.pnfsoftware.jeb.core.output.IVisualItem;;;
I;0;IVisualItem;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.IVisualItem;;;;getClassId()com.pnfsoftware.jeb.core.output.ItemClassIdentifiers;
I;0;IVisualNode;com.pnfsoftware.jeb.core.output.tree;com.pnfsoftware.jeb.core.output.tree.IVisualNode;;com.pnfsoftware.jeb.core.output.tree.INode|com.pnfsoftware.jeb.core.output.IVisualItem;;getInitialExpansion()int;
I;0;IVisualTextItem;com.pnfsoftware.jeb.core.output.text;com.pnfsoftware.jeb.core.output.text.IVisualTextItem;;com.pnfsoftware.jeb.core.output.text.ITextItem|com.pnfsoftware.jeb.core.output.IVisualItem;;;
I;0;IWildcardPrototype;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype;;;;getParameterTypes()java.util.List|getReturnType()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType|getParameterType(i:int)com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType|isVariableArgument()boolean|getCallingConvention()com.pnfsoftware.jeb.core.units.code.asm.type.ICallingConvention|getWildcardTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardTypeManager;
I;0;IWildcardType;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType;;com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem;;resolve()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType|isDefined()boolean|getBitsize()int|getEffectiveBitsize()int|isLessSpecializedThan(t2:com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType)boolean|getGroup()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Group|getSlotCount()int|isVoid()boolean|getSignedness()com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardType$Signedness|getNativeType()com.pnfsoftware.jeb.core.units.code.asm.type.INativeType;
I;0;IWildcardTypeManager;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardTypeManager;;;;getNativeTypeManager()com.pnfsoftware.jeb.core.units.code.asm.type.ITypeManager|convertPrototype(nativePrototype:com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem)com.pnfsoftware.jeb.core.units.code.asm.type.IWildcardPrototype;
I;0;IXApkUnit;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.IXApkUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getManifest()com.pnfsoftware.jeb.core.units.IJsonUnit|getPackageName()java.lang.String|getApk()com.pnfsoftware.jeb.core.units.code.android.IApkUnit;
I;0;IXmlUnit;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.IXmlUnit;;com.pnfsoftware.jeb.core.units.IUnit;;getDocument()org.w3c.dom.Document;
C;0;IconType;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.IconType;java.lang.Enum;;;values()com.pnfsoftware.jeb.client.api.IconType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.client.api.IconType;QUESTION:com.pnfsoftware.jeb.client.api.IconType|INFORMATION:com.pnfsoftware.jeb.client.api.IconType|WARNING:com.pnfsoftware.jeb.client.api.IconType|ERROR:com.pnfsoftware.jeb.client.api.IconType
C;0;IdRanges;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges();add(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar)void|add(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar,beg:int,len:int)void|equals(obj:java.lang.Object)boolean|hashCode()int|clear()void|size()int|addAll(vars:java.util.Collection)void|intersection(other:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges|containsVarFull(id:int)boolean|containsVarFull(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar)boolean|getBits()java.util.List|getVarIds()java.util.List|hasIntersection(other:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IdRanges)boolean|bsize()int|getVars()java.util.List|containsVarPart(var:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IEVar)boolean|collectVars(r:java.util.List)void|collectVarIds(r:java.util.Collection)void|collectBits(r:java.util.List)void;
C;0;IdentifierCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.IdentifierCoordinates;java.lang.Object;;com.pnfsoftware.jeb.core.output.code.coordinates.IdentifierCoordinates(base:com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates,varindex:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getVariableIndex()int|getBase()com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;
C;0;IdentityHashSet;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.IdentityHashSet;java.lang.Object;java.util.Set;com.pnfsoftware.jeb.util.collect.IdentityHashSet(expectedMaxSize:int)|com.pnfsoftware.jeb.util.collect.IdentityHashSet()|com.pnfsoftware.jeb.util.collect.IdentityHashSet(c:java.util.Collection);add(e:java.lang.Object)boolean|remove(o:java.lang.Object)boolean|equals(o:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|clear()void|contains(o:java.lang.Object)boolean|isEmpty()boolean|iterator()java.util.Iterator|size()int|toArray(a:java.lang.Object[])java.lang.Object[]|toArray()java.lang.Object[]|addAll(c:java.util.Collection)boolean|containsAll(c:java.util.Collection)boolean|removeAll(c:java.util.Collection)boolean|retainAll(c:java.util.Collection)boolean;
C;0;IllegalConversionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalConversionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.InstructionConversionException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalConversionException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalConversionException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalConversionException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalConversionException();;
C;0;IllegalIntermediateExpressionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalIntermediateExpressionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalIntermediateExpressionException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.IllegalIntermediateExpressionException(format:java.lang.String,args:java.lang.Object[]);;
C;0;IllegalTypeNameException;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.IllegalTypeNameException;com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException;;com.pnfsoftware.jeb.core.units.code.asm.type.IllegalTypeNameException(msg:java.lang.String,typename:java.lang.String);getIllegalTypename()java.lang.String;
C;0;ImmediateOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.ImmediateOperandBuilder;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder;;com.pnfsoftware.jeb.core.units.code.asm.processor.ImmediateOperandBuilder(type:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType,memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea)|com.pnfsoftware.jeb.core.units.code.asm.processor.ImmediateOperandBuilder(type:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType,flags:int,defaultValue:int,memoryArea:com.pnfsoftware.jeb.core.units.code.asm.processor.memory.IEncodedMemoryArea);buildImmediate(arg0:int,arg1:long)com.pnfsoftware.jeb.core.units.code.IInstructionOperand|buildImmediate(mode:int,value:long)com.pnfsoftware.jeb.core.units.code.asm.processor.Operand;
C;1;ImmediateType;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder.ImmediateType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType;SignExtend32:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType|SignExtend64:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType|ZeroExtendLength:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType|ZeroExtend32:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType|ZeroExtend64:com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractImmediateOperandBuilder$ImmediateType
C;0;IniFileEditor;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.IniFileEditor;java.lang.Object;;com.pnfsoftware.jeb.util.base.IniFileEditor(file:java.io.File);update()void|getValue(sectionName:java.lang.String,keyName:java.lang.String,delimiter:java.lang.String)java.lang.String|getValue(sectionName:java.lang.String,keyName:java.lang.String)java.lang.String|write(newFile:java.io.File)void|setValue(sectionName:java.lang.String,keyName:java.lang.String,value:java.lang.String)boolean|setValue(sectionName:java.lang.String,keyName:java.lang.String,value:java.lang.String,delimiter:java.lang.String)boolean|setSectionContents(sectionName:java.lang.String,contents:java.util.List)void|getSectionContents(sectionName:java.lang.String)java.util.List|getSectionNames()java.util.List;
C;0;InputHelper;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.InputHelper;java.lang.Object;;com.pnfsoftware.jeb.core.input.InputHelper();readBytes(src:com.pnfsoftware.jeb.core.input.IInput,srcOffset:long,dst:byte[],dstOffset:int,size:int)int|wrapBytes(data:byte[])com.pnfsoftware.jeb.core.input.IInput;
C;1;InputStream;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.Base64.InputStream;java.io.FilterInputStream;;com.pnfsoftware.jeb.util.encoding.Base64$InputStream(in:java.io.InputStream)|com.pnfsoftware.jeb.util.encoding.Base64$InputStream(in:java.io.InputStream,options:int);read(dest:byte[],off:int,len:int)int|read()int;
C;0;InputToken;com.pnfsoftware.jeb.util.interpreter;com.pnfsoftware.jeb.util.interpreter.InputToken;java.lang.Object;;com.pnfsoftware.jeb.util.interpreter.InputToken(value:java.lang.String,needsUnescaping:boolean)|com.pnfsoftware.jeb.util.interpreter.InputToken(value:java.lang.String);toString()java.lang.String|getBytes()byte[]|getValue()java.lang.String|needsUnespaping()boolean;
C;0;InsnEmulator;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.InsnEmulator;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.InsnEmulator(flags:int);getBranchType()com.pnfsoftware.jeb.core.units.code.asm.simulator.IInsnEmulator$BranchType|isPCUpdated()boolean|getFlags()int;NO_FLAG:int|UPDATE_MASK:int|UPDATE_NONE:int|UPDATE_PC:int|JUMP_MASK:int|JUMP_LAST_OPERAND:int|LINK:int
C;0;InstructionConversionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.InstructionConversionException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.InstructionConversionException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.InstructionConversionException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.InstructionConversionException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.InstructionConversionException();;
C;0;InstructionCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.InstructionCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates.InstructionCoordinates(methodId:int,offset:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getOffset()int|getMethodId()int;
C;0;InstructionHints;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.InstructionHints;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.items.InstructionHints();setCallsitePrototype(callsiteProto:com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem)void|setStackPointerDelta(spDelta:java.lang.Integer)void|getCallsitePrototype()com.pnfsoftware.jeb.core.units.code.asm.type.IPrototypeItem|getStackPointerDelta()java.lang.Integer;
C;0;InstructionUtil;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.InstructionUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.InstructionUtil();getOperand(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,index:int)com.pnfsoftware.jeb.core.units.code.IInstructionOperand|getOperand(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,index:int,c:java.lang.Class)com.pnfsoftware.jeb.core.units.code.IInstructionOperand;
C;0;InstructionUtil;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.InstructionUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.processor.InstructionUtil();getOperandByGlobalIndex(insn:com.pnfsoftware.jeb.core.units.code.IInstruction,opndIndexGlobal:int)com.pnfsoftware.jeb.core.units.code.IInstructionOperand|isAddressOperand(op:com.pnfsoftware.jeb.core.units.code.asm.processor.IInstructionOperandGeneric)boolean;
C;0;IntegerLEB128;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.IntegerLEB128;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.IntegerLEB128();decodeULEB128(input:java.io.InputStream)com.pnfsoftware.jeb.util.encoding.IntegerLEB128$DecodedInt|readULEB128(input:java.io.InputStream)int|writeULEB128(out:java.io.OutputStream,v:int)void;
C;0;IntegerList;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.IntegerList;java.lang.Object;;com.pnfsoftware.jeb.util.primitives.IntegerList();format(l:java.util.List)java.lang.String|format(l:int[])java.lang.String|format(l:int[][])java.lang.String|buildListFromArray(a:int[])java.util.List|compareToArray(l:java.util.List,a:int[])boolean|buildList(elts:int[])java.util.List|buildFromArray(a:int[],l:java.util.List)java.util.List;
C;0;IntegerRanges;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.IntegerRanges;java.lang.Object;;com.pnfsoftware.jeb.util.primitives.IntegerRanges(merge_ranges_:boolean);add(beg:int,end:int)void|count()int|toString()java.lang.String|isInsideRange(v:int,range:int[])boolean;
C;0;IntegerSegment;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.IntegerSegment;java.lang.Object;com.pnfsoftware.jeb.util.collect.ISegment|java.lang.Comparable;com.pnfsoftware.jeb.util.collect.IntegerSegment(address:int,size:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|compareTo(arg0:java.lang.Object)int|compareTo(second:com.pnfsoftware.jeb.util.collect.IntegerSegment)int|getSize()int|getBegin()java.lang.Comparable|getBegin()java.lang.Integer|getEnd()java.lang.Comparable|getEnd()java.lang.Integer;
C;0;Integers;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.Integers;java.lang.Object;;com.pnfsoftware.jeb.util.primitives.Integers();min(c:java.util.Collection)java.lang.Integer|max(c:java.util.Collection)java.lang.Integer|toUnsignedString(value:int)java.lang.String|formatIntegerCollection(list:java.util.Collection,radix:java.lang.Integer,pfx:java.lang.String,sfx:java.lang.String)java.lang.String|safeInt(v:java.lang.Integer)int|safeInt(v:java.lang.Integer,defaultValue:int)java.lang.Integer;
C;0;InteractiveWrapperUnit;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.InteractiveWrapperUnit;com.pnfsoftware.jeb.core.units.impl.WrapperUnit;com.pnfsoftware.jeb.core.units.IInteractiveUnit;com.pnfsoftware.jeb.core.units.impl.InteractiveWrapperUnit(unit:com.pnfsoftware.jeb.core.units.IInteractiveUnit,provider:com.pnfsoftware.jeb.core.units.IUnitProvider);setComment(address:java.lang.String,comment:java.lang.String)boolean|getComment(address:java.lang.String)java.lang.String|getAddressActions(address:java.lang.String)java.util.List|getMetadataManager()com.pnfsoftware.jeb.core.units.IMetadataManager|locationToAddress(location:com.pnfsoftware.jeb.core.input.IInputLocation)java.lang.String|addressToLocation(address:java.lang.String)com.pnfsoftware.jeb.core.input.IInputLocation|getComments()java.util.Map|getAddressLabels()java.util.Map|getAddressLabel(address:java.lang.String)java.lang.String|getItemObject(id:long)java.lang.Object|getAddressOfItem(id:long)java.lang.String|getItemAtAddress(address:java.lang.String)long|isValidAddress(address:java.lang.String)boolean|getGlobalActions()java.util.List|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean|executeAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData,notify:boolean)boolean|getItemActions(id:long)java.util.List|canExecuteAction(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext)boolean|prepareExecution(actionContext:com.pnfsoftware.jeb.core.actions.ActionContext,actionData:com.pnfsoftware.jeb.core.actions.IActionData)boolean;
C;0;InternalLogger;com.pnfsoftware.jeb.util.logging;com.pnfsoftware.jeb.util.logging.InternalLogger;com.pnfsoftware.jeb.util.logging.SimpleLogger;;com.pnfsoftware.jeb.util.logging.InternalLogger(name:java.lang.String);log(level:int,raw:boolean,format:java.lang.String,params:java.lang.Object[])void|getName()java.lang.String|debug(arg0:java.lang.String,arg1:java.lang.Object[])void|status(arg0:java.lang.String,arg1:java.lang.Object[])void|error(arg0:java.lang.String,arg1:java.lang.Object[])void|warning(arg0:java.lang.String,arg1:java.lang.Object[])void|trace(arg0:java.lang.String,arg1:java.lang.Object[])void|i(arg0:java.lang.String,arg1:java.lang.Object[])void|warn(arg0:java.lang.String,arg1:java.lang.Object[])void|info(arg0:java.lang.String,arg1:java.lang.Object[])void|setEnabledLevel(arg0:int)void|getEnabledLevel()int|severe(arg0:java.lang.String,arg1:java.lang.Object[])void|catching(arg0:java.lang.Throwable)void|catching(arg0:java.lang.Throwable,arg1:java.lang.String)void|fine(arg0:java.lang.String,arg1:java.lang.Object[])void|catchingSilent(arg0:java.lang.Throwable)void;
C;0;InterruptionException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.InterruptionException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.exceptions.InterruptionException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.InterruptionException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.InterruptionException(message:java.lang.String)|com.pnfsoftware.jeb.core.exceptions.InterruptionException();;
C;0;IrregularFlowData;com.pnfsoftware.jeb.core.units.code.android.controlflow;com.pnfsoftware.jeb.core.units.code.android.controlflow.IrregularFlowData;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.android.controlflow.IrregularFlowData(first:long,last:long,target:long);toString()java.lang.String|getFirstAddress()long|getLastAddress()long|getTargetAddress()long;
C;0;IrregularFlowData;com.pnfsoftware.jeb.core.units.code.asm.cfg;com.pnfsoftware.jeb.core.units.code.asm.cfg.IrregularFlowData;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.cfg.IrregularFlowData(first:long,last:long,target:long);toString()java.lang.String|getFirstAddress()long|getLastAddress()long|getTargetAddress()long;
C;0;ItemClassIdentifiers;com.pnfsoftware.jeb.core.output;com.pnfsoftware.jeb.core.output.ItemClassIdentifiers;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.output.ItemClassIdentifiers[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|getId()int|getById(id:int)com.pnfsoftware.jeb.core.output.ItemClassIdentifiers;DEFAULT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|ARTIFACT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_USELESS:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_DEPRECATED:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_DEBUG:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_NORMAL:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_WARNING:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_ERROR:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_DANGEROUS:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_MALFORMED:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|INFO_CORRUPT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_BYTE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_SHORT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_INTEGER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_LONG:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_FLOAT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_DOUBLE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|COMMENT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|ADDRESS:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|BYTECODE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|DIRECTIVE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|KEYWORD:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MNEMONIC:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|OPCODE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|LABEL:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|PARAMETER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|IDENTIFIER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|NUMBER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CHARACTER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|STRING:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CLASS_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|FIELD_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|METHOD_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|EXTERNAL_CLASS_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|EXTERNAL_FIELD_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|EXTERNAL_METHOD_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|PACKAGE_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|REGISTER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|IMMEDIATE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MNEMONIC_PREFIX:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|ADDRESS_SLACK:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|LABEL_OOR:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|LABEL_ALTERNATE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_UNKNOWN:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_INSTRUCTIONS:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_ROUTINE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_DATA:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_LIBRARY:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_METADATA:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_SLACK:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|CODE_STUB:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_ELEMENT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_ATTRIBUTE_NAME:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_ATTRIBUTE_VALUE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_TEXT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_COMMENT:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_ACTIVE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|MARKUP_OTHER:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|TYPE_PROTOTYPE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|RESULT_SUCCESS:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|RESULT_ERROR:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|DEBUGGING_PC_LINE:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers
C;0;ItemHistory;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ItemHistory;java.lang.Object;;com.pnfsoftware.jeb.util.collect.ItemHistory(cleanHistoryAfterIndex:boolean)|com.pnfsoftware.jeb.util.collect.ItemHistory();add(item:java.lang.Object)void|remove(item:java.lang.Object)boolean|toString()java.lang.String|hasNext()boolean|size()int|position()int|reset()void|hasPrevious()boolean|getPrevious(updatedItem:java.lang.Object)java.lang.Object|getPrevious()java.lang.Object|getNext(updatedItem:java.lang.Object)java.lang.Object|getNext()java.lang.Object|getList()java.util.List;
C;0;ItemList;com.pnfsoftware.jeb.util.encoding.json;com.pnfsoftware.jeb.util.encoding.json.ItemList;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.json.ItemList(s:java.lang.String,sp:java.lang.String,isMultiToken:boolean)|com.pnfsoftware.jeb.util.encoding.json.ItemList(s:java.lang.String,sp:java.lang.String)|com.pnfsoftware.jeb.util.encoding.json.ItemList(s:java.lang.String)|com.pnfsoftware.jeb.util.encoding.json.ItemList();add(i:int,item:java.lang.String)void|add(item:java.lang.String)void|get(i:int)java.lang.String|toString()java.lang.String|toString(sp:java.lang.String)java.lang.String|clear()void|size()int|split(s:java.lang.String,sp:java.lang.String,append:java.util.List,isMultiToken:boolean)void|split(s:java.lang.String,sp:java.lang.String,append:java.util.List)void|addAll(s:java.lang.String,sp:java.lang.String,isMultiToken:boolean)void|addAll(list:com.pnfsoftware.jeb.util.encoding.json.ItemList)void|addAll(s:java.lang.String)void|addAll(s:java.lang.String,sp:java.lang.String)void|getArray()java.lang.String[]|reset()void|getItems()java.util.List|setSP(sp:java.lang.String)void;
C;0;J;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.J;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.events.J[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.events.J|isDecompilerEvent(event:com.pnfsoftware.jeb.util.events.IEvent)boolean|isContextEvent(event:com.pnfsoftware.jeb.util.events.IEvent)boolean|isArtifactEvent(event:com.pnfsoftware.jeb.util.events.IEvent)boolean|isDebuggerEvent(event:com.pnfsoftware.jeb.util.events.IEvent)boolean|isProjectEvent(event:com.pnfsoftware.jeb.util.events.IEvent)boolean|isUnitEvent(event:com.pnfsoftware.jeb.util.events.IEvent)boolean;CoreError:com.pnfsoftware.jeb.core.events.J|Notification:com.pnfsoftware.jeb.core.events.J|FloatingNotification:com.pnfsoftware.jeb.core.events.J|ContextInitialized:com.pnfsoftware.jeb.core.events.J|ContextClosed:com.pnfsoftware.jeb.core.events.J|ContextPropertyChanged:com.pnfsoftware.jeb.core.events.J|ProjectCreated:com.pnfsoftware.jeb.core.events.J|ProjectLoaded:com.pnfsoftware.jeb.core.events.J|ProjectSaved:com.pnfsoftware.jeb.core.events.J|ProjectUnloaded:com.pnfsoftware.jeb.core.events.J|ProjectClosed:com.pnfsoftware.jeb.core.events.J|ProjectDestroyed:com.pnfsoftware.jeb.core.events.J|ProjectPropertyChanged:com.pnfsoftware.jeb.core.events.J|ArtifactProcessed:com.pnfsoftware.jeb.core.events.J|ArtifactPropertyChanged:com.pnfsoftware.jeb.core.events.J|UnitCreated:com.pnfsoftware.jeb.core.events.J|UnitDestroyed:com.pnfsoftware.jeb.core.events.J|UnitProcessed:com.pnfsoftware.jeb.core.events.J|UnitChange:com.pnfsoftware.jeb.core.events.J|UnitPropertyChanged:com.pnfsoftware.jeb.core.events.J|UnitStatusChanged:com.pnfsoftware.jeb.core.events.J|DbgClientNotification:com.pnfsoftware.jeb.core.events.J|DbgAttach:com.pnfsoftware.jeb.core.events.J|DbgDetach:com.pnfsoftware.jeb.core.events.J|DbgRun:com.pnfsoftware.jeb.core.events.J|DbgPause:com.pnfsoftware.jeb.core.events.J|DbgThreadDefault:com.pnfsoftware.jeb.core.events.J|DbgThreadResumed:com.pnfsoftware.jeb.core.events.J|DbgThreadSuspended:com.pnfsoftware.jeb.core.events.J|DbgBreakpointSet:com.pnfsoftware.jeb.core.events.J|DbgBreakpointUnset:com.pnfsoftware.jeb.core.events.J|DbgTargetEvent:com.pnfsoftware.jeb.core.events.J|DecompClientNotification:com.pnfsoftware.jeb.core.events.J|DecompSrcUnitResetEvent:com.pnfsoftware.jeb.core.events.J|PropertyChange:com.pnfsoftware.jeb.core.events.J
C;0;JC;com.pnfsoftware.jeb.client.events;com.pnfsoftware.jeb.client.events.JC;java.lang.Enum;;;values()com.pnfsoftware.jeb.client.events.JC[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.client.events.JC;InitializationComplete:com.pnfsoftware.jeb.client.events.JC|FocusGained:com.pnfsoftware.jeb.client.events.JC|CodeFontChanged:com.pnfsoftware.jeb.client.events.JC|ItemStyleChanged:com.pnfsoftware.jeb.client.events.JC
C;0;JEB2FileDatabase;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabase;java.lang.Object;com.pnfsoftware.jeb.core.dao.IFileDatabase;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabase(basedir:java.lang.String);getDatabaseReader(key:java.lang.String)com.pnfsoftware.jeb.core.dao.IFileDatabaseReader|getDatabaseWriter(key:java.lang.String)com.pnfsoftware.jeb.core.dao.IFileDatabaseWriter|loadFile(key:java.lang.String,version:int)byte[]|getFileWriter(key:java.lang.String)java.io.OutputStream|deleteFile(key:java.lang.String,version:int)boolean|hasFile(key:java.lang.String,version:int)boolean|getFileReader(key:java.lang.String)java.io.InputStream|saveFile(key:java.lang.String,version:int,data:byte[])boolean;EXTENSION:java.lang.String|MARKER:int|TYPE_PROJECT:int|TYPE_QSTATES:int|TYPE_ARTIFACTS:int|TYPE_PROJECT_METADATA:int|FLAG_NONE:int|FLAG_COMPRESS:int|FLAG_ENCRYPT:int
C;0;JEB2FileDatabaseReader;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader;java.lang.Object;com.pnfsoftware.jeb.core.dao.IFileDatabaseReader;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader(f:java.io.File);close()void|getRecordDescription(type:int)com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader$RecordDescription|getRecordDescriptions()java.util.List|getBackingFile()java.io.File|getRecord(r:com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader$RecordDescription)java.io.InputStream|getRecord(type:int)java.io.InputStream|hasBackingFile()boolean;
C;0;JEB2FileDatabaseWriter;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseWriter;java.lang.Object;com.pnfsoftware.jeb.core.dao.IFileDatabaseWriter;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseWriter(f:java.io.File);close()void|endRecord(out:java.io.OutputStream)void|getBackingFile()java.io.File|beginRecord(type:int,flags:int)java.io.OutputStream|hasBackingFile()boolean;
C;0;JSONArray;com.pnfsoftware.jeb.util.encoding.json;com.pnfsoftware.jeb.util.encoding.json.JSONArray;java.util.ArrayList;com.pnfsoftware.jeb.util.encoding.json.JSONAware|com.pnfsoftware.jeb.util.encoding.json.JSONStreamAware;com.pnfsoftware.jeb.util.encoding.json.JSONArray()|com.pnfsoftware.jeb.util.encoding.json.JSONArray(c:java.util.Collection);toString()java.lang.String|writeJSONString(array:float[],out:java.io.Writer)void|writeJSONString(collection:java.util.Collection,out:java.io.Writer)void|writeJSONString(array:long[],out:java.io.Writer)void|writeJSONString(array:java.lang.Object[],out:java.io.Writer)void|writeJSONString(array:double[],out:java.io.Writer)void|writeJSONString(array:char[],out:java.io.Writer)void|writeJSONString(array:boolean[],out:java.io.Writer)void|writeJSONString(array:byte[],out:java.io.Writer)void|writeJSONString(out:java.io.Writer)void|writeJSONString(array:short[],out:java.io.Writer)void|writeJSONString(array:int[],out:java.io.Writer)void|toJSONString(array:long[])java.lang.String|toJSONString(array:boolean[])java.lang.String|toJSONString(array:char[])java.lang.String|toJSONString()java.lang.String|toJSONString(array:java.lang.Object[])java.lang.String|toJSONString(collection:java.util.Collection)java.lang.String|toJSONString(array:byte[])java.lang.String|toJSONString(array:short[])java.lang.String|toJSONString(array:int[])java.lang.String|toJSONString(array:float[])java.lang.String|toJSONString(array:double[])java.lang.String;
I;0;JSONAware;com.pnfsoftware.jeb.util.encoding.json;com.pnfsoftware.jeb.util.encoding.json.JSONAware;;;;toJSONString()java.lang.String;
C;0;JSONObject;com.pnfsoftware.jeb.util.encoding.json;com.pnfsoftware.jeb.util.encoding.json.JSONObject;java.util.HashMap;java.util.Map|com.pnfsoftware.jeb.util.encoding.json.JSONAware|com.pnfsoftware.jeb.util.encoding.json.JSONStreamAware;com.pnfsoftware.jeb.util.encoding.json.JSONObject()|com.pnfsoftware.jeb.util.encoding.json.JSONObject(map:java.util.Map);toString()java.lang.String|toString(key:java.lang.String,value:java.lang.Object)java.lang.String|escape(s:java.lang.String)java.lang.String|writeJSONString(map:java.util.Map,out:java.io.Writer)void|writeJSONString(out:java.io.Writer)void|toJSONString(map:java.util.Map)java.lang.String|toJSONString()java.lang.String;
C;0;JSONParser;com.pnfsoftware.jeb.util.encoding.json.parser;com.pnfsoftware.jeb.util.encoding.json.parser.JSONParser;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.json.parser.JSONParser();reset(in:java.io.Reader)void|reset()void|parse(in:java.io.Reader,containerFactory:com.pnfsoftware.jeb.util.encoding.json.parser.ContainerFactory)java.lang.Object|parse(s:java.lang.String,contentHandler:com.pnfsoftware.jeb.util.encoding.json.parser.ContentHandler)void|parse(s:java.lang.String,contentHandler:com.pnfsoftware.jeb.util.encoding.json.parser.ContentHandler,isResume:boolean)void|parse(in:java.io.Reader,contentHandler:com.pnfsoftware.jeb.util.encoding.json.parser.ContentHandler)void|parse(in:java.io.Reader,contentHandler:com.pnfsoftware.jeb.util.encoding.json.parser.ContentHandler,isResume:boolean)void|parse(s:java.lang.String)java.lang.Object|parse(s:java.lang.String,containerFactory:com.pnfsoftware.jeb.util.encoding.json.parser.ContainerFactory)java.lang.Object|parse(in:java.io.Reader)java.lang.Object|getPosition()int;S_INIT:int|S_IN_FINISHED_VALUE:int|S_IN_OBJECT:int|S_IN_ARRAY:int|S_PASSED_PAIR_KEY:int|S_IN_PAIR_VALUE:int|S_END:int|S_IN_ERROR:int
I;0;JSONStreamAware;com.pnfsoftware.jeb.util.encoding.json;com.pnfsoftware.jeb.util.encoding.json.JSONStreamAware;;;;writeJSONString(out:java.io.Writer)void;
C;0;JSONValue;com.pnfsoftware.jeb.util.encoding.json;com.pnfsoftware.jeb.util.encoding.json.JSONValue;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.json.JSONValue();parse(s:java.lang.String)java.lang.Object|parse(in:java.io.Reader)java.lang.Object|escape(s:java.lang.String)java.lang.String|parseWithException(s:java.lang.String)java.lang.Object|parseWithException(in:java.io.Reader)java.lang.Object|writeJSONString(value:java.lang.Object,out:java.io.Writer)void|toJSONString(value:java.lang.Object)java.lang.String;
C;0;JarBrowser;com.pnfsoftware.jeb.util.encoding.zip;com.pnfsoftware.jeb.util.encoding.zip.JarBrowser;java.lang.Object;com.pnfsoftware.jeb.util.encoding.zip.IGenericJarBrowser;com.pnfsoftware.jeb.util.encoding.zip.JarBrowser(f:java.io.File,verify:boolean);getCertificates(name:java.lang.String)java.security.cert.Certificate[]|close()void|getEntries()java.util.Map|getEntry(name:java.lang.String)com.pnfsoftware.jeb.util.encoding.zip.GenericZipEntry|readEntry(name:java.lang.String)byte[]|getEntryStream(name:java.lang.String)java.io.InputStream;
C;0;JarBrowserApache;com.pnfsoftware.jeb.util.encoding.zip;com.pnfsoftware.jeb.util.encoding.zip.JarBrowserApache;com.pnfsoftware.jeb.util.encoding.zip.ZipBrowserApache;com.pnfsoftware.jeb.util.encoding.zip.IGenericJarBrowser;com.pnfsoftware.jeb.util.encoding.zip.JarBrowserApache(f:java.io.File);getCertificates(name:java.lang.String)java.security.cert.Certificate[];
C;0;JarBrowserOracle;com.pnfsoftware.jeb.util.encoding.zip;com.pnfsoftware.jeb.util.encoding.zip.JarBrowserOracle;java.lang.Object;com.pnfsoftware.jeb.util.encoding.zip.IGenericJarBrowser;com.pnfsoftware.jeb.util.encoding.zip.JarBrowserOracle(f:java.io.File,verify:boolean);getCertificates(name:java.lang.String)java.security.cert.Certificate[]|close()void|getEntries()java.util.Map|getEntry(name:java.lang.String)com.pnfsoftware.jeb.util.encoding.zip.GenericZipEntry|readEntry(name:java.lang.String)byte[]|getEntryStream(name:java.lang.String)java.io.InputStream;
C;0;JavaElementType;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.JavaElementType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.java.JavaElementType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.java.JavaElementType;Annotation:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|AnnotationElement:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|ArithmeticExpression:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|ArrayElement:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Assignment:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Block:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Break:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Call:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Catch:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Class:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|ConditionalExpression:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Constant:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Continue:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Definition:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|DoWhile:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Field:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|For:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Goto:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Identifier:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|If:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|InstanceField:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Label:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Method:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Monitor:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|New:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|NewArray:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Predicate:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Return:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|StaticField:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Switch:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|SynchronizedBlock:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Throw:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|Try:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|TypeReference:com.pnfsoftware.jeb.core.units.code.java.JavaElementType|While:com.pnfsoftware.jeb.core.units.code.java.JavaElementType
C;0;JavaOperatorType;com.pnfsoftware.jeb.core.units.code.java;com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType;ADD:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|SUB:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|MUL:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|DIV:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|REM:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|AND:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|OR:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|XOR:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|SHL:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|SHR:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|USHR:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|NEG:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|NOT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|LOG_IDENT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|LOG_NOT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|LOG_OR:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|LOG_AND:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|INSTANCEOF:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|EQ:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|NE:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|LT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|GE:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|GT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|LE:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_BYTE:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_CHAR:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_SHORT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_INT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_LONG:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_FLOAT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_DOUBLE:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_BOOLEAN:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CAST_TO_OBJECT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType|CONCAT:com.pnfsoftware.jeb.core.units.code.java.JavaOperatorType
C;0;JavaUtil;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.JavaUtil;java.lang.Object;;com.pnfsoftware.jeb.util.base.JavaUtil();isReservedLiteral(s:java.lang.String)boolean|wrapperToPrimitive(wrapperType:java.lang.String)java.lang.String|isValidIdentifierName(s:java.lang.String)boolean|letterToPrimitive(letterType:java.lang.String)java.lang.String|primitiveToWrapper(primitiveType:java.lang.String)java.lang.String|primitiveToLetter(primitiveType:java.lang.String)java.lang.String|isInternalClassname(s:java.lang.String,validate:boolean,elements:java.util.List)boolean|isValidInternalClassname(s:java.lang.String,elements:java.util.List)boolean|isValidInternalClassname(s:java.lang.String)boolean|extractSimpleName(internalClassname:java.lang.String,validate:boolean)java.lang.String|isKeyword(s:java.lang.String)boolean|isClassname(s:java.lang.String,validate:boolean,elements:java.util.List)boolean|isValidClassname(s:java.lang.String)boolean|isValidClassname(s:java.lang.String,elements:java.util.List)boolean|extractFullName(internalClassname:java.lang.String,validate:boolean)java.lang.String;
C;0;JebClientEvent;com.pnfsoftware.jeb.client.events;com.pnfsoftware.jeb.client.events.JebClientEvent;java.lang.Object;com.pnfsoftware.jeb.util.events.IEvent;com.pnfsoftware.jeb.client.events.JebClientEvent(type:com.pnfsoftware.jeb.client.events.JC,data:java.lang.Object,source:com.pnfsoftware.jeb.util.events.IEventSource)|com.pnfsoftware.jeb.client.events.JebClientEvent(type:com.pnfsoftware.jeb.client.events.JC,data:java.lang.Object)|com.pnfsoftware.jeb.client.events.JebClientEvent(type:com.pnfsoftware.jeb.client.events.JC);toString()java.lang.String|getType()java.lang.Object|getType()com.pnfsoftware.jeb.client.events.JC|getTimestamp()long|shouldStopPropagation()boolean|getData()java.lang.Object|getSource()com.pnfsoftware.jeb.util.events.IEventSource;
C;0;JebClientInformation;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.JebClientInformation;java.lang.Object;;com.pnfsoftware.jeb.core.JebClientInformation(clientSignature:java.lang.String);getClientSignature()java.lang.String;
C;0;JebCoreService;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.JebCoreService;java.lang.Object;;com.pnfsoftware.jeb.core.JebCoreService();getInstance(licenseKey:java.lang.String,options:com.pnfsoftware.jeb.core.CoreOptions)com.pnfsoftware.jeb.core.ICoreContext|getInstance(licenseKey:java.lang.String)com.pnfsoftware.jeb.core.ICoreContext|getInstance()com.pnfsoftware.jeb.core.ICoreContext|getExistingInstance()com.pnfsoftware.jeb.core.ICoreContext|notifySilentExceptionToClient(throwable:java.lang.Throwable)void|notifySilentExceptionToClient(throwable:java.lang.Throwable,extradata:java.util.Map)void|notifyTelemetryToClient(eventName:java.lang.String,key0:java.lang.String,value0:java.lang.String)void|notifyTelemetryToClient(eventName:java.lang.String)void|notifyTelemetryToClient(eventName:java.lang.String,properties:java.util.Map)void|notifyTelemetryToClient(eventName:java.lang.String,key0:java.lang.String,value0:java.lang.String,key1:java.lang.String,value1:java.lang.String)void|getDefaultEnginesContext()com.pnfsoftware.jeb.core.IEnginesContext|notifyExceptionToClient(throwable:java.lang.Throwable,flags:int,extradata:java.util.Map)void|notifyExceptionToClient(throwable:java.lang.Throwable)void;
C;0;JebEvent;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.JebEvent;java.lang.Object;com.pnfsoftware.jeb.util.events.IEvent;com.pnfsoftware.jeb.core.events.JebEvent(type:com.pnfsoftware.jeb.core.events.J,data:java.lang.Object,source:com.pnfsoftware.jeb.util.events.IEventSource)|com.pnfsoftware.jeb.core.events.JebEvent(type:com.pnfsoftware.jeb.core.events.J,data:java.lang.Object)|com.pnfsoftware.jeb.core.events.JebEvent(type:com.pnfsoftware.jeb.core.events.J);toString()java.lang.String|getType()java.lang.Object|getType()com.pnfsoftware.jeb.core.events.J|getTimestamp()long|shouldStopPropagation()boolean|setStopPropagation(stopPropagation:boolean)void|getData()java.lang.Object|getSource()com.pnfsoftware.jeb.util.events.IEventSource;
C;0;JebEventSource;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.JebEventSource;java.lang.Object;com.pnfsoftware.jeb.util.events.IEventSource;com.pnfsoftware.jeb.core.events.JebEventSource(parentSource:com.pnfsoftware.jeb.util.events.IEventSource)|com.pnfsoftware.jeb.core.events.JebEventSource();addListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|countListeners()int|removeListener(listener:com.pnfsoftware.jeb.util.events.IEventListener)void|insertListener(index:int,listener:com.pnfsoftware.jeb.util.events.IEventListener)void|setParentSource(parentSource:com.pnfsoftware.jeb.util.events.IEventSource)void|notifyListeners(e:com.pnfsoftware.jeb.util.events.IEvent)void|notifyListeners(e:com.pnfsoftware.jeb.core.events.JebEvent)void|notifyListeners(e:com.pnfsoftware.jeb.core.events.JebEvent,notifyParent:boolean)void|getListeners()java.util.List|getParentSource()com.pnfsoftware.jeb.util.events.IEventSource;
C;0;JebException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.JebException;java.lang.Exception;;com.pnfsoftware.jeb.core.exceptions.JebException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.JebException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.JebException(message:java.lang.String)|com.pnfsoftware.jeb.core.exceptions.JebException();;
C;0;JebIoApiHelper;com.pnfsoftware.jeb.client.jebio;com.pnfsoftware.jeb.client.jebio.JebIoApiHelper;java.lang.Object;;com.pnfsoftware.jeb.client.jebio.JebIoApiHelper(net:com.pnfsoftware.jeb.util.net.INet,credentials:com.pnfsoftware.jeb.client.jebio.UserCredentials);getFile(hash:java.lang.String)com.pnfsoftware.jeb.client.jebio.JebIoObjectFile|getUser()com.pnfsoftware.jeb.client.jebio.JebIoObjectUser|shareFile(file:java.io.File,name:java.lang.String,comments:java.lang.String,determination:com.pnfsoftware.jeb.client.jebio.SampleDetermination,anonymous:boolean)int|checkFileHash(file:java.io.File)long|checkFileHash(hash:java.lang.String)long|createUser(email:java.lang.String,password:java.lang.String)com.pnfsoftware.jeb.client.jebio.JebIoObjectUser;BASE:java.lang.String
C;0;JebIoObjectFile;com.pnfsoftware.jeb.client.jebio;com.pnfsoftware.jeb.client.jebio.JebIoObjectFile;java.lang.Object;;com.pnfsoftware.jeb.client.jebio.JebIoObjectFile();getCreated()java.lang.String|getFilesize()long|getSha1hash()java.lang.String|getSha256hash()java.lang.String|getUserdetails()com.pnfsoftware.jeb.client.jebio.JebIoObjectFile$UserDetails|getFilestatus()int|fromJson(o:java.util.Map)com.pnfsoftware.jeb.client.jebio.JebIoObjectFile|getMd5hash()java.lang.String;
C;0;JebIoObjectUser;com.pnfsoftware.jeb.client.jebio;com.pnfsoftware.jeb.client.jebio.JebIoObjectUser;java.lang.Object;;com.pnfsoftware.jeb.client.jebio.JebIoObjectUser();getCode()long|getCreated()java.lang.String|getUserid()int|fromJson(o:java.util.Map)com.pnfsoftware.jeb.client.jebio.JebIoObjectUser|getApikey()java.lang.String|getReceivecount()int|getLastreceivets()java.lang.String|getLastsharets()java.lang.String|getScore()int|getSharecount()int|isConfirmed()boolean|getUsername()java.lang.String;
C;0;JebIoUtil;com.pnfsoftware.jeb.client.jebio;com.pnfsoftware.jeb.client.jebio.JebIoUtil;java.lang.Object;;com.pnfsoftware.jeb.client.jebio.JebIoUtil();retrieveCredentials(context:com.pnfsoftware.jeb.client.AbstractClientContext)com.pnfsoftware.jeb.client.jebio.UserCredentials|saveCredentials(context:com.pnfsoftware.jeb.client.AbstractClientContext,credentials:com.pnfsoftware.jeb.client.jebio.UserCredentials)void;
C;0;JebNet;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.JebNet;java.lang.Object;;com.pnfsoftware.jeb.client.JebNet();uploadFile(net:com.pnfsoftware.jeb.util.net.INet,f:java.io.File,protectFile:boolean)java.lang.String|uploadFile(net:com.pnfsoftware.jeb.util.net.INet,f:java.io.File,protectFile:boolean,url:java.lang.String)java.lang.String|getSupposedlyGoodEpoch(net:com.pnfsoftware.jeb.util.net.INet)long|post(net:com.pnfsoftware.jeb.util.net.INet,url:java.lang.String,data:java.lang.String)java.lang.String|post(net:com.pnfsoftware.jeb.util.net.INet,url:java.lang.String,data:java.lang.String,serverTimestampArray:long[])java.lang.String;
C;0;JebPythonPluginFactory;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.JebPythonPluginFactory;java.lang.Object;;com.pnfsoftware.jeb.client.script.JebPythonPluginFactory(j:com.pnfsoftware.jeb.client.script.JythonDynamicWrapper,directory:java.lang.String,classname:java.lang.String);close()void|reload()java.lang.Class|getPluginClass()java.lang.Class;
C;0;JebPythonPluginService;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.JebPythonPluginService;java.lang.Object;;com.pnfsoftware.jeb.client.script.JebPythonPluginService(pyLibDirPath:java.lang.String)|com.pnfsoftware.jeb.client.script.JebPythonPluginService(pyLibDir:java.io.File);createFactory(path:java.lang.String)com.pnfsoftware.jeb.client.script.JebPythonPluginFactory|getPluginClass(path:java.lang.String)java.lang.Class;
C;0;JebRuntimeException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;java.lang.RuntimeException;;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.JebRuntimeException(message:java.lang.String)|com.pnfsoftware.jeb.core.exceptions.JebRuntimeException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.exceptions.JebRuntimeException();;
C;0;JythonDynamicWrapper;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.JythonDynamicWrapper;java.lang.Object;;com.pnfsoftware.jeb.client.script.JythonDynamicWrapper(jythonJarFile:java.io.File);PythonInterpreter_init(dict:java.lang.Object,systemState:java.lang.Object)java.lang.Object|PySystemState_init()java.lang.Object|PythonInterpreter_exec(interpreter:java.lang.Object,s:java.lang.String)void|PythonInterpreter_get(interpreter:java.lang.Object,name:java.lang.String)java.lang.Object|PythonInterpreter_cleanup(interpreter:java.lang.Object)void|PythonInterpreter_setOut(interpreter:java.lang.Object,outStream:java.io.Writer)void|PythonInterpreter_initialize(preProperties:java.util.Properties,postProperties:java.util.Properties,argv:java.lang.String[])void|PyObject_tojava(object:java.lang.Object,c:java.lang.Class)java.lang.Object|PyObject_call(object:java.lang.Object)java.lang.Object|isPyException(e:java.lang.Exception)boolean|getJythonJarFile()java.io.File;
C;0;KVNode;com.pnfsoftware.jeb.core.output.tree.impl;com.pnfsoftware.jeb.core.output.tree.impl.KVNode;com.pnfsoftware.jeb.core.output.tree.impl.Node;;com.pnfsoftware.jeb.core.output.tree.impl.KVNode(label:java.lang.String)|com.pnfsoftware.jeb.core.output.tree.impl.KVNode(label:java.lang.String,value:java.lang.Object);setAdditionalLabels(addLabels:java.lang.String[])void|getAdditionalLabels()java.lang.String[];
C;0;KeyOrder;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.KeyOrder;java.lang.Enum;;;values()com.pnfsoftware.jeb.util.collect.KeyOrder[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.collect.KeyOrder;NONE:com.pnfsoftware.jeb.util.collect.KeyOrder|INSERTION:com.pnfsoftware.jeb.util.collect.KeyOrder|NATURAL:com.pnfsoftware.jeb.util.collect.KeyOrder
C;0;LEDataInputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.LEDataInputStream;java.io.FilterInputStream;java.io.DataInput;com.pnfsoftware.jeb.util.io.LEDataInputStream(in:java.io.InputStream);read(ba:byte[],off:int,len:int)int|read(ba:byte[])int|close()void|readLine()java.lang.String|readInt()int|readChar()char|readUTF()java.lang.String|readFloat()float|readFully(ba:byte[],off:int,len:int)void|readFully(ba:byte[])void|readBoolean()boolean|readByte()byte|readDouble()double|readLong()long|readShort()short|readUnsignedByte()int|readUnsignedShort()int|skipBytes(n:int)int|readLongULEB128()long|readIntULEB128()int;
C;0;LEDataOutputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.LEDataOutputStream;java.io.FilterOutputStream;java.io.DataOutput;com.pnfsoftware.jeb.util.io.LEDataOutputStream(out:java.io.OutputStream);size()int|write(b:byte[],off:int,len:int)void|close()void|writeInt(v:int)void|writeChar(v:int)void|writeBytes(s:java.lang.String)void|writeUTF(str:java.lang.String)void|writeFloat(v:float)void|writeShort(v:int)void|writeLong(v:long)void|writeDouble(v:double)void|writeByte(v:int)void|writeBoolean(v:boolean)void|writeChars(s:java.lang.String)void|writeLongULEB128(v:long)void|writeIntULEB128(v:int)void;
C;0;LargeIntHandler;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.LargeIntHandler;java.lang.Object;;;add(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|compare(a:java.math.BigInteger,b:java.math.BigInteger)int|create(val:java.lang.String)java.math.BigInteger|create(bitsize:int)com.pnfsoftware.jeb.util.primitives.LargeIntHandler|truncate(v:java.math.BigInteger)java.math.BigInteger|truncate(val:java.lang.String)java.math.BigInteger|and(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|or(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|xor(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|neg(a:java.math.BigInteger)java.math.BigInteger|getBitsize()int|sub(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|not(a:java.math.BigInteger)java.math.BigInteger|shr(a:java.math.BigInteger,n:int)java.math.BigInteger|shl(a:java.math.BigInteger,n:int)java.math.BigInteger|ror(a:java.math.BigInteger,n:int)java.math.BigInteger|rol(a:java.math.BigInteger,n:int)java.math.BigInteger|sar(a:java.math.BigInteger,n:int)java.math.BigInteger|divS(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|remS(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|remU(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|divU(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|mulS(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|mulU(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|toUnsignedHexString(v:java.math.BigInteger)java.lang.String|div2S(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger[]|div2U(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger[]|clearbit(a:java.math.BigInteger,n:int)java.math.BigInteger|mul2U(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|testbit(a:java.math.BigInteger,n:int)boolean|compareU(a:java.math.BigInteger,b:java.math.BigInteger)int|toUnsigned(a:java.math.BigInteger)java.math.BigInteger|mul2S(a:java.math.BigInteger,b:java.math.BigInteger)java.math.BigInteger|setbit(a:java.math.BigInteger,n:int)java.math.BigInteger;
C;0;LazyDataContainerUnit;com.pnfsoftware.jeb.core.units.impl;com.pnfsoftware.jeb.core.units.impl.LazyDataContainerUnit;com.pnfsoftware.jeb.core.units.impl.ContainerUnit;;com.pnfsoftware.jeb.core.units.impl.LazyDataContainerUnit(root:com.pnfsoftware.jeb.core.units.impl.LazyDataContainerUnit$Entry,unitProcessor:com.pnfsoftware.jeb.core.units.IUnitProcessor,parent:com.pnfsoftware.jeb.core.IUnitCreator,pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager);register(caller:com.pnfsoftware.jeb.core.units.IUnit,entries:java.util.Collection)void|process(processLeaves:boolean)boolean;
C;0;LazyInput;com.pnfsoftware.jeb.core.input;com.pnfsoftware.jeb.core.input.LazyInput;java.lang.Object;com.pnfsoftware.jeb.core.input.IInput;com.pnfsoftware.jeb.core.input.LazyInput(prv:com.pnfsoftware.jeb.core.input.IDataProvider,entryName:java.lang.String,hintEntrySize:long)|com.pnfsoftware.jeb.core.input.LazyInput(prv:com.pnfsoftware.jeb.core.input.IDataProvider,entryName:java.lang.String,hintEntrySize:long,id:int);close()void|getChannel()java.nio.channels.SeekableByteChannel|getHeader()java.nio.ByteBuffer|getCurrentSize()long|getStream()java.io.InputStream;
C;0;Leaf;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Leaf;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Leaf(value:long,bitsize:int,id:int)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Leaf(id:int,bitsize:int,flags:int)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Leaf(id:int,bitsize:int,flags:int,handler:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INodeHandler);toString()java.lang.String;FLAG_POSSIBLE_IMM:int|FLAG_POSSIBLE_VAR:int|FLAG_POSSIBLE_RANGE:int|FLAG_POSSIBLE_NON_TERMINAL:int|FLAG_POSSIBLE_ALL_TERMINALS:int|FLAG_POSSIBLE_ALL:int|id:int|optionalBitsize:int|flags:int|handler:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INodeHandler|value:java.math.BigInteger
C;0;LibraryID;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID;VS2008_MT_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MTd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MD_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MDd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MT_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MTd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MD_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MDd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MT_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MTd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MD_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MDd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MT_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MTd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MD_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MDd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MT_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MTd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MD_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MDd_X86:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MT_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MTd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MD_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2008_MDd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MT_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MTd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MD_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2010_MDd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MT_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MTd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MD_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2013_MDd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MT_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MTd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MD_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2015_MDd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MT_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MTd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MD_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|VS2017_MDd_X64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBC_15_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBM_15_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBZ_15_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBC_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBM_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_LIBZ_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_GNUSTL_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_LIBCPP_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_STLPORT_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR16_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR17_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_GNUSTL_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_LIBCPP_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_STLPORT_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR15_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_GNUSTL_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_LIBCPP_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_STLPORT_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR14_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_GNUSTL_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_LIBCPP_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_STLPORT_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR13_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_GNUSTL_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_LIBCPP_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_STLPORT_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR12_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARM_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARMV7A_HARD:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARMV7A_HARD_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_GNUSTL_ARMV7A_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARM_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARMV7A_HARD:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARMV7A_HARD_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_LIBCPP_ARMV7A_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARM_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARMV7A:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARMV7A_HARD:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARMV7A_HARD_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR11_STLPORT_ARMV7A_THUMB:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBC_16_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBM_16_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBZ_16_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBC_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBM_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR18_LIBZ_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBCPP_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBC_16_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBM_16_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBZ_16_ARM:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBCPP_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBC_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBM_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|NDKR19_LIBZ_21_ARM64:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID
C;0;Licensing;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.Licensing;java.lang.Object;;com.pnfsoftware.jeb.client.Licensing();setLicenseTimestamp(ts:int)void|getExpirationTimestamp()int|getBuildTypeString()java.lang.String|isX86HomeEdition()boolean|getChangeList()java.lang.String|isPerpetual()boolean|allowAnyClient()boolean|getBuildType()int|isReleaseBuild()boolean|canUseCoreAPI()boolean|isFullBuild()boolean|isAirgapBuild()boolean|isIndividualBuild()boolean|isInternetRequired()boolean|isFloatingBuild()boolean|getLicense()java.lang.String|isDemoBuild()boolean|isDebugBuild()boolean|isSubscription()boolean;loaded:int|hasDecompDex:boolean|hasDecompArm:boolean|hasDecompX86:boolean|hasDecompMips:boolean|hasDecompWasm:boolean|hasDecompEvm:boolean|user_name:java.lang.String|user_group:java.lang.String|user_email:java.lang.String|user_id:int|license_id:long|user_count:int|buildkey:java.lang.String|build_type:int
C;0;Line;com.pnfsoftware.jeb.core.output.text.impl;com.pnfsoftware.jeb.core.output.text.impl.Line;java.lang.Object;com.pnfsoftware.jeb.core.output.text.ILine;com.pnfsoftware.jeb.core.output.text.impl.Line(text:java.lang.CharSequence,items:java.util.List,marks:java.util.List)|com.pnfsoftware.jeb.core.output.text.impl.Line(text:java.lang.CharSequence,items:java.util.List)|com.pnfsoftware.jeb.core.output.text.impl.Line(text:java.lang.CharSequence);toString()java.lang.String|getMarks()java.util.List|addMark(mark:com.pnfsoftware.jeb.core.output.text.impl.TextMark)void|getItems()java.util.List|setText(text:java.lang.CharSequence)void|addItem(item:com.pnfsoftware.jeb.core.output.text.impl.TextItem)void|getText()java.lang.CharSequence;
C;0;Lists;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.Lists;java.lang.Object;;com.pnfsoftware.jeb.util.collect.Lists();add(dst:java.util.List,src:java.util.List)java.util.List|get(list:java.util.List,index:int,safeValue:java.lang.Object)java.lang.Object|get(list:java.util.List,index:int)java.lang.Object|subList(list:java.util.List,fromIndex:int)java.util.List|getFirst(list:java.util.List)java.lang.Object|reverse(list:java.util.List)java.util.List|addNonNulls(dst:java.util.List,elts:java.lang.Object[])java.util.List|addNonNulls(dst:java.util.List,src:java.util.List)java.util.List|createArrayList()java.util.ArrayList|createArrayList(elt:java.lang.Object)java.util.ArrayList|reverseIterator(list:java.util.List)java.util.ListIterator;
C;0;LoaderInformation;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.codeobject.ILoaderInformation;com.pnfsoftware.jeb.core.units.codeobject.LoaderInformation();toString()java.lang.String|getImageBase()long|getEntryPoint()long|getImageSize()long|getEndianness()com.pnfsoftware.jeb.util.io.Endianness|getCompilationTimestamp()long|getTargetProcessor()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getTargetSubsystem()com.pnfsoftware.jeb.core.units.codeobject.SubsystemType|getWordSize()int|getOverlayOffset()long|getVersion()java.lang.String|getFlags()int;
C;0;LocalFileHeader;com.pnfsoftware.jeb.util.encoding.zip.fsr;com.pnfsoftware.jeb.util.encoding.zip.fsr.LocalFileHeader;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.zip.fsr.LocalFileHeader();toString()java.lang.String|parse(fc:java.nio.channels.FileChannel,base:int)com.pnfsoftware.jeb.util.encoding.zip.fsr.LocalFileHeader|getFilename()java.lang.String|isEncrypted()boolean;
C;0;LogStatusSink;com.pnfsoftware.jeb.util.logging;com.pnfsoftware.jeb.util.logging.LogStatusSink;java.lang.Object;;com.pnfsoftware.jeb.util.logging.LogStatusSink();update(status:java.lang.CharSequence)void|retrieve()java.lang.String;
C;0;LongLEB128;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.LongLEB128;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.LongLEB128();decodeULEB128(input:java.io.InputStream)com.pnfsoftware.jeb.util.encoding.LongLEB128$DecodedLong|readULEB128(input:java.io.InputStream)long|writeULEB128(out:java.io.OutputStream,v:long)void;
C;0;LongSegment;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.LongSegment;java.lang.Object;com.pnfsoftware.jeb.util.collect.ISegment|java.lang.Comparable;com.pnfsoftware.jeb.util.collect.LongSegment(address:long,size:long);toString()java.lang.String|compareTo(arg0:java.lang.Object)int|compareTo(second:com.pnfsoftware.jeb.util.collect.LongSegment)int|getSize()long|getBegin()java.lang.Comparable|getBegin()java.lang.Long|getEnd()java.lang.Long|getEnd()java.lang.Comparable;
C;0;Longs;com.pnfsoftware.jeb.util.primitives;com.pnfsoftware.jeb.util.primitives.Longs;java.lang.Object;;com.pnfsoftware.jeb.util.primitives.Longs();compareUnsigned(x:long,y:long)int|toUnsignedString(value:long)java.lang.String|toUnsignedBigInteger(v:long)java.math.BigInteger|maxUnsigned(x:long,y:long)long|divUnsigned(dividend:long,divisor:long)long|toInts(v:long)int[]|fromInts(v0:int,v1:int)long|minUnsigned(x:long,y:long)long|remUnsigned(dividend:long,divisor:long)long;
C;0;MapBuilder;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.MapBuilder;java.lang.Object;;com.pnfsoftware.jeb.util.collect.MapBuilder()|com.pnfsoftware.jeb.util.collect.MapBuilder(order:com.pnfsoftware.jeb.util.collect.MapBuilder$Order);put(m:java.util.Map)com.pnfsoftware.jeb.util.collect.MapBuilder|put(key:java.lang.Object,value:java.lang.Object)com.pnfsoftware.jeb.util.collect.MapBuilder|build()java.util.Map;
C;0;Maps;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.Maps;java.lang.Object;;com.pnfsoftware.jeb.util.collect.Maps();get(map:java.util.Map,key:java.lang.Object,safeValue:java.lang.Object)java.lang.Object|get(map:java.util.Map,key:java.lang.Object)java.lang.Object|toMap(key:java.lang.Object,value:java.lang.Object,c:java.lang.Class)java.util.Map|toMap(key:java.lang.Object,value:java.lang.Object)java.util.HashMap|createSortedMapByValue(map:java.util.Map,ascending:boolean)java.util.LinkedHashMap|putNoOverwrite(map:java.util.Map,preferredKey:java.lang.String,value:java.lang.Object)java.lang.String|getSortedValues(map:java.util.Map,ascending:boolean)java.util.List|getSortedValues(map:java.util.Map)java.util.List;
C;0;MarsAnalyticaTracerPlugin;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.MarsAnalyticaTracerPlugin;com.pnfsoftware.jeb.core.AbstractEnginesPlugin;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.emulator.MarsAnalyticaTracerPlugin();load(context:com.pnfsoftware.jeb.core.IEnginesContext)void|execute(context:com.pnfsoftware.jeb.core.IEnginesContext,params:java.util.Map)void|getPluginInformation()com.pnfsoftware.jeb.core.IPluginInformation;
C;0;MathUtil;com.pnfsoftware.jeb.util.math;com.pnfsoftware.jeb.util.math.MathUtil;java.lang.Object;;com.pnfsoftware.jeb.util.math.MathUtil();pow(a:int,b:int)int|almostEquals(a:double,b:double,epsilon:double)boolean|almostEquals(a:double,b:double)boolean|unmaskedShiftRight(v:long,cnt:int)long|unmaskedArithShiftRight(v:long,cnt:int)long|unmaskedShiftLeft(v:long,cnt:int)long|makeInverseMask(bitsize:int)long|makeOverflow(bitsize:int)long|msb(value:long,bitsize:int)int|zeroExtend(value:long,bitsize:int)long|signExtend(value:long,bitsize:int)long|signExtend32(value:long,bitsize:int)long|signExtend32(value:int,bitsize:int)int|makeMask(bitsize:int)long|betweenExclusive(value:long,min:long,max:long)boolean|betweenInclusive(value:long,min:long,max:long)boolean|minPositive(values:int[])int|moduloPositive(a:int,b:int)int|avg(array:short[])double|avg(array:double[])double|avg(array:long[])double|avg(array:float[])double|avg(array:int[])double|avg(collection:java.util.Collection)double|avg(array:byte[])double|avg(array:char[])double|zeroExtend32(value:long,bitsize:int)long|isPowerOfTwo(n:int)boolean|isPowerOfTwo(n:long)boolean;
C;0;MaxOptimizationsCountReachedException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.MaxOptimizationsCountReachedException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.MaxOptimizationsCountReachedException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.MaxOptimizationsCountReachedException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.MaxOptimizationsCountReachedException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.MaxOptimizationsCountReachedException();;
C;0;MemoryAllocEvent;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryAllocEvent;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryAllocEvent(address:long,size:int,protection:int);;
C;0;MemoryEvent;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent(address:long,size:int,protection:int);getAddress()long|getSize()int|getProtection()int;
C;0;MemoryException;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryException;java.io.IOException;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryException();;
C;0;MemoryFileStore;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.MemoryFileStore;java.lang.Object;com.pnfsoftware.jeb.core.dao.IFileStore;com.pnfsoftware.jeb.core.dao.impl.MemoryFileStore();remove(key:java.lang.String)boolean|get(key:java.lang.String)byte[]|put(data:byte[])java.lang.String|put(key:java.lang.String,data:byte[])java.lang.String|list()java.util.List|has(key:java.lang.String)boolean|getStoreLocation()java.lang.String;
C;0;MemoryFreeEvent;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryFreeEvent;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryFreeEvent(address:long,size:int,protection:int);;
C;0;MemoryModelEvent;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEvent;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEvent(eventType:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType,model:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel,eventDetails:java.lang.Object)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEvent(eventType:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType,model:com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel);toString()java.lang.String|getType()com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|getModel()com.pnfsoftware.jeb.core.units.code.asm.analyzer.IMemoryModel|getDetails()java.lang.Object;ttl:int
C;0;MemoryModelEventType;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|isDeepChange()boolean;GENERAL_UPDATE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|ITEM_ADDED:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|ITEM_REMOVED:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|LABEL_UPDATE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|COMMENT_UPDATE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType|REFERENCE_UPDATE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryModelEventType
C;0;MemoryPropertyEvent;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryPropertyEvent;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryPropertyEvent();;
C;0;MemoryProtectionEvent;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryProtectionEvent;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryProtectionEvent(address:long,size:int,protection:int);;
C;0;MemoryRanges;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryRanges;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryRanges(mem:com.pnfsoftware.jeb.core.units.code.asm.memory.IVirtualMemory)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryRanges()|com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryRanges(spaceBits:int);add(begin0:long,end0:long)void|remove(begin0:long,end0:long)void|count()int|toString()java.lang.String|min()java.lang.Long|max()java.lang.Long|clear()void|contains(address0:long)boolean|asList()java.util.List|aggregatedRangesSize()long|getLocalEnd(address0:long)java.lang.Long|getLocalRange(address0:long)com.pnfsoftware.jeb.util.base.Couple|getLocalBegin(address0:long)java.lang.Long|getNextRange(address0:long)com.pnfsoftware.jeb.util.base.Couple|spanSize()long|getPreviousRange(address0:long)com.pnfsoftware.jeb.util.base.Couple;
C;0;MemoryWriteEvent;com.pnfsoftware.jeb.core.units.code.asm.memory;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryWriteEvent;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryEvent;;com.pnfsoftware.jeb.core.units.code.asm.memory.MemoryWriteEvent(address:long,size:int,protection:int);;
C;0;MetadataGroup;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.MetadataGroup;com.pnfsoftware.jeb.core.units.AbstractMetadataGroup;;com.pnfsoftware.jeb.core.units.MetadataGroup(name:java.lang.String,type:com.pnfsoftware.jeb.core.units.MetadataGroupType);getAllData()java.util.Map|setData(address:java.lang.String,data:java.lang.Object)boolean|getData(address:java.lang.String)java.lang.Object|getData(address:java.lang.String,precision:com.pnfsoftware.jeb.core.output.AddressConversionPrecision)java.lang.Object;
C;0;MetadataGroupType;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.MetadataGroupType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.MetadataGroupType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.MetadataGroupType;OPAQUE:com.pnfsoftware.jeb.core.units.MetadataGroupType|STRING:com.pnfsoftware.jeb.core.units.MetadataGroupType|CLASSID:com.pnfsoftware.jeb.core.units.MetadataGroupType|RGB:com.pnfsoftware.jeb.core.units.MetadataGroupType
C;0;MetadataManager;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.MetadataManager;java.lang.Object;com.pnfsoftware.jeb.core.units.IMetadataManager;com.pnfsoftware.jeb.core.units.MetadataManager();getGroupCount()int|getGroupByName(name:java.lang.String)com.pnfsoftware.jeb.core.units.IMetadataGroup|getGroups()java.util.List|addGroup(group:com.pnfsoftware.jeb.core.units.IMetadataGroup)boolean|removeGroup(index:int)boolean|insertGroup(index:int,group:com.pnfsoftware.jeb.core.units.IMetadataGroup)boolean|removeGroupByName(name:java.lang.String)boolean;
C;0;MethodCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.MethodCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates.MethodCoordinates(methodId:int);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getMethodId()int;
C;0;MimeType;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.MimeType;java.lang.Object;;com.pnfsoftware.jeb.util.encoding.MimeType();determineFromContent(input:com.pnfsoftware.jeb.core.input.IInput)java.lang.String;IMAGE_BMP:java.lang.String|IMAGE_CRW:java.lang.String|IMAGE_GIF:java.lang.String|IMAGE_ICO:java.lang.String|IMAGE_JPEG:java.lang.String|IMAGE_PNG:java.lang.String|IMAGE_PSD:java.lang.String|IMAGE_TIFF:java.lang.String|IMAGE_WEBP:java.lang.String|APPLICATION_XML:java.lang.String|APPLICATION_ZIP:java.lang.String|APPLICATION_7Z:java.lang.String|APPLICATION_TAR:java.lang.String|APPLICATION_JSON:java.lang.String|APPLICATION_OCTETSTREAM:java.lang.String|TEXT_PLAIN:java.lang.String|TEXT_HTML:java.lang.String
C;0;MonitorInfoAdapter;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.MonitorInfoAdapter;java.lang.Object;com.pnfsoftware.jeb.util.concurrent.IMonitorInfoProvider;com.pnfsoftware.jeb.util.concurrent.MonitorInfoAdapter(timeout:long,probingPeriod:long);setProbingPeriod(millis:long)void|setTimeout(millis:long)void|getTimeout()long|getProbingPeriod()long|onInterrupt()void;
C;0;MootTelemetryDatabase;com.pnfsoftware.jeb.client.telemetry;com.pnfsoftware.jeb.client.telemetry.MootTelemetryDatabase;java.lang.Object;com.pnfsoftware.jeb.client.telemetry.ITelemetryDatabase;com.pnfsoftware.jeb.client.telemetry.MootTelemetryDatabase();close()void|record(eventName:java.lang.String,key0:java.lang.String,value0:java.lang.String)boolean|record(eventName:java.lang.String,key0:java.lang.String,value0:java.lang.String,key1:java.lang.String,value1:java.lang.String)boolean|record(eventName:java.lang.String,properties:java.util.Map)boolean|record(eventName:java.lang.String)boolean;
C;0;MultiList;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.MultiList;java.lang.Object;;com.pnfsoftware.jeb.util.collect.MultiList();remove(index:int)java.util.List|get(index:int)java.util.List|put(index:int,elt:java.lang.Object)int|toString()java.lang.String|values()java.util.Collection|clear()void|clear(index:int)java.util.List|isEmpty()boolean|size()int|putAll(c:java.util.List)void|removeElement(index:int,value:java.lang.Object)boolean|removeMultipleElements(index:int,check:java.util.function.Predicate)int|putMulti(index:int,values:java.util.Collection)void|indexSet()java.util.NavigableSet|findAllElements(index:int,check:java.util.function.Predicate)java.util.List|findFirstElement(index:int,check:java.util.function.Predicate)java.lang.Object;
C;0;MultiMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.MultiMap;java.lang.Object;;com.pnfsoftware.jeb.util.collect.MultiMap()|com.pnfsoftware.jeb.util.collect.MultiMap(keyOrder:com.pnfsoftware.jeb.util.collect.KeyOrder);remove(key:java.lang.Object)java.util.List|get(key:java.lang.Object,safe:boolean)java.util.List|get(key:java.lang.Object)java.util.List|put(key:java.lang.Object,value:java.lang.Object)int|toString()java.lang.String|values()java.util.Collection|clear()void|isEmpty()boolean|size()int|putAll(m:java.util.Map)void|keySet()java.util.Set|containsKey(key:java.lang.Object)boolean|containsValue(value:java.lang.Object)boolean|removeValue(key:java.lang.Object,value:java.lang.Object)java.lang.Object|createKey(key:java.lang.Object)boolean|putMulti(key:java.lang.Object,values:java.util.Collection)void|keySize()int|getSafe(key:java.lang.Object)java.util.List|removeMulti(key:java.lang.Object,values:java.util.Collection)int;
C;0;MultiSegmentMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.MultiSegmentMap;java.lang.Object;com.pnfsoftware.jeb.util.collect.IMultiSegmentMap;com.pnfsoftware.jeb.util.collect.MultiSegmentMap()|com.pnfsoftware.jeb.util.collect.MultiSegmentMap(comparator:java.util.Comparator);add(segment:com.pnfsoftware.jeb.util.collect.ISegment)com.pnfsoftware.jeb.util.collect.ISegment|clear()void|isEmpty()boolean|size()int|getFirstSegmentContaining(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|getSegmentsContaining(key:java.lang.Comparable)java.util.List|compareKeys(a:java.lang.Comparable,b:java.lang.Comparable)int;
C;0;NativeAnalyzerException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.NativeAnalyzerException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.exceptions.NativeAnalyzerException()|com.pnfsoftware.jeb.core.exceptions.NativeAnalyzerException(message:java.lang.String);;
C;0;NativeAttributeSignerID;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeAttributeSignerID;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeAttributeSignerID[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeAttributeSignerID;UNKNOWN:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeAttributeSignerID|COMMENT:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeAttributeSignerID|LABEL:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeAttributeSignerID
C;0;NativeCodeAnalyzerExtensionResult;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult(result:java.lang.Object,continuationStatus:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus)|com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult(result:java.lang.Object);stop()com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|stop(result:boolean)com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getResult()java.lang.Object|ignore()com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|getContinuationStatus()com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult$ContinuationStatus|continue_()com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult;TRUE_STOP:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|TRUE_CONTINUE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|FALSE_STOP:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|FALSE_CONTINUE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|FALSE_IGNORE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult|ZEROL_CONTINUE:com.pnfsoftware.jeb.core.units.code.asm.analyzer.NativeCodeAnalyzerExtensionResult
C;0;NativeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates;com.pnfsoftware.jeb.core.output.code.coordinates.NativeCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.code.coordinates.ICodeCoordinates;com.pnfsoftware.jeb.core.output.code.coordinates.NativeCoordinates(address:long);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getAddress()long;
C;0;NativeDecompilationStage;com.pnfsoftware.jeb.core.units.code.asm.decompiler;com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|getId()int;UNKNOWN:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|IR_RAW_CONVERSION_COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|IR_CONVERSION_COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|SIMULATION_COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|STACK_ANALYSIS_COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|LIFTING_COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage|COMPLETED:com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage
C;0;NativeDisassemblyProperties;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.NativeDisassemblyProperties;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.render.NativeDisassemblyProperties();getShowSpaceBetweenBlocks()java.lang.Boolean|setShowSpaceBetweenBlocks(showSpaceBetweenBlocks:java.lang.Boolean)void|getGapRawIntegerSize()java.lang.Integer|getCharBreak64BitAddresses()java.lang.String|getGapPreferRawFormatting()java.lang.Boolean|setGapPreferRawFormatting(gapPreferRawFormatting:java.lang.Boolean)void|setLabelAreaLength(labelAreaLength:java.lang.Integer)void|getBlockXrefsCount()java.lang.Integer|setShowBytesCount(showBytesCount:java.lang.Integer)void|setShowSegmentHeaders(showSegmentHeaders:java.lang.Boolean)void|getInstructionAreaLength()java.lang.Integer|setBlockXrefsCount(blockXrefsCount:java.lang.Integer)void|setRoutineSeparatorLength(routineSeparatorLength:java.lang.Integer)void|setInstructionAreaLength(instructionAreaLength:java.lang.Integer)void|getGapRawBytesPerLine()java.lang.Integer|getLabelAreaLength()java.lang.Integer|getRoutineSeparatorLength()java.lang.Integer|getShowBytesCount()java.lang.Integer|getShowSegmentHeaders()java.lang.Boolean|setGapRawBytesPerLine(gapRawBytesPerLine:java.lang.Integer)void|setGapRawIntegerSize(gapRawIntegerSize:java.lang.Integer)void|setCharBreak64BitAddresses(charBreak64BitAddresses:java.lang.String)void|setShowAddresses(showAddresses:java.lang.Boolean)void|getShowAddresses()java.lang.Boolean;
C;0;NativeFeatureSignerID;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID;UNKNOWN:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID|ROUTINE_CODE_HASH:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID|CALLED_ROUTINE_NAME:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID|ROUTINE_SIZE:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID|ROUTINE_1B_CTE:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID|CALLED_ROUTINE_NAME_ONLY_EXTERN:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeFeatureSignerID
C;0;NativeItemEvent;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEvent;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEvent(eventType:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType,item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem,eventSubtype:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType,eventDetails:java.lang.Object)|com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEvent(eventType:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType,item:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem);toString()java.lang.String|getType()com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType|getItem()com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|getSubtype()com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType|getDetails()java.lang.Object;ttl:int
C;0;NativeItemEventSubType;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType;RENAMED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType|ATTRIBUTE_SET:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType|ATTRIBUTE_REMOVED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType|STRUCT_FIELD_ADDED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType|STRUCT_FIELD_REMOVED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType|STRUCT_FIELD_RENAMED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventSubType
C;0;NativeItemEventType;com.pnfsoftware.jeb.core.units.code.asm.items;com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType|isDeepChange()boolean;UPDATED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType|MODIFIED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType|DISPOSED:com.pnfsoftware.jeb.core.units.code.asm.items.NativeItemEventType
C;0;NativeSignatureDBManager;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureDBManager;java.lang.Object;com.pnfsoftware.jeb.util.events.IEventListener;;getInstance(enginesContext:com.pnfsoftware.jeb.core.IEnginesContext)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureDBManager|match(_gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,routines:java.util.Collection,uniqueMatchOnly:boolean,maximumConfidenceLevel:boolean,includeAlreadyMatched:boolean)java.util.List|getAvailablePackages()java.util.List|removeAllPackages()void|getLoadedPackages()java.util.List|deactivateAutoSigningMode(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|isAutoSigningModeActivated(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)boolean|createUserPackage(procType:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType,packageName:java.lang.String,packageDescription:java.lang.String,packageAuthor:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry|getUserCreatedPackages(procType:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType)java.util.List|getUserCreatedPackages()java.util.List|getUserSelectedPackage(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry|getNumberLoadedSigs()int|getUserCreatedPackageFolder()java.io.File|unregisterAnalyzer(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|setUserSelectedPackage(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,userSelectedPackage:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry)void|activateAutoSigningMode(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|updateOnDiskPackages(updateExistingSignatures:boolean)void|getSignatureGenerator()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureGenerator|addFolder(folder:java.io.File,doRescan:boolean)void|rescan(deleteOldEntries:boolean)void|rescan()void|removeAllFolders()void|isActive()boolean|removeFolder(folder:java.io.File,doRescan:boolean)void|loadPackages(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|setActive(isActive:boolean)void|loadPackage(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,entry:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry)boolean|loadPackage(entry:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry,doMatching:boolean)boolean|registerAnalyzer(gca:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer)void|onEvent(e:com.pnfsoftware.jeb.util.events.IEvent)void;SIGLIB_EXTENSION:java.lang.String|SIGLIB_USER_PACKAGE_FOLDER:java.lang.String
C;0;NativeSignatureFlags;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureFlags;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureFlags(type:com.pnfsoftware.jeb.core.units.code.asm.sig.SignatureTargetType)|com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureFlags(type:com.pnfsoftware.jeb.core.units.code.asm.sig.SignatureTargetType,meaningfulName:boolean);equals(obj:java.lang.Object)boolean|hashCode()int|hasMeaningfulTargetName()boolean|getTargetType()com.pnfsoftware.jeb.core.units.code.asm.sig.SignatureTargetType;
C;0;NativeSignatureGenerator;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureGenerator;java.lang.Object;;;getInstance(defaultStrategy:com.pnfsoftware.jeb.core.units.code.asm.sig.ISigningStrategy)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureGenerator|generateSignature(analyzer:com.pnfsoftware.jeb.core.units.code.asm.analyzer.INativeCodeAnalyzer,routine:com.pnfsoftware.jeb.core.units.code.asm.items.INativeMethodItem,clientProvidedFeatureSigners:java.util.Set,clientProvidedAttributeSigners:java.util.Set)com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature;
C;0;NativeSignatureMatchResult;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureMatchResult;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureMatchResult(target:com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem,signatures:java.util.List,completeMatch:boolean,confidenceLevel:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getTarget()com.pnfsoftware.jeb.core.units.code.asm.items.INativeItem|getConfidenceLevel()com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature$ConfidenceLevel|getSignatures()java.util.List|isComplete()boolean;
C;0;NativeSignaturePackageEntry;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry(file:java.io.File,metadata:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageMetadata);toString()java.lang.String|getSize()long|getFile()java.io.File|incrementOpenHandle()void|addSignatureToWrite(sig:com.pnfsoftware.jeb.core.units.code.asm.sig.INativeSignature)void|clearSignaturesToWrite()void|decrementOpenHandle()void|getSignatureToWrite()java.util.List|getMetadata()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageMetadata|isUserCreated()boolean|isActive()boolean|setStatus(status:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry$PackageStatus)void|isLoadedInMemory()boolean|getStatus()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry$PackageStatus;
C;0;NativeSignaturePackageIDs;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageIDs;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageIDs();;UUID_SIGLIB_USER_PACKAGE:int|UUID_SIGLIB_MIRAI_MIPS:int|UUID_SIGLIB_VS2008_MD_X64:int|UUID_SIGLIB_VS2008_MD_X86:int|UUID_SIGLIB_VS2008_MDd_X64:int|UUID_SIGLIB_VS2008_MDd_X86:int|UUID_SIGLIB_VS2008_MT_X64:int|UUID_SIGLIB_VS2008_MT_X86:int|UUID_SIGLIB_VS2008_MTd_X64:int|UUID_SIGLIB_VS2008_MTd_X86:int|UUID_SIGLIB_VS2010_MD_X64:int|UUID_SIGLIB_VS2010_MD_X86:int|UUID_SIGLIB_VS2010_MDd_X64:int|UUID_SIGLIB_VS2010_MDd_X86:int|UUID_SIGLIB_VS2010_MT_X64:int|UUID_SIGLIB_VS2010_MT_X86:int|UUID_SIGLIB_VS2010_MTd_X64:int|UUID_SIGLIB_VS2010_MTd_X86:int|UUID_SIGLIB_VS2013_MD_X64:int|UUID_SIGLIB_VS2013_MD_X86:int|UUID_SIGLIB_VS2013_MDd_X64:int|UUID_SIGLIB_VS2013_MDd_X86:int|UUID_SIGLIB_VS2013_MT_X64:int|UUID_SIGLIB_VS2013_MT_X86:int|UUID_SIGLIB_VS2013_MTd_X64:int|UUID_SIGLIB_VS2013_MTd_X86:int|UUID_SIGLIB_VS2015_MD_X64:int|UUID_SIGLIB_VS2015_MD_X86:int|UUID_SIGLIB_VS2015_MDd_X64:int|UUID_SIGLIB_VS2015_MDd_X86:int|UUID_SIGLIB_VS2015_MT_X64:int|UUID_SIGLIB_VS2015_MT_X86:int|UUID_SIGLIB_VS2015_MTd_X64:int|UUID_SIGLIB_VS2015_MTd_X86:int|UUID_SIGLIB_VS2017_MD_X64:int|UUID_SIGLIB_VS2017_MD_X86:int|UUID_SIGLIB_VS2017_MDd_X64:int|UUID_SIGLIB_VS2017_MDd_X86:int|UUID_SIGLIB_VS2017_MT_X64:int|UUID_SIGLIB_VS2017_MT_X86:int|UUID_SIGLIB_VS2017_MTd_X64:int|UUID_SIGLIB_VS2017_MTd_X86:int|UUID_SIGLIB_NDK_R17_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R17_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R17_LIBCPP_X86:int|UUID_SIGLIB_NDK_R17_LIBCPP_X64:int|UUID_SIGLIB_NDK_R17_STLPORT_ARM:int|UUID_SIGLIB_NDK_R17_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R17_STLPORT_X86:int|UUID_SIGLIB_NDK_R17_STLPORT_X64:int|UUID_SIGLIB_NDK_R17_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R17_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R17_LIBM_15_X86:int|UUID_SIGLIB_NDK_R17_LIBM_15_X64:int|UUID_SIGLIB_NDK_R17_ZLIB_15_ARM:int|UUID_SIGLIB_NDK_R17_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R17_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R17_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R17_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R17_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R17_GNUSTL_X86:int|UUID_SIGLIB_NDK_R17_GNUSTL_X64:int|UUID_SIGLIB_NDK_R16_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R16_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R16_LIBCPP_X86:int|UUID_SIGLIB_NDK_R16_LIBCPP_X64:int|UUID_SIGLIB_NDK_R16_STLPORT_ARM:int|UUID_SIGLIB_NDK_R16_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R16_STLPORT_X86:int|UUID_SIGLIB_NDK_R16_STLPORT_X64:int|UUID_SIGLIB_NDK_R16_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R16_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R16_LIBM_15_X86:int|UUID_SIGLIB_NDK_R16_LIBM_15_X64:int|UUID_SIGLIB_NDK_R16_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R16_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R16_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R16_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R16_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R16_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R16_GNUSTL_ARM_V7A:int|UUID_SIGLIB_NDK_R16_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R16_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R15_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R15_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R15_LIBCPP_X86:int|UUID_SIGLIB_NDK_R15_LIBCPP_X64:int|UUID_SIGLIB_NDK_R15_STLPORT_ARM:int|UUID_SIGLIB_NDK_R15_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R15_STLPORT_X86:int|UUID_SIGLIB_NDK_R15_STLPORT_X64:int|UUID_SIGLIB_NDK_R15_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R15_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R15_LIBM_15_X86:int|UUID_SIGLIB_NDK_R15_LIBM_15_X64:int|UUID_SIGLIB_NDK_R15_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R15_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R15_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R15_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R15_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R15_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R15_GNUSTL_ARM_V7A:int|UUID_SIGLIB_NDK_R15_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R15_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R14_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R14_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R14_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R14_LIBCPP_X86:int|UUID_SIGLIB_NDK_R14_LIBCPP_X64:int|UUID_SIGLIB_NDK_R14_STLPORT_ARM:int|UUID_SIGLIB_NDK_R14_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R14_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R14_STLPORT_X86:int|UUID_SIGLIB_NDK_R14_STLPORT_X64:int|UUID_SIGLIB_NDK_R14_GNUSTL_ARM_V7A:int|UUID_SIGLIB_NDK_R14_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R14_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R14_GNUSTL_X86:int|UUID_SIGLIB_NDK_R14_GNUSTL_X64:int|UUID_SIGLIB_NDK_R14_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R14_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R14_LIBM_15_X86:int|UUID_SIGLIB_NDK_R14_LIBM_15_X64:int|UUID_SIGLIB_NDK_R14_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R14_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R14_ZLIB_21_X86:int|UUID_SIGLIB_NDK_R14_ZLIB_21_X64:int|UUID_SIGLIB_NDK_R14_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R14_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R14_LIBC_15_X86:int|UUID_SIGLIB_NDK_R14_LIBC_21_X64:int|UUID_SIGLIB_NDK_R13_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R13_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R13_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R13_LIBCPP_X86:int|UUID_SIGLIB_NDK_R13_LIBCPP_X64:int|UUID_SIGLIB_NDK_R13_STLPORT_ARM:int|UUID_SIGLIB_NDK_R13_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R13_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R13_STLPORT_X86:int|UUID_SIGLIB_NDK_R13_STLPORT_X64:int|UUID_SIGLIB_NDK_R13_GNUSTL_ARM_V7A:int|UUID_SIGLIB_NDK_R13_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R13_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R13_GNUSTL_X86:int|UUID_SIGLIB_NDK_R13_GNUSTL_X64:int|UUID_SIGLIB_NDK_R13_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R13_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R13_LIBM_15_X86:int|UUID_SIGLIB_NDK_R13_LIBM_15_X64:int|UUID_SIGLIB_NDK_R13_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R13_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R13_ZLIB_21_X86:int|UUID_SIGLIB_NDK_R13_ZLIB_21_X64:int|UUID_SIGLIB_NDK_R13_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R13_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R13_LIBC_15_X86:int|UUID_SIGLIB_NDK_R13_LIBC_21_X64:int|UUID_SIGLIB_NDK_R12_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R12_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R12_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R12_LIBCPP_X86:int|UUID_SIGLIB_NDK_R12_LIBCPP_X64:int|UUID_SIGLIB_NDK_R12_STLPORT_ARM:int|UUID_SIGLIB_NDK_R12_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R12_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R12_STLPORT_X86:int|UUID_SIGLIB_NDK_R12_STLPORT_X64:int|UUID_SIGLIB_NDK_R12_GNUSTL_ARM_V7A:int|UUID_SIGLIB_NDK_R12_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R12_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R12_GNUSTL_X86:int|UUID_SIGLIB_NDK_R12_GNUSTL_X64:int|UUID_SIGLIB_NDK_R12_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R12_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R12_LIBM_15_X86:int|UUID_SIGLIB_NDK_R12_LIBM_15_X64:int|UUID_SIGLIB_NDK_R12_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R12_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R12_ZLIB_21_X86:int|UUID_SIGLIB_NDK_R12_ZLIB_21_X64:int|UUID_SIGLIB_NDK_R12_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R12_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R12_LIBC_15_X86:int|UUID_SIGLIB_NDK_R12_LIBC_21_X64:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM_THUMB:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM_V7A_THUMB:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM_V7A_HARD:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM_V7A_HARD_THUMB:int|UUID_SIGLIB_NDK_R11_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R11_LIBCPP_X86:int|UUID_SIGLIB_NDK_R11_LIBCPP_X64:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM_THUMB:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM_V7A_THUMB:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM_V7A_HARD:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM_V7A_HARD_THUMB:int|UUID_SIGLIB_NDK_R11_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R11_STLPORT_X86:int|UUID_SIGLIB_NDK_R11_STLPORT_X64:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM_V7A:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM_V7A_THUMB:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM_THUMB:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM_V7A_HARD:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM_V7A_HARD_THUMB:int|UUID_SIGLIB_NDK_R11_GNUSTL_ARM64:int|UUID_SIGLIB_NDK_R11_GNUSTL_X86:int|UUID_SIGLIB_NDK_R11_GNUSTL_X64:int|UUID_SIGLIB_NDK_R11_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R11_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R11_LIBM_15_X86:int|UUID_SIGLIB_NDK_R11_LIBM_15_X64:int|UUID_SIGLIB_NDK_R11_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R11_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R11_ZLIB_21_X86:int|UUID_SIGLIB_NDK_R11_ZLIB_21_X64:int|UUID_SIGLIB_NDK_R11_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R11_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R11_LIBC_15_X86:int|UUID_SIGLIB_NDK_R11_LIBC_21_X64:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM_THUMB:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM_V7A:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM_V7A_THUMB:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM_V7A_HARD:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM_V7A_HARD_THUMB:int|UUID_SIGLIB_NDK_R10_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R10_LIBCPP_X86:int|UUID_SIGLIB_NDK_R10_LIBCPP_X64:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM_THUMB:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM_V7A:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM_V7A_THUMB:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM_V7A_HARD:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM_V7A_HARD_THUMB:int|UUID_SIGLIB_NDK_R10_STLPORT_ARM64:int|UUID_SIGLIB_NDK_R10_STLPORT_X86:int|UUID_SIGLIB_NDK_R10_STLPORT_X64:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_THUMB_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_THUMB_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_HARD_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_HARD_THUMB_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM64_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_X86_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_X64_4_8:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_THUMB_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_THUMB_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_HARD_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM_V7A_HARD_THUMB_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_ARM64_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_X86_4_9:int|UUID_SIGLIB_NDK_R10_GNUSTL_X64_4_9:int|UUID_SIGLIB_NDK_R10_LIBM_15_ARM:int|UUID_SIGLIB_NDK_R10_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R10_LIBM_15_X86:int|UUID_SIGLIB_NDK_R10_LIBM_15_X64:int|UUID_SIGLIB_NDK_R10_ZLIB_21_ARM:int|UUID_SIGLIB_NDK_R10_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R10_ZLIB_21_X86:int|UUID_SIGLIB_NDK_R10_ZLIB_21_X64:int|UUID_SIGLIB_NDK_R10_LIBC_15_ARM:int|UUID_SIGLIB_NDK_R10_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R10_LIBC_15_X86:int|UUID_SIGLIB_NDK_R10_LIBC_21_X64:int|UUID_SIGLIB_NDK_R18_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R18_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R18_LIBCPP_X86:int|UUID_SIGLIB_NDK_R18_LIBCPP_X64:int|UUID_SIGLIB_NDK_R18_LIBM_16_ARM:int|UUID_SIGLIB_NDK_R18_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R18_ZLIB_16_ARM:int|UUID_SIGLIB_NDK_R18_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R18_LIBC_16_ARM:int|UUID_SIGLIB_NDK_R18_LIBC_21_ARM64:int|UUID_SIGLIB_NDK_R19_LIBCPP_ARM:int|UUID_SIGLIB_NDK_R19_LIBCPP_ARM64:int|UUID_SIGLIB_NDK_R19_LIBCPP_X86:int|UUID_SIGLIB_NDK_R19_LIBCPP_X64:int|UUID_SIGLIB_NDK_R19_LIBM_16_ARM:int|UUID_SIGLIB_NDK_R19_LIBM_21_ARM64:int|UUID_SIGLIB_NDK_R19_ZLIB_16_ARM:int|UUID_SIGLIB_NDK_R19_ZLIB_21_ARM64:int|UUID_SIGLIB_NDK_R19_LIBC_16_ARM:int|UUID_SIGLIB_NDK_R19_LIBC_21_ARM64:int
C;0;NativeSignaturePackageMetadata;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageMetadata;java.lang.Object;;;toString()java.lang.String|getName()java.lang.String|create(proctype:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType,name:java.lang.String,uuid:int,version:int,description:java.lang.String,author:java.lang.String,targetCompiler:com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICompiler,libraryId:com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageMetadata|getCreationTimestamp()long|getTargetCompiler()com.pnfsoftware.jeb.core.units.code.asm.analyzer.ICompiler|getTargetProcessorType()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|getAuthor()java.lang.String|getLibraryId()com.pnfsoftware.jeb.core.units.code.asm.analyzer.LibraryID|getUuid()int|getVersion()int|getDescription()java.lang.String;
C;0;NativeSignatureScopeException;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureScopeException;com.pnfsoftware.jeb.core.exceptions.NotImplementedException;;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignatureScopeException(string:java.lang.String);;
C;0;NativeTypeException;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.type.NativeTypeException();;
C;0;NativeTypeIdProvider;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.NativeTypeIdProvider;com.pnfsoftware.jeb.util.serialization.AbstractTypeIdProvider;;;getInstance()com.pnfsoftware.jeb.util.serialization.ITypeIdProvider|loadTypes(map:java.util.Map)void;
C;0;Net;com.pnfsoftware.jeb.util.net;com.pnfsoftware.jeb.util.net.Net;java.lang.Object;com.pnfsoftware.jeb.util.net.INet;com.pnfsoftware.jeb.util.net.Net()|com.pnfsoftware.jeb.util.net.Net(net0:com.pnfsoftware.jeb.util.net.Net);query(url:java.lang.String,urlParams:java.util.Map,serverHeaders:java.util.Map)java.lang.String|query(url:java.lang.String)java.lang.String|query(url:java.lang.String,parameters:java.util.Map)java.lang.String|duplicate()com.pnfsoftware.jeb.util.net.INet|getConnectTimeout()int|getReadTimeout()int|setConnectTimeout(timeout:int)void|setReadTimeout(timeout:int)void|setGlobalProxyInformation(proxyinfo:com.pnfsoftware.jeb.util.net.NetProxyInfo)void|getProxyInformation()com.pnfsoftware.jeb.util.net.NetProxyInfo|getGlobalProxyInformation()com.pnfsoftware.jeb.util.net.NetProxyInfo|isConnectedToInternet()boolean|isConnectedToNetwork()boolean|convertHttpDateToEpoch(dateString:java.lang.String)long|getSecureSocketInfo()com.pnfsoftware.jeb.util.net.SecureSocketInfo|setSecureSocketInfo(info:com.pnfsoftware.jeb.util.net.SecureSocketInfo)void|queryBinary(url:java.lang.String,parameters:java.util.Map)byte[]|queryBinary(url:java.lang.String,urlParams:java.util.Map,serverHeaders:java.util.Map)byte[]|queryBinary(url:java.lang.String,urlParams:java.util.Map,serverHeaders:java.util.Map,progressCallback:com.pnfsoftware.jeb.util.base.IProgressCallback)byte[]|queryBinary(url:java.lang.String)byte[]|downloadBinary(dstfile:java.io.File,url:java.lang.String,urlParams:java.util.Map,serverHeaders:java.util.Map,progressCallback:com.pnfsoftware.jeb.util.base.IProgressCallback)long|setUserAgent(userAgent:java.lang.String)void|getWriteTimeout()int|setWriteTimeout(timeout:int)void|getUserAgent()java.lang.String|post(url:java.lang.String,urlParams:java.util.Map,bodyParams:java.util.Map,serverHeaders:java.util.Map)java.lang.String|post(url:java.lang.String,urlParams:java.util.Map,bodyParams:java.util.Map)java.lang.String|postMultipart(url:java.lang.String,formParams:java.util.Map,formFiles:java.util.Map,serverHeaders:java.util.Map)java.lang.String|postMultipart(url:java.lang.String,formParams:java.util.Map,formFiles:java.util.Map)java.lang.String;
C;0;NetProxyInfo;com.pnfsoftware.jeb.util.net;com.pnfsoftware.jeb.util.net.NetProxyInfo;java.lang.Object;;com.pnfsoftware.jeb.util.net.NetProxyInfo(typestr:java.lang.String,hostname:java.lang.String,port:int,user:java.lang.String,password:java.lang.String)|com.pnfsoftware.jeb.util.net.NetProxyInfo(typestr:java.lang.String,hostname:java.lang.String,port:int)|com.pnfsoftware.jeb.util.net.NetProxyInfo(typestr:java.lang.String,hostname:java.lang.String,port:int,user:java.lang.String,password:java.lang.String,rawWhitelist:java.lang.String);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getType()java.lang.String|getPort()int|parse(s:java.lang.String)com.pnfsoftware.jeb.util.net.NetProxyInfo|hasCredentials()boolean|isWhitelisted(url:java.lang.String)boolean|getProxy()java.net.Proxy|getAuthenticator()okhttp3.Authenticator|getUser()java.lang.String|isProxy()boolean|getHostname()java.lang.String|getProxyTypeFromIndex(index:int)java.lang.String|getProxyTypesWithDescriptions()java.util.List|getRecordedHostname()java.lang.String|getRecordedPassword()java.lang.String|getRecordedWhitelist()java.lang.String|getRecordedPort()int|getRecordedUser()java.lang.String|getProxyTypes()java.util.List|getTypeIndex()int|getWhitelist()java.lang.String|getPassword()java.lang.String;INDEX_DIRECT:int|INDEX_HTTP:int|INDEX_SOCKS:int|TYPE_DIRECT:java.lang.String|TYPE_HTTP:java.lang.String|TYPE_SOCKS:java.lang.String
C;0;NewerMethodIllegalCallException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.NewerMethodIllegalCallException;com.pnfsoftware.jeb.core.exceptions.JebRuntimeException;;com.pnfsoftware.jeb.core.exceptions.NewerMethodIllegalCallException();;
C;0;Node;com.pnfsoftware.jeb.core.output.tree.impl;com.pnfsoftware.jeb.core.output.tree.impl.Node;java.lang.Object;com.pnfsoftware.jeb.core.output.tree.IActionableNode;com.pnfsoftware.jeb.core.output.tree.impl.Node(label:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers,itemId:long,flags:int,initialExpansion:int)|com.pnfsoftware.jeb.core.output.tree.impl.Node(label:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers,itemId:long,flags:int)|com.pnfsoftware.jeb.core.output.tree.impl.Node(label:java.lang.String,classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers)|com.pnfsoftware.jeb.core.output.tree.impl.Node(label:java.lang.String);setItemFlags(flags:int)void|setItemId(itemId:long)void|setClassId(classId:com.pnfsoftware.jeb.core.output.ItemClassIdentifiers)void|insertChild(index:int,child:com.pnfsoftware.jeb.core.output.tree.impl.Node)void|setInitialExpansion(expansionLevel:int)void|getAdditionalLabels()java.lang.String[]|getInitialExpansion()int|getItemId()long|getClassId()com.pnfsoftware.jeb.core.output.ItemClassIdentifiers|getItemFlags()int|setLabel(label:java.lang.String)void|getLabel()java.lang.String|getChild(index:int)com.pnfsoftware.jeb.core.output.tree.impl.Node|getChildren()java.util.List|removeChild(index:int)void|removeChild(child:com.pnfsoftware.jeb.core.output.tree.impl.Node)void|addChild(child:com.pnfsoftware.jeb.core.output.tree.impl.Node)void;
C;0;Node;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Node;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Node(operator:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O,opnds:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode[])|com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.Node(opgrp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.OGroup,opnds:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode[]);toString()java.lang.String;operator:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|opgrp:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.OGroup|opnds:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.INode[]
C;1;Node;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.CFBytesTrie.Node;java.lang.Object;;com.pnfsoftware.jeb.util.collect.CFBytesTrie$Node();;
C;0;NodeCoordinates;com.pnfsoftware.jeb.core.output.tree.impl;com.pnfsoftware.jeb.core.output.tree.impl.NodeCoordinates;java.lang.Object;com.pnfsoftware.jeb.core.output.tree.INodeCoordinates;com.pnfsoftware.jeb.core.output.tree.impl.NodeCoordinates(path:java.util.List);toString()java.lang.String|getPath()java.util.List;
C;0;NoopInputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.NoopInputStream;java.io.FilterInputStream;;com.pnfsoftware.jeb.util.io.NoopInputStream(in:java.io.InputStream);;
C;0;NoopOutputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.NoopOutputStream;java.io.FilterOutputStream;;com.pnfsoftware.jeb.util.io.NoopOutputStream(out:java.io.OutputStream);;
C;0;NotImplementedException;com.pnfsoftware.jeb.core.exceptions;com.pnfsoftware.jeb.core.exceptions.NotImplementedException;com.pnfsoftware.jeb.core.exceptions.JebException;;com.pnfsoftware.jeb.core.exceptions.NotImplementedException()|com.pnfsoftware.jeb.core.exceptions.NotImplementedException(message:java.lang.String);;
C;1;NotationType;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.NumberFormatter.NotationType;java.lang.Enum;;;values()com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType|prefix()java.lang.String|suffix()java.lang.String;_h_suffix:com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType|_0x_prefix:com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType|_none:com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType
C;0;NotificationType;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.NotificationType;java.lang.Enum;;;toString()java.lang.String|values()com.pnfsoftware.jeb.core.units.NotificationType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.NotificationType|getLevel()int|getDescription()java.lang.String;UNSUPPORTED_FEATURE:com.pnfsoftware.jeb.core.units.NotificationType|DEPRECATED_FEATURE:com.pnfsoftware.jeb.core.units.NotificationType|CORRUPTION:com.pnfsoftware.jeb.core.units.NotificationType|AREA_OF_INTEREST:com.pnfsoftware.jeb.core.units.NotificationType|INFO:com.pnfsoftware.jeb.core.units.NotificationType|WARNING:com.pnfsoftware.jeb.core.units.NotificationType|ERROR:com.pnfsoftware.jeb.core.units.NotificationType|POTENTIALLY_HARMFUL:com.pnfsoftware.jeb.core.units.NotificationType|MALICIOUS:com.pnfsoftware.jeb.core.units.NotificationType
C;1;NumberBase;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter.NumberBase;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|nextBase()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase;BINARY:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|OCTAL:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|DECIMAL:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|HEXADECIMAL:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|ASCII:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase
C;0;NumberComparator;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.NumberComparator;java.lang.Object;java.util.Comparator;com.pnfsoftware.jeb.util.format.NumberComparator()|com.pnfsoftware.jeb.util.format.NumberComparator(charComparator:java.util.Comparator);compare(arg0:java.lang.Object,arg1:java.lang.Object)int|compare(s1:java.lang.String,s2:java.lang.String)int;
C;0;NumberFormatter;com.pnfsoftware.jeb.core.units.code.asm.render;com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter()|com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter(defaultNumberFormatter:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter);format(bitsize:int,rawValue:java.math.BigInteger,base:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase,treatAsSignedNumber:boolean)java.lang.String|format(bitsize:int,rawValue:long)java.lang.String|format(bitsize:int,rawValue:java.math.BigInteger)java.lang.String|format(bitsize:int,rawValue:long,base:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase,treatAsSignedNumber:boolean)java.lang.String|isSignedNumber()boolean|rotateBase()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|setSignedNumber(signedNumber:boolean)void|setBase(base:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase)void|getBase()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$NumberBase|getForcePositiveRenderingForNonBase10()boolean|setForcePositiveRenderingForNonBase10(enabled:boolean)void|setConstantsFormatterOverride(cf:com.pnfsoftware.jeb.core.units.code.asm.render.ConstantsFormatter)void|getHexaNotationType()com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType|setHexaNotationType(hexaNotationType:com.pnfsoftware.jeb.core.units.code.asm.render.NumberFormatter$HexaNotationType)void;
C;0;NumberFormatter;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.NumberFormatter;java.lang.Object;;com.pnfsoftware.jeb.util.format.NumberFormatter()|com.pnfsoftware.jeb.util.format.NumberFormatter(defaultNumberFormatter:com.pnfsoftware.jeb.util.format.NumberFormatter);format(bitsize:int,rawValue:long)java.lang.String|format(bitsize:int,rawValue:long,base:com.pnfsoftware.jeb.util.format.NumberFormatter$Base,treatAsSignedNumber:boolean)java.lang.String|isSignedNumber()boolean|rotateBase()com.pnfsoftware.jeb.util.format.NumberFormatter$Base|setSignedNumber(signedNumber:boolean)void|setBase(base:com.pnfsoftware.jeb.util.format.NumberFormatter$Base)void|getBase()com.pnfsoftware.jeb.util.format.NumberFormatter$Base|getNotationType()com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType|setNotationType(notationType:com.pnfsoftware.jeb.util.format.NumberFormatter$NotationType)void;
C;0;O;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|getOperationType()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|isCommutative()boolean|isNormal()boolean;SLICE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SLICE_FIRSTBIT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SLICE_LASTBIT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SLICE_FIRST32:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SLICE_HALF1:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SLICE_HALF2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|COMPOSE_2:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|COMPOSE_2EQ:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|COND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|MUL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|DIV:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|REM:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|ADD:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SUB:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|MUL_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|MUL_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|DIV_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|DIV_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|REM_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|REM_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|NOT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|AND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|OR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|XOR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LOR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LAND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LNOT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|EQ:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|NE:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|GT_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|GE_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LT_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LE_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|GT_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|GE_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LT_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|LE_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|SHL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|CARRY:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O|POW:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O
C;0;OGroup;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.OGroup;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.OGroup(id:int,operators:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O[]);toString()java.lang.String;id:int|operators:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.opt.comp.O[]
C;0;OSType;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.OSType;java.lang.Enum;;;values()com.pnfsoftware.jeb.util.base.OSType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.base.OSType|determine()com.pnfsoftware.jeb.util.base.OSType|isLinux()boolean|is32bit()boolean|isWindows()boolean|is64bit()boolean|isMac()boolean;UNKNOWN:com.pnfsoftware.jeb.util.base.OSType|LINUX32:com.pnfsoftware.jeb.util.base.OSType|LINUX64:com.pnfsoftware.jeb.util.base.OSType|OSX32:com.pnfsoftware.jeb.util.base.OSType|OSX64:com.pnfsoftware.jeb.util.base.OSType|WIN32:com.pnfsoftware.jeb.util.base.OSType|WIN64:com.pnfsoftware.jeb.util.base.OSType
C;0;Operand;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.Operand;com.pnfsoftware.jeb.core.units.code.asm.processor.AbstractInstructionOperandGeneric;;com.pnfsoftware.jeb.core.units.code.asm.processor.Operand(type:int,size:int,value:long);getRegisterName(registerIdentifier:long)java.lang.String;
C;0;OperatingSystemType;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.OperatingSystemType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.codeobject.OperatingSystemType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.OperatingSystemType;UNIX:com.pnfsoftware.jeb.core.units.codeobject.OperatingSystemType|WINDOWS:com.pnfsoftware.jeb.core.units.codeobject.OperatingSystemType|MAC:com.pnfsoftware.jeb.core.units.codeobject.OperatingSystemType
C;0;Operation;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.Operation;java.lang.Enum;;;toString()java.lang.String|values()com.pnfsoftware.jeb.client.api.Operation[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.client.api.Operation;CUT:com.pnfsoftware.jeb.client.api.Operation|COPY:com.pnfsoftware.jeb.client.api.Operation|PASTE:com.pnfsoftware.jeb.client.api.Operation|SELECT_ALL:com.pnfsoftware.jeb.client.api.Operation|FIND:com.pnfsoftware.jeb.client.api.Operation|FIND_NEXT:com.pnfsoftware.jeb.client.api.Operation|DELETE:com.pnfsoftware.jeb.client.api.Operation|CLEAR:com.pnfsoftware.jeb.client.api.Operation|PROPERTIES:com.pnfsoftware.jeb.client.api.Operation|REFRESH:com.pnfsoftware.jeb.client.api.Operation|JUMP_TO:com.pnfsoftware.jeb.client.api.Operation|ITEM_FOLLOW:com.pnfsoftware.jeb.client.api.Operation|ITEM_PREVIOUS:com.pnfsoftware.jeb.client.api.Operation|ITEM_NEXT:com.pnfsoftware.jeb.client.api.Operation|NAVIGATE_FORWARD:com.pnfsoftware.jeb.client.api.Operation|NAVIGATE_BACKWARD:com.pnfsoftware.jeb.client.api.Operation|ZOOM_IN:com.pnfsoftware.jeb.client.api.Operation|ZOOM_OUT:com.pnfsoftware.jeb.client.api.Operation|ZOOM_RESET:com.pnfsoftware.jeb.client.api.Operation|CENTER:com.pnfsoftware.jeb.client.api.Operation|VIEW:com.pnfsoftware.jeb.client.api.Operation|VIEW_NEW:com.pnfsoftware.jeb.client.api.Operation|PARSE_AT:com.pnfsoftware.jeb.client.api.Operation|EXTRACT_TO:com.pnfsoftware.jeb.client.api.Operation
C;0;OperationRequest;com.pnfsoftware.jeb.client.api;com.pnfsoftware.jeb.client.api.OperationRequest;java.lang.Object;;com.pnfsoftware.jeb.client.api.OperationRequest(op:com.pnfsoftware.jeb.client.api.Operation);prepare(operable:com.pnfsoftware.jeb.client.api.IOperable)boolean|setResult(result:boolean)void|done()boolean|proceed()boolean|getOperation()com.pnfsoftware.jeb.client.api.Operation|duration()long|success()boolean;
C;0;OperationType;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir;com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType;java.lang.Enum;;;toString()java.lang.String|values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|isValid(nbParameters:int)boolean|getMinParameters()int|getMaxParameters()int;ADD:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|SUB:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|MUL_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|MUL_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|DIV_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|DIV_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|REM_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|REM_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|MUL2_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|MUL2_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|DIV2_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|DIV2_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|AND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|OR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|XOR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|NOT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LOG_AND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LOG_OR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LOG_NOT:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LOG_EQ:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LOG_NEQ:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LT_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LE_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|GT_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|GE_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LT_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LE_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|GT_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|GE_U:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|SHL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|SHR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|SAR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|ROR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|ROL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|PAR:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|SP2EDP:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|DP2EDP:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|INT2EDP:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|LONG2EDP:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|CAST:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|CAST_S:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|CARRY:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType|POW:com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.OperationType
C;0;OptUtil;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptUtil();getOptimizersByClassId(mo:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizer,classId:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId)java.util.List|getOnDemandOptimizerEntriesFor(mo:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IMasterOptimizer,stageId:int)java.util.List;
C;0;OptimizerClassId;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId;UNKNOWN:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId|DEAD_CODE_REMOVAL:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerClassId
C;0;OptimizerEntry;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry(group:int,opt:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer,effectivePriority:double,enabled:boolean);toString()java.lang.String|getEffectivePriority()double|getOptimizer()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.IOptimizer|getGroup()int|setEnabled(enabled:boolean)boolean|isEnabled()boolean|getStatistics()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerEntry$Stat;
C;0;OptimizerType;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt;com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType;STANDARD:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType|ON_DEMAND:com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType
C;0;OptionDefinition;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.OptionDefinition;java.lang.Object;com.pnfsoftware.jeb.core.IOptionDefinition;com.pnfsoftware.jeb.core.OptionDefinition(name:java.lang.String,description:java.lang.String)|com.pnfsoftware.jeb.core.OptionDefinition(name:java.lang.String,defaultValue:java.lang.String,description:java.lang.String);getName()java.lang.String|getDefaultValue()java.lang.String|getDescription()java.lang.String;
C;1;Order;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.MapBuilder.Order;java.lang.Enum;;;values()com.pnfsoftware.jeb.util.collect.MapBuilder$Order[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.util.collect.MapBuilder$Order;INSERTION:com.pnfsoftware.jeb.util.collect.MapBuilder$Order|NATURAL:com.pnfsoftware.jeb.util.collect.MapBuilder$Order
C;0;OutOfRangeImmediateException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.OutOfRangeImmediateException;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.DecompilerException;;com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.OutOfRangeImmediateException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.OutOfRangeImmediateException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.OutOfRangeImmediateException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.decompiler.exceptions.OutOfRangeImmediateException();;
C;1;OutputStream;com.pnfsoftware.jeb.util.encoding;com.pnfsoftware.jeb.util.encoding.Base64.OutputStream;java.io.FilterOutputStream;;com.pnfsoftware.jeb.util.encoding.Base64$OutputStream(out:java.io.OutputStream)|com.pnfsoftware.jeb.util.encoding.Base64$OutputStream(out:java.io.OutputStream,options:int);write(theBytes:byte[],off:int,len:int)void|write(theByte:int)void|close()void|suspendEncoding()void|resumeEncoding()void|flushBase64()void;
C;0;P;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.P;java.lang.Object;;com.pnfsoftware.jeb.client.P();;propnameUuid:java.lang.String|propnameFirstRun:java.lang.String|propnameLastRun:java.lang.String|propnameRunCount:java.lang.String|propnameLastVersionRun:java.lang.String|propnameEulaAccepted:java.lang.String|propnameLicenseKey:java.lang.String|propnameSupportExpired:java.lang.String|propnamePreferredLanguage:java.lang.String|propnameDebugEnabled:java.lang.String|propnameCheckMOTD:java.lang.String|propnameLastMOTDId:java.lang.String|propnameControllerInterface:java.lang.String|propnameControllerPort:java.lang.String|propnameControllerProtocol:java.lang.String|propnameControllerMessage:java.lang.String|propnameNetworkProxy:java.lang.String|propnameCheckUpdates:java.lang.String|propnameWriteUpdateToDiskOnlyIfValid:java.lang.String|propnameTelemetryReporting:java.lang.String|propnameUploadErrorLogs:java.lang.String|propnameUploadErrorFiles:java.lang.String|propnameIncludeExtraDataInErrorLogs:java.lang.String|propnameDevelopmentMode:java.lang.String|propnameScriptsFolder:java.lang.String
C;0;PE;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.PE;java.lang.Object;;com.pnfsoftware.jeb.core.units.codeobject.PE();;IMAGE_SIZEOF_DOS_HEADER:int|IMAGE_SIZEOF_FILE_HEADER:int|IMAGE_FILE_RELOCS_STRIPPED:int|IMAGE_FILE_EXECUTABLE_IMAGE:int|IMAGE_FILE_LINE_NUMS_STRIPPED:int|IMAGE_FILE_LOCAL_SYMS_STRIPPED:int|IMAGE_FILE_AGGRESIVE_WS_TRIM:int|IMAGE_FILE_LARGE_ADDRESS_AWARE:int|IMAGE_FILE_BYTES_REVERSED_LO:int|IMAGE_FILE_32BIT_MACHINE:int|IMAGE_FILE_DEBUG_STRIPPED:int|IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP:int|IMAGE_FILE_NET_RUN_FROM_SWAP:int|IMAGE_FILE_SYSTEM:int|IMAGE_FILE_DLL:int|IMAGE_FILE_UP_SYSTEM_ONLY:int|IMAGE_FILE_BYTES_REVERSED_HI:int|IMAGE_FILE_MACHINE_UNKNOWN:int|IMAGE_FILE_MACHINE_I386:int|IMAGE_FILE_MACHINE_R3000_BE:int|IMAGE_FILE_MACHINE_R3000:int|IMAGE_FILE_MACHINE_R4000:int|IMAGE_FILE_MACHINE_R10000:int|IMAGE_FILE_MACHINE_WCEMIPSV2:int|IMAGE_FILE_MACHINE_ALPHA:int|IMAGE_FILE_MACHINE_SH3:int|IMAGE_FILE_MACHINE_SH3DSP:int|IMAGE_FILE_MACHINE_SH3E:int|IMAGE_FILE_MACHINE_SH4:int|IMAGE_FILE_MACHINE_SH5:int|IMAGE_FILE_MACHINE_ARM:int|IMAGE_FILE_MACHINE_ARM64:int|IMAGE_FILE_MACHINE_THUMB:int|IMAGE_FILE_MACHINE_ARMNT:int|IMAGE_FILE_MACHINE_AM33:int|IMAGE_FILE_MACHINE_POWERPC:int|IMAGE_FILE_MACHINE_POWERPCFP:int|IMAGE_FILE_MACHINE_IA64:int|IMAGE_FILE_MACHINE_MIPS16:int|IMAGE_FILE_MACHINE_ALPHA64:int|IMAGE_FILE_MACHINE_MIPSFPU:int|IMAGE_FILE_MACHINE_MIPSFPU16:int|IMAGE_FILE_MACHINE_AXP64:int|IMAGE_FILE_MACHINE_TRICORE:int|IMAGE_FILE_MACHINE_CEF:int|IMAGE_FILE_MACHINE_EBC:int|IMAGE_FILE_MACHINE_AMD64:int|IMAGE_FILE_MACHINE_M32R:int|IMAGE_FILE_MACHINE_CEE:int|IMAGE_NT_OPTIONAL_HDR32_MAGIC:int|IMAGE_NT_OPTIONAL_HDR64_MAGIC:int|IMAGE_ROM_OPTIONAL_HDR_MAGIC:int|IMAGE_SUBSYSTEM_UNKNOWN:int|IMAGE_SUBSYSTEM_NATIVE:int|IMAGE_SUBSYSTEM_WINDOWS_GUI:int|IMAGE_SUBSYSTEM_WINDOWS_CUI:int|IMAGE_SUBSYSTEM_OS2_CUI:int|IMAGE_SUBSYSTEM_POSIX_CUI:int|IMAGE_SUBSYSTEM_NATIVE_WINDOWS:int|IMAGE_SUBSYSTEM_WINDOWS_CE_GUI:int|IMAGE_SUBSYSTEM_EFI_APPLICATION:int|IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER:int|IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER:int|IMAGE_SUBSYSTEM_EFI_ROM:int|IMAGE_SUBSYSTEM_XBOX:int|IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION:int|IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA:int|IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE:int|IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY:int|IMAGE_DLLCHARACTERISTICS_NX_COMPAT:int|IMAGE_DLLCHARACTERISTICS_NO_ISOLATION:int|IMAGE_DLLCHARACTERISTICS_NO_SEH:int|IMAGE_DLLCHARACTERISTICS_NO_BIND:int|IMAGE_DLLCHARACTERISTICS_APPCONTAINER:int|IMAGE_DLLCHARACTERISTICS_WDM_DRIVER:int|IMAGE_DLLCHARACTERISTICS_GUARD_CF:int|IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE:int|IMAGE_DIRECTORY_ENTRY_EXPORT:int|IMAGE_DIRECTORY_ENTRY_IMPORT:int|IMAGE_DIRECTORY_ENTRY_RESOURCE:int|IMAGE_DIRECTORY_ENTRY_EXCEPTION:int|IMAGE_DIRECTORY_ENTRY_SECURITY:int|IMAGE_DIRECTORY_ENTRY_BASERELOC:int|IMAGE_DIRECTORY_ENTRY_DEBUG:int|IMAGE_DIRECTORY_ENTRY_ARCHITECTURE:int|IMAGE_DIRECTORY_ENTRY_GLOBALPTR:int|IMAGE_DIRECTORY_ENTRY_TLS:int|IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG:int|IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT:int|IMAGE_DIRECTORY_ENTRY_IAT:int|IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT:int|IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR:int|IMAGE_SIZEOF_SECTION_HEADER:int|IMAGE_SCN_TYPE_NO_PAD:int|IMAGE_SCN_CNT_CODE:int|IMAGE_SCN_CNT_INITIALIZED_DATA:int|IMAGE_SCN_CNT_UNINITIALIZED_DATA:int|IMAGE_SCN_LNK_OTHER:int|IMAGE_SCN_LNK_INFO:int|IMAGE_SCN_LNK_REMOVE:int|IMAGE_SCN_LNK_COMDAT:int|IMAGE_SCN_NO_DEFER_SPEC_EXC:int|IMAGE_SCN_GPREL:int|IMAGE_SCN_MEM_FARDATA:int|IMAGE_SCN_MEM_PURGEABLE:int|IMAGE_SCN_MEM_16BIT:int|IMAGE_SCN_MEM_LOCKED:int|IMAGE_SCN_MEM_PRELOAD:int|IMAGE_SCN_ALIGN_1BYTES:int|IMAGE_SCN_ALIGN_2BYTES:int|IMAGE_SCN_ALIGN_4BYTES:int|IMAGE_SCN_ALIGN_8BYTES:int|IMAGE_SCN_ALIGN_16BYTES:int|IMAGE_SCN_ALIGN_32BYTES:int|IMAGE_SCN_ALIGN_64BYTES:int|IMAGE_SCN_ALIGN_128BYTES:int|IMAGE_SCN_ALIGN_256BYTES:int|IMAGE_SCN_ALIGN_512BYTES:int|IMAGE_SCN_ALIGN_1024BYTES:int|IMAGE_SCN_ALIGN_2048BYTES:int|IMAGE_SCN_ALIGN_4096BYTES:int|IMAGE_SCN_ALIGN_8192BYTES:int|IMAGE_SCN_ALIGN_MASK:int|IMAGE_SCN_LNK_NRELOC_OVFL:int|IMAGE_SCN_MEM_DISCARDABLE:int|IMAGE_SCN_MEM_NOT_CACHED:int|IMAGE_SCN_MEM_NOT_PAGED:int|IMAGE_SCN_MEM_SHARED:int|IMAGE_SCN_MEM_EXECUTE:int|IMAGE_SCN_MEM_READ:int|IMAGE_SCN_MEM_WRITE:int|IMAGE_REL_BASED_ABSOLUTE:int|IMAGE_REL_BASED_HIGH:int|IMAGE_REL_BASED_LOW:int|IMAGE_REL_BASED_HIGHLOW:int|IMAGE_REL_BASED_HIGHADJ:int|IMAGE_REL_BASED_MIPS_JMPADDR:int|IMAGE_REL_BASED_ARM_MOV32:int|IMAGE_REL_BASED_RISCV_HIGH20:int|IMAGE_REL_BASED_THUMB_MOV32:int|IMAGE_REL_BASED_RISCV_LOW12I:int|IMAGE_REL_BASED_RISCV_LOW12S:int|IMAGE_REL_BASED_MIPS_JMPADDR16:int|IMAGE_REL_BASED_IA64_IMM64:int|IMAGE_REL_BASED_DIR64:int|IMAGE_DEBUG_TYPE_UNKNOWN:int|IMAGE_DEBUG_TYPE_COFF:int|IMAGE_DEBUG_TYPE_CODEVIEW:int|IMAGE_DEBUG_TYPE_FPO:int|IMAGE_DEBUG_TYPE_MISC:int|IMAGE_DEBUG_TYPE_EXCEPTION:int|IMAGE_DEBUG_TYPE_FIXUP:int|IMAGE_DEBUG_TYPE_OMAP_TO_SRC:int|IMAGE_DEBUG_TYPE_OMAP_FROM_SRC:int|IMAGE_DEBUG_TYPE_BORLAND:int|IMAGE_DEBUG_TYPE_RESERVED10:int|IMAGE_DEBUG_TYPE_CLSID:int|PDB2_SIGNATURE:int|PDB7_SIGNATURE:int
C;0;PEParser;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.PEParser;java.lang.Object;;com.pnfsoftware.jeb.core.units.codeobject.PEParser(input:com.pnfsoftware.jeb.core.input.IInput);add(address:long,size:long)long|getSegmentCount()int|getSegments()java.util.List|getSegment(index:int)com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation|convertRelativeAddressToFileOffset(rva:long)long|convertFileOffsetToRelativeAddress(offset:long)long|getSectionHeaders()com.pnfsoftware.jeb.core.units.codeobject.ICOFFSectionHeader[]|getPEOptionalHeader()com.pnfsoftware.jeb.core.units.codeobject.IPEOptionalHeader|getCOFFHeader()com.pnfsoftware.jeb.core.units.codeobject.ICOFFHeader|sanitizeAddress(address:long)long|isAddressInside(a:long)boolean;
C;1;PackageStatus;com.pnfsoftware.jeb.core.units.code.asm.sig;com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry.PackageStatus;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry$PackageStatus[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry$PackageStatus;INACTIVE:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry$PackageStatus|ACTIVE:com.pnfsoftware.jeb.core.units.code.asm.sig.NativeSignaturePackageEntry$PackageStatus
C;0;ParseException;com.pnfsoftware.jeb.util.encoding.json.parser;com.pnfsoftware.jeb.util.encoding.json.parser.ParseException;java.lang.Exception;;com.pnfsoftware.jeb.util.encoding.json.parser.ParseException(position:int,errorType:int,unexpectedObject:java.lang.Object)|com.pnfsoftware.jeb.util.encoding.json.parser.ParseException(errorType:int,unexpectedObject:java.lang.Object)|com.pnfsoftware.jeb.util.encoding.json.parser.ParseException(errorType:int);getMessage()java.lang.String|setUnexpectedObject(unexpectedObject:java.lang.Object)void|getUnexpectedObject()java.lang.Object|getPosition()int|setErrorType(errorType:int)void|setPosition(position:int)void|getErrorType()int;ERROR_UNEXPECTED_CHAR:int|ERROR_UNEXPECTED_TOKEN:int|ERROR_UNEXPECTED_EXCEPTION:int
C;0;PassthroughUnitLock;com.pnfsoftware.jeb.core.units;com.pnfsoftware.jeb.core.units.PassthroughUnitLock;java.lang.Object;com.pnfsoftware.jeb.core.units.IUnitLock;;getInstance()com.pnfsoftware.jeb.core.units.PassthroughUnitLock|isLocked()boolean|a(blockTimeoutMs:long)com.pnfsoftware.jeb.util.concurrent.ACLock|a()com.pnfsoftware.jeb.util.concurrent.ACLock|getDefaultBlockTimeoutMs()long|isLockedByCurrentThread()boolean|verifyLocked()void;
C;0;PathProcessor;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.PathProcessor;java.lang.Object;;com.pnfsoftware.jeb.util.base.PathProcessor(smap:java.util.Map)|com.pnfsoftware.jeb.util.base.PathProcessor();substituteEnvironmentVariables(p:java.lang.String)java.lang.String|decodeFlexiMultiPath(mp:java.lang.String)java.util.List|decodeSinglePath(p:java.lang.String)java.lang.String|decodeFlexiPath(p:java.lang.String)java.lang.String;ENV:com.pnfsoftware.jeb.util.base.PathProcessor
C;0;Perflog;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.Perflog;java.lang.Object;;;count()void|isEmpty()boolean|reset()void|reset(key:java.lang.String)void|getFineGrainedCounter(key:java.lang.String)com.pnfsoftware.jeb.util.collect.ReferenceCounter|getGlobalCounters()com.pnfsoftware.jeb.util.collect.ReferenceCounter|getFineGrainedCounters()java.util.Map|getCounterNames()java.util.Set;
C;0;PluginInformation;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.PluginInformation;java.lang.Object;com.pnfsoftware.jeb.core.IPluginInformation;com.pnfsoftware.jeb.core.PluginInformation()|com.pnfsoftware.jeb.core.PluginInformation(name:java.lang.String,description:java.lang.String,author:java.lang.String,version:com.pnfsoftware.jeb.core.Version)|com.pnfsoftware.jeb.core.PluginInformation(name:java.lang.String,description:java.lang.String,author:java.lang.String,version:com.pnfsoftware.jeb.core.Version,minCoreVersion:com.pnfsoftware.jeb.core.Version)|com.pnfsoftware.jeb.core.PluginInformation(name:java.lang.String,description:java.lang.String,author:java.lang.String,version:com.pnfsoftware.jeb.core.Version,minCoreVersion:com.pnfsoftware.jeb.core.Version,maxCoreVersion:com.pnfsoftware.jeb.core.Version);toString()java.lang.String|getName()java.lang.String|getMaximumCoreVersion()com.pnfsoftware.jeb.core.Version|getMinimumCoreVersion()com.pnfsoftware.jeb.core.Version|getAuthor()java.lang.String|getVersion()com.pnfsoftware.jeb.core.Version|getDescription()java.lang.String;name:java.lang.String|description:java.lang.String|author:java.lang.String|version:com.pnfsoftware.jeb.core.Version|minCoreVersion:com.pnfsoftware.jeb.core.Version|maxCoreVersion:com.pnfsoftware.jeb.core.Version
C;0;PluralFormatter;com.pnfsoftware.jeb.util.format;com.pnfsoftware.jeb.util.format.PluralFormatter;java.lang.Object;;com.pnfsoftware.jeb.util.format.PluralFormatter();count(cnt:java.lang.Number,value:java.lang.String,valuePlural:java.lang.String)java.lang.String|countS(cnt:java.lang.Number,value:java.lang.String)java.lang.String;
C;0;PointerDescription;com.pnfsoftware.jeb.core.units.code;com.pnfsoftware.jeb.core.units.code.PointerDescription;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.PointerDescription(address:long,size:int,type:int)|com.pnfsoftware.jeb.core.units.code.PointerDescription(address:long);equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getAddress()long|getType()int|getSize()int|setSize(size:int)void;UNKNOWN:int|CODE:int|DATA:int|PTRCODE:int|PTRDATA:int|address:long|size:int|type:int
C;0;PreCollection;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.PreCollection;java.lang.Object;com.pnfsoftware.jeb.util.serialization.IPreObject;com.pnfsoftware.jeb.util.serialization.PreCollection(dst:java.util.Collection,expectedSize:int);build()void|record(v:java.lang.Object)void;
C;0;PreMap;com.pnfsoftware.jeb.util.serialization;com.pnfsoftware.jeb.util.serialization.PreMap;java.lang.Object;com.pnfsoftware.jeb.util.serialization.IPreObject;com.pnfsoftware.jeb.util.serialization.PreMap(dst:java.util.Map,expectedSize:int);build()void|record(k:java.lang.Object,v:java.lang.Object)void;
C;0;PrettyTypeFormatter;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.PrettyTypeFormatter;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.type.PrettyTypeFormatter(type:com.pnfsoftware.jeb.core.units.code.asm.type.INativeType);format(levelInnerFormatting:int,offsetsAsComments:boolean)java.lang.String|format()java.lang.String;
C;0;PrimitiveCategory;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory;INTEGER:com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory|FLOAT:com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory
C;0;ProcessWrapper;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.ProcessWrapper;java.lang.Object;;com.pnfsoftware.jeb.util.concurrent.ProcessWrapper(cmdarray:java.lang.String[])|com.pnfsoftware.jeb.util.concurrent.ProcessWrapper(timeout:long,cmdarray:java.lang.String[]);toString()java.lang.String|start()com.pnfsoftware.jeb.util.concurrent.ProcessWrapper|isAlive()boolean|isKillSpawnedProcessesOnShutdown()boolean|waitForCompletion()void|setKillSpawnedProcessesOnShutdown(enabled:boolean)void|kill()void|getProcessInput()java.io.OutputStream|getProcessError()java.io.InputStream|getReturnCode()java.lang.Integer|getProcessOutput()java.io.InputStream;
C;0;ProcessorException;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorException;com.pnfsoftware.jeb.core.exceptions.JebException;;com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorException(message:java.lang.String,cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorException(message:java.lang.String)|com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorException();;
C;0;ProcessorFamily;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily;UNKNOWN:com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily|X86:com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily|ARM:com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily|MIPS:com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily
C;0;ProcessorInformation;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.processor.IProcessorInformation;com.pnfsoftware.jeb.core.units.code.asm.processor.ProcessorInformation(endianness:com.pnfsoftware.jeb.util.io.Endianness);getEndianness()com.pnfsoftware.jeb.util.io.Endianness|setEndianness(endianness:com.pnfsoftware.jeb.util.io.Endianness)void;
C;0;ProcessorType;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ProcessorType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.codeobject.ProcessorType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|isMIPS()boolean|is64Bit()boolean|getFamily()com.pnfsoftware.jeb.core.units.codeobject.ProcessorFamily|fromArchName(arch:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|isI386()boolean|isArm()boolean|toWellKnownUnitType()java.lang.String;UNKNOWN:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|X86:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|X86_64:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|ARM:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|ARM64:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|MIPS:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|MIPS64:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|AVR:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType|AVR32:com.pnfsoftware.jeb.core.units.codeobject.ProcessorType
C;0;ProcessorVariant;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant;java.lang.Object;;com.pnfsoftware.jeb.core.units.codeobject.ProcessorVariant(name:java.lang.String);getName()java.lang.String;
C;0;ProjectFileStore;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.ProjectFileStore;java.lang.Object;com.pnfsoftware.jeb.core.dao.IFileDatabase;com.pnfsoftware.jeb.core.dao.impl.ProjectFileStore(fstore:com.pnfsoftware.jeb.core.dao.IFileStore);getDatabaseReader(key:java.lang.String)com.pnfsoftware.jeb.core.dao.IFileDatabaseReader|getDatabaseWriter(key:java.lang.String)com.pnfsoftware.jeb.core.dao.IFileDatabaseWriter|loadFile(key:java.lang.String,version:int)byte[]|getFileWriter(key:java.lang.String)java.io.OutputStream|deleteFile(key:java.lang.String,version:int)boolean|hasFile(key:java.lang.String,version:int)boolean|getFileReader(key:java.lang.String)java.io.InputStream|saveFile(key:java.lang.String,version:int,data:byte[])boolean;
C;0;PropertyChangeNotification;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.PropertyChangeNotification;java.lang.Object;;com.pnfsoftware.jeb.core.events.PropertyChangeNotification()|com.pnfsoftware.jeb.core.events.PropertyChangeNotification(propfqn:java.lang.String,value:java.lang.Object,pd:com.pnfsoftware.jeb.core.properties.IPropertyDefinition);add(propfqn:java.lang.String,value:java.lang.Object,pd:com.pnfsoftware.jeb.core.properties.IPropertyDefinition)void|toString()java.lang.String|entries()java.util.List|has(propfqns:java.lang.String[])boolean;
C;0;PropertyChangeObject;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject;java.lang.Object;;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject();add(pm:com.pnfsoftware.jeb.core.properties.IPropertyManager,fqname:java.lang.String,value:java.lang.Object,pd:com.pnfsoftware.jeb.core.properties.IPropertyDefinition)com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject$Entry|toString()java.lang.String|wasCommitted()boolean|commit()void|commit(notify:boolean)void;
C;0;PropertyChangeTriggerBoolean;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTriggerBoolean;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTrigger;;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTriggerBoolean(changedKey:java.lang.String,checkedKeyName:java.lang.String,pm:com.pnfsoftware.jeb.core.properties.IPropertyManager);check()void|onChange(v:boolean)void;
C;0;PropertyChangeTriggerInteger;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTriggerInteger;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTrigger;;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTriggerInteger(changedKey:java.lang.String,checkedKeyName:java.lang.String,pm:com.pnfsoftware.jeb.core.properties.IPropertyManager);check()void|onChange(v:int)void;
C;0;PropertyChangeTriggerString;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTriggerString;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTrigger;;com.pnfsoftware.jeb.core.properties.impl.PropertyChangeTriggerString(changedKey:java.lang.String,checkedKeyName:java.lang.String,pm:com.pnfsoftware.jeb.core.properties.IPropertyManager);check()void|onChange(v:java.lang.String)void;
C;0;PropertyDefinition;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyDefinition;java.lang.Object;com.pnfsoftware.jeb.core.properties.IPropertyDefinition;;toString()java.lang.String|getName()java.lang.String|getType()com.pnfsoftware.jeb.core.properties.IPropertyType|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.impl.PropertyDefinitionManager|isInternal()boolean|getFlags()int|getDescription()java.lang.String;
C;0;PropertyDefinitionManager;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyDefinitionManager;java.lang.Object;com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager;com.pnfsoftware.jeb.core.properties.impl.PropertyDefinitionManager(region:java.lang.String)|com.pnfsoftware.jeb.core.properties.impl.PropertyDefinitionManager(region:java.lang.String,parent:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)|com.pnfsoftware.jeb.core.properties.impl.PropertyDefinitionManager();toString()java.lang.String|getParent()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getDefinition(name:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|getRegion()java.lang.String|addInternalDefinition(name:java.lang.String,type:com.pnfsoftware.jeb.core.properties.IPropertyType)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|addDefinition(name:java.lang.String,type:com.pnfsoftware.jeb.core.properties.IPropertyType,description:java.lang.String,internal:boolean,allowOverride:boolean)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|addDefinition(name:java.lang.String,type:com.pnfsoftware.jeb.core.properties.IPropertyType,descriptionId:int,internal:boolean,allowOverride:boolean)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|addDefinition(name:java.lang.String,type:com.pnfsoftware.jeb.core.properties.IPropertyType,description:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|getChild(name:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getDefinitions()java.util.List|registerChild(child:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)boolean|getNamespace()java.lang.String|attachToParent(parentManager:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)void|removeDefinition(name:java.lang.String)void|isRoot()boolean|getChildren()java.util.List;
C;0;PropertyManager;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyManager;com.pnfsoftware.jeb.util.events.EventSource;com.pnfsoftware.jeb.core.properties.IPropertyManager;com.pnfsoftware.jeb.core.properties.impl.PropertyManager(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,config:com.pnfsoftware.jeb.core.properties.IConfiguration)|com.pnfsoftware.jeb.core.properties.impl.PropertyManager(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,config:com.pnfsoftware.jeb.core.properties.IConfiguration,master:com.pnfsoftware.jeb.core.properties.IPropertyManager)|com.pnfsoftware.jeb.core.properties.impl.PropertyManager(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,master:com.pnfsoftware.jeb.core.properties.IPropertyManager);toString()java.lang.String|getBoolean(name:java.lang.String)boolean|getBoolean(name:java.lang.String,defaultOnNull:boolean)boolean|getValue(name:java.lang.String,checkingDepth:int,validateValue:boolean)java.lang.Object|getValue(name:java.lang.String)java.lang.Object|setValue(name:java.lang.String,value:java.lang.Object,validateValue:boolean,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setValue(name:java.lang.String,value:java.lang.Object)boolean|setBoolean(name:java.lang.String,value:java.lang.Boolean,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setBoolean(name:java.lang.String,value:java.lang.Boolean)boolean|getInteger(name:java.lang.String)int|getInteger(name:java.lang.String,defaultOnNull:int)int|getString(name:java.lang.String)java.lang.String|getString(name:java.lang.String,defaultOnNull:java.lang.String)java.lang.String|getOwnerName()java.lang.String|setOwnerName(ownerName:java.lang.String)void|getConfiguration()com.pnfsoftware.jeb.core.properties.IConfiguration|getPropertyDefinitionManager()com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|setString(name:java.lang.String,value:java.lang.String,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setString(name:java.lang.String,value:java.lang.String)boolean|setInteger(name:java.lang.String,value:java.lang.Integer,co:com.pnfsoftware.jeb.core.properties.impl.PropertyChangeObject)boolean|setInteger(name:java.lang.String,value:java.lang.Integer)boolean|getStringUnsafe(name:java.lang.String)java.lang.String|getBooleanUnsafe(name:java.lang.String)java.lang.Boolean|getIntegerUnsafe(name:java.lang.String)java.lang.Integer|dispose()void;
C;0;PropertyTypeBoolean;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyTypeBoolean;java.lang.Object;com.pnfsoftware.jeb.core.properties.IPropertyTypeBoolean;;equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getName()java.lang.String|getDefault()java.lang.Object|getDefault()java.lang.Boolean|create(def:java.lang.Boolean)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeBoolean|create()com.pnfsoftware.jeb.core.properties.impl.PropertyTypeBoolean|validate(value:java.lang.Object)boolean;
C;0;PropertyTypeInteger;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger;java.lang.Object;com.pnfsoftware.jeb.core.properties.IPropertyTypeInteger;;equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getName()java.lang.String|getDefault()java.lang.Object|getDefault()java.lang.Integer|create(def:java.lang.Integer)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|create(min:int,max:int,def:java.lang.Integer)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|create()com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|createNegative(def:java.lang.Integer)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|getMax()int|createPositive(def:java.lang.Integer)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|getMin()int|createPositiveOrZero(def:java.lang.Integer)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|createNegativeOrZero(def:java.lang.Integer)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeInteger|validate(value:java.lang.Object)boolean;
C;0;PropertyTypePath;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyTypePath;java.lang.Object;com.pnfsoftware.jeb.core.properties.IPropertyTypePath;;equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getName()java.lang.String|getDefault()java.lang.String|getDefault()java.lang.Object|create(def:java.lang.String)com.pnfsoftware.jeb.core.properties.impl.PropertyTypePath|create()com.pnfsoftware.jeb.core.properties.impl.PropertyTypePath|getMinLength()int|getMaxLength()int|validate(value:java.lang.Object)boolean;
C;0;PropertyTypeString;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyTypeString;java.lang.Object;com.pnfsoftware.jeb.core.properties.IPropertyTypeString;;equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getName()java.lang.String|getDefault()java.lang.String|getDefault()java.lang.Object|create()com.pnfsoftware.jeb.core.properties.impl.PropertyTypeString|create(min:int,max:int,def:java.lang.String)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeString|create(s:java.lang.String)com.pnfsoftware.jeb.core.properties.impl.PropertyTypeString|getMinLength()int|getMaxLength()int|validate(value:java.lang.Object)boolean;
C;0;PropertyUtil;com.pnfsoftware.jeb.core.properties.impl;com.pnfsoftware.jeb.core.properties.impl.PropertyUtil;java.lang.Object;;com.pnfsoftware.jeb.core.properties.impl.PropertyUtil();getRoot(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager)com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager|getDefinition(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,fqname:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinition|formatList(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,alphasort:boolean)java.lang.String|formatTree(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,alphasort:boolean)java.lang.String|getNamespace(pdm:com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager,namespace:java.lang.String)com.pnfsoftware.jeb.core.properties.IPropertyDefinitionManager;
C;0;PrototypeAttribute;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute|format(comptype:com.pnfsoftware.jeb.core.units.codeobject.CompilerType)java.lang.String|format()java.lang.String;VarArg:com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute|NoReturn:com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute|NoThrow:com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute|Leaf:com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute|Pure:com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute|Const:com.pnfsoftware.jeb.core.units.code.asm.type.PrototypeAttribute
C;0;PublicAnnouncement;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.PublicAnnouncement;java.lang.Object;;;getId()int|parse(s:java.lang.String)com.pnfsoftware.jeb.client.PublicAnnouncement|getText()java.lang.String;
C;1;PublicKey;com.pnfsoftware.jeb.core.units.code.android;com.pnfsoftware.jeb.core.units.code.android.APKSigSchemeV2Block.PublicKey;java.lang.Object;;;toString()java.lang.String|getBytes()byte[];
C;0;PythonScriptFactory;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.PythonScriptFactory;java.lang.Object;;com.pnfsoftware.jeb.client.script.PythonScriptFactory(j:com.pnfsoftware.jeb.client.script.JythonDynamicWrapper,directory:java.lang.String,filenameNoExt:java.lang.String,classname:java.lang.String);create()com.pnfsoftware.jeb.client.api.IScript|close()void;
C;0;QuestionNotificationYesNo;com.pnfsoftware.jeb.core.events;com.pnfsoftware.jeb.core.events.QuestionNotificationYesNo;com.pnfsoftware.jeb.core.events.AbstractQuestionNotification;;com.pnfsoftware.jeb.core.events.QuestionNotificationYesNo(question:java.lang.String,defaultResponse:boolean)|com.pnfsoftware.jeb.core.events.QuestionNotificationYesNo(question:java.lang.String,defaultResponse:boolean,askDoNotShowAnymore:boolean);;
C;1;R_SYMBOL;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.ELF.R_SYMBOL;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.codeobject.ELF$R_SYMBOL[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.codeobject.ELF$R_SYMBOL;LOCAL:com.pnfsoftware.jeb.core.units.codeobject.ELF$R_SYMBOL|EXTERNAL:com.pnfsoftware.jeb.core.units.codeobject.ELF$R_SYMBOL
C;1;Range;com.pnfsoftware.jeb.core.units.code.asm.analyzer;com.pnfsoftware.jeb.core.units.code.asm.analyzer.MemoryRanges.Range;java.lang.Object;com.pnfsoftware.jeb.util.collect.ISegment;;getBegin()java.lang.Comparable|getBegin()java.math.BigInteger|getEnd()java.lang.Comparable|getEnd()java.math.BigInteger;
C;1;RecordDescription;com.pnfsoftware.jeb.core.dao.impl;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader.RecordDescription;java.lang.Object;;com.pnfsoftware.jeb.core.dao.impl.JEB2FileDatabaseReader$RecordDescription(type:int,flags:int,dataOffset:long,dataSize:int);getType()int|getOffsetToData()long|getSizeOfData()int|getFlags()int;
C;0;ReferenceCounter;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.ReferenceCounter;java.lang.Object;;com.pnfsoftware.jeb.util.collect.ReferenceCounter();remove(key:java.lang.Object)boolean|get(key:java.lang.Object)int|toString()java.lang.String|clear()void|isEmpty()boolean|size()int|load(coll:java.util.Collection)void|keys()java.util.Set|dec(key:java.lang.Object)int|has(key:java.lang.Object)boolean|getCount()int|formatAllReferences()java.lang.String|formatTopReferences(top:int)java.lang.String|getAsMap()java.util.Map|inc(key:java.lang.Object)int;
C;0;ReflectionHelper;com.pnfsoftware.jeb.util.reflect;com.pnfsoftware.jeb.util.reflect.ReflectionHelper;java.lang.Object;;com.pnfsoftware.jeb.util.reflect.ReflectionHelper();set2(f:java.lang.reflect.Field,o:java.lang.Object,value:java.lang.Object)void|hasNoArgConstructor(c:java.lang.Class)boolean|removeDimensions(c:java.lang.Class)java.lang.Class|invoke2(m:java.lang.reflect.Method,o:java.lang.Object,args:java.lang.Object[])java.lang.Object|reduceDimensions(c:java.lang.Class)java.lang.Class|instantiateSafe(c:java.lang.Class)java.lang.Object|newInstance2(constructor:java.lang.reflect.Constructor)java.lang.Object;
C;0;RegisterBankArm;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankArm;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankArm(endianness:com.pnfsoftware.jeb.util.io.Endianness);;
C;0;RegisterBankArm64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankArm64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankArm64(endianness:com.pnfsoftware.jeb.util.io.Endianness);;
C;0;RegisterBankLayoutArm;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutArm;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;;;getInstance()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutArm|getDescriptionEntryMap()java.util.Map;
C;0;RegisterBankLayoutArm64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutArm64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;;;getInstance()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutArm64|getDescriptionEntryMap()java.util.Map;
C;0;RegisterBankLayoutMips;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutMips;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;;;getInstance()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutMips|getDescriptionEntryMap()java.util.Map;
C;0;RegisterBankLayoutMips64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutMips64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;;;getInstance()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutMips64|getDescriptionEntryMap()java.util.Map;
C;0;RegisterBankLayoutX86;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutX86;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;;;getInstance()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutX86|getDescriptionEntryMap()java.util.Map;
C;0;RegisterBankLayoutX8664;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutX8664;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBankLayout;;;getInstance()com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankLayoutX8664|getDescriptionEntryMap()java.util.Map;
C;0;RegisterBankMips;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankMips;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankMips(endianness:com.pnfsoftware.jeb.util.io.Endianness);;
C;0;RegisterBankMips64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankMips64;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankMips64(endianness:com.pnfsoftware.jeb.util.io.Endianness);;
C;0;RegisterBankX86;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankX86;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankX86();;
C;0;RegisterBankX8664;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankX8664;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterBank;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterBankX8664();;
C;0;RegisterDescriptionEntry;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry(number:int,name:java.lang.String,bitsize:int,encoding:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding,alternateName:java.lang.String,type:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType,offset:int);toString()java.lang.String|getName()java.lang.String|getType()com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType|getSize()int|getOffset()int|setOffset(offset:int)void|getEncoding()com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding|getNumber()int|getBitsize()int|setNumber(number:int)void|getNames()java.util.List|addName(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry;
C;0;RegisterEncoding;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding;unknown:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding|uint:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding|sint:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding|ieee754:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding|vector:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterEncoding
C;0;RegisterLayoutBridge;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterLayoutBridge;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterLayoutBridge(srcLayout:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout,dstLayout:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout);toString()java.lang.String|convertDestination(regnum:int)java.lang.Integer|convertDestinationValue(dstRegnum:int,srcRegnum:int,value:byte[])byte[]|convertSourceValue(srcRegnum:int,dstRegnum:int,value:byte[])byte[]|convertSource(regnum:int)java.lang.Integer;
C;0;RegisterType;com.pnfsoftware.jeb.core.units.code.asm.processor;com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType;java.lang.Enum;;;values()com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType;Unspecified:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType|ProgramCounter:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType|StackPointer:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType|Flags:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType
C;0;RegisterUtil;com.pnfsoftware.jeb.core.units.code.asm.processor.arch;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterUtil;java.lang.Object;;com.pnfsoftware.jeb.core.units.code.asm.processor.arch.RegisterUtil();byteArrayToHexSmart(endianness:com.pnfsoftware.jeb.util.io.Endianness,data:byte[],pos:int,end:int)java.lang.String|byteArrayToHexSmart(endianness:com.pnfsoftware.jeb.util.io.Endianness,data:byte[])java.lang.String|setValueByNameAsLong(bank:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank,name:java.lang.String,value:long)boolean|getValueByNameAsLong(bank:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank,name:java.lang.String)java.lang.Long|setValueByName(bank:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank,name:java.lang.String,bytes:byte[])boolean|getEntryByName(layout:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout,name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|getEntryByName(bank:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank,name:java.lang.String)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|getValueByName(bank:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank,name:java.lang.String)byte[]|getEntryByType(layout:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBankLayout,type:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry|getEntryByType(bank:com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterBank,type:com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterType)com.pnfsoftware.jeb.core.units.code.asm.processor.RegisterDescriptionEntry;
C;0;ResolvedOperandByteValue;com.pnfsoftware.jeb.core.units.code.asm.simulator;com.pnfsoftware.jeb.core.units.code.asm.simulator.ResolvedOperandByteValue;java.lang.Object;com.pnfsoftware.jeb.core.units.code.asm.simulator.IResolvedOperandValue;com.pnfsoftware.jeb.core.units.code.asm.simulator.ResolvedOperandByteValue(value:long,size:int,byteOrder:java.nio.ByteOrder)|com.pnfsoftware.jeb.core.units.code.asm.simulator.ResolvedOperandByteValue(b:byte[]);getBytes()byte[]|getElements()java.util.List;
C;0;RotatingFileOutputStream;com.pnfsoftware.jeb.util.io;com.pnfsoftware.jeb.util.io.RotatingFileOutputStream;java.io.OutputStream;;com.pnfsoftware.jeb.util.io.RotatingFileOutputStream(folder:java.io.File,basename:java.lang.String,rotFileCount:int,rotFileSize:long)|com.pnfsoftware.jeb.util.io.RotatingFileOutputStream(folder:java.io.File,basename:java.lang.String,rotFileCount:int,rotFileSize:long,buffered:boolean,appendToExisting:boolean);write(b:int)void|write(b:byte[],off:int,len:int)void|close()void|flush()void|rotate()void|getAdditionalOutputFile(i:int)java.io.File|getRotatingFileCount()int|getRotatingFileSize()long|isBuffered()boolean|getRotationCount()long|getOutputFile()java.io.File;
C;0;RoutineIOSlot;com.pnfsoftware.jeb.core.units.code.asm.type;com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot;java.lang.Object;;;equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|getValue(endian:com.pnfsoftware.jeb.util.io.Endianness)int|getValue()int|getType()com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot$Type|createRegisterPairEndianDep(index1:int,index2:int)com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|createRegisterPair(index1:int,index2:int)com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|createRegister(index:int)com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot|getValue2(endian:com.pnfsoftware.jeb.util.io.Endianness)int|getValue2()int|createStackSlot(slotIndex:int)com.pnfsoftware.jeb.core.units.code.asm.type.RoutineIOSlot;
C;0;RunnableWithProgressCallback;com.pnfsoftware.jeb.util.base;com.pnfsoftware.jeb.util.base.RunnableWithProgressCallback;com.pnfsoftware.jeb.util.base.ExecutionTargetWithProgressCallback;java.lang.Runnable;com.pnfsoftware.jeb.util.base.RunnableWithProgressCallback();;
C;0;RuntimeProjectUtil;com.pnfsoftware.jeb.core;com.pnfsoftware.jeb.core.RuntimeProjectUtil;java.lang.Object;;com.pnfsoftware.jeb.core.RuntimeProjectUtil();findUnits(prj:com.pnfsoftware.jeb.core.IRuntimeProject,c:java.lang.Class)java.util.List|findFirstUnitByType(prj:com.pnfsoftware.jeb.core.IRuntimeProject,c:java.lang.Class,strict:boolean)com.pnfsoftware.jeb.core.units.IUnit|destroyLiveArtifact(liveArtifact:com.pnfsoftware.jeb.core.ILiveArtifact)boolean|findUnitContributions(prj:com.pnfsoftware.jeb.core.IRuntimeProject,target:com.pnfsoftware.jeb.core.units.IUnit)java.util.List|getAllUnits(prj:com.pnfsoftware.jeb.core.IRuntimeProject)java.util.List|findProject(object:com.pnfsoftware.jeb.core.IUnitCreator)com.pnfsoftware.jeb.core.IRuntimeProject|findUnitsByType(prj:com.pnfsoftware.jeb.core.IRuntimeProject,c:java.lang.Class,strict:boolean)java.util.List|hasNotification(prj:com.pnfsoftware.jeb.core.IRuntimeProject,minLevel:int)boolean|hasNotification(prj:com.pnfsoftware.jeb.core.IRuntimeProject)boolean|filterUnits(prj:com.pnfsoftware.jeb.core.IRuntimeProject,filter:com.pnfsoftware.jeb.core.IUnitFilter)java.util.List;
C;0;S;com.pnfsoftware.jeb.client;com.pnfsoftware.jeb.client.S;java.lang.Object;;com.pnfsoftware.jeb.client.S();getLanguage()java.lang.String|s(id:int,lang:int)java.lang.String|s(id:int)java.lang.String|getDefaultLanguage()java.lang.String|setLanguage(id:int)boolean|setLanguage(langcode:java.lang.String)boolean;lang_de:int|lang_en:int|lang_es:int|lang_fr:int|lang_it:int|lang_ja:int|lang_ko:int|lang_pt:int|lang_ru:int|lang_tr:int|lang_zh:int|languages:java.lang.String[]|nb_identifiers:int|id_abort:int|id_about:int|id_about2:int|id_accept:int|id_action:int|id_action_changebase:int|id_action_changebase_help:int|id_action_comment:int|id_action_comment_class:int|id_action_comment_field:int|id_action_comment_help:int|id_action_comment_instruction:int|id_action_comment_method:int|id_action_decompile:int|id_action_follow:int|id_action_follow_help:int|id_action_frefresh:int|id_action_frefresh_ask:int|id_action_frefresh_help:int|id_action_gobackward:int|id_action_goforward:int|id_action_help:int|id_action_help_help:int|id_action_iteminfo:int|id_action_iteminfo_help:int|id_action_iteminfo_information:int|id_action_iteminfo_linenumber:int|id_action_iteminfo_methover:int|id_action_realxrefs:int|id_action_realxrefs_codeoffset:int|id_action_realxrefs_codexrefs:int|id_action_realxrefs_help:int|id_action_realxrefs_method:int|id_action_refresh:int|id_action_refresh_help:int|id_action_rename:int|id_action_rename_class:int|id_action_rename_errormethod:int|id_action_rename_field:int|id_action_rename_help:int|id_action_rename_identifier:int|id_action_rename_infoovr:int|id_action_rename_invalidname:int|id_action_rename_label:int|id_action_rename_method:int|id_action_xrefs:int|id_action_xrefs_help:int|id_action_xrefs_visualxrefs:int|id_action_xrefs_warning:int|id_active:int|id_adddir:int|id_addjar:int|id_address:int|id_advanced:int|id_all:int|id_allfiles:int|id_analysts:int|id_and:int|id_androidapps:int|id_apidoc:int|id_apk_assetserror:int|id_apk_certerror:int|id_apk_corrupt:int|id_apk_liberror:int|id_apk_manifesterror:int|id_apk_notallresprocessed:int|id_apk_reserror:int|id_apk_resonly:int|id_apkdec_cannotfindframework:int|id_apkparser:int|id_apkresidsparsingerror:int|id_artifact:int|id_artifact_invalidpath:int|id_artifact_name:int|id_artifact_noexist:int|id_artifact_path:int|id_artifact_properties:int|id_artifact_updatepath:int|id_artifacts:int|id_asm_warning_enclosingclass:int|id_asm_warning_manymethods:int|id_assembly:int|id_assets:int|id_attach:int|id_audio:int|id_audioerror:int|id_author:int|id_authors:int|id_automation_floatingsetup:int|id_automation_setup1:int|id_automation_setup2:int|id_automation_setup3:int|id_automation_setup4:int|id_automation_updatedisable:int|id_automation_updateerror:int|id_automation_updatesuccess:int|id_background:int|id_backgrounds:int|id_basedir:int|id_bold:int|id_breakpoint:int|id_breakpoints:int|id_browse:int|id_buildtype:int|id_bulletinboard:int|id_cancel:int|id_candidatejdb:int|id_cannotprocessfile:int|id_cannotreadfile:int|id_casesensitive:int|id_certerror:int|id_certificate:int|id_certparsingerror:int|id_cfg_apk_parse_dex_only:int|id_cfg_apk_verify:int|id_cfg_asm_comment_on_resid:int|id_cfg_asm_insert_blanks:int|id_cfg_asm_mthreshold_disable_interactivity:int|id_cfg_asm_separator_char:int|id_cfg_asm_separator_length:int|id_cfg_asm_show_addresses:int|id_cfg_asm_show_annotations:int|id_cfg_asm_show_bytecode:int|id_cfg_asm_show_debug:int|id_cfg_asm_show_linenums:int|id_cfg_asm_smali_compat:int|id_cfg_asm_use_p_for_params:int|id_cfg_check_java:int|id_cfg_check_update:int|id_cfg_check_update_auto:int|id_cfg_compress_db:int|id_cfg_ctl_check_update:int|id_cfg_ctl_interface:int|id_cfg_ctl_port:int|id_cfg_db_autosave_timeout_minutes:int|id_cfg_decomp_aggressive_substitutions:int|id_cfg_decomp_ast_opt_create_condassigns:int|id_cfg_decomp_ast_opt_create_for_loops:int|id_cfg_decomp_ast_opt_create_multidimarrays:int|id_cfg_decomp_ast_opt_create_varargs:int|id_cfg_decomp_ast_opt_inline_synth_access_calls:int|id_cfg_decomp_ast_opt_string_concat:int|id_cfg_decomp_identname_from_debuginfo:int|id_cfg_decomp_identname_from_type:int|id_cfg_decomp_method_timeout:int|id_cfg_decomp_parse_debuginfo:int|id_cfg_decomp_parse_trycatches:int|id_cfg_dex_check_access_flags:int|id_cfg_dex_check_hashes:int|id_cfg_dex_check_version:int|id_cfg_dex_parse_extended_opcodes:int|id_cfg_eula_accepted:int|id_cfg_first_run:int|id_cfg_java_display_private_methods_last:int|id_cfg_java_gen_annotations:int|id_cfg_java_gen_synth_fields:int|id_cfg_java_gen_synth_methods:int|id_cfg_java_insert_blanks:int|id_cfg_java_keep_parentheses:int|id_cfg_java_keep_this:int|id_cfg_java_numbers_hexa:int|id_cfg_java_port_debug_param_names:int|id_cfg_java_wordwrap_length:int|id_cfg_last_run:int|id_cfg_last_version_run:int|id_cfg_license_key:int|id_cfg_path_dalvikdoc:int|id_cfg_path_javadoc:int|id_cfg_path_plugins:int|id_cfg_path_sigs:int|id_cfg_preferred_language:int|id_cfg_proxy:int|id_cfg_support_expired:int|id_cfg_trymergemultidex:int|id_cfg_ui_classhier_expandbl:int|id_cfg_ui_classhier_showinner:int|id_cfg_ui_code_font:int|id_cfg_ui_codesplit_vertical:int|id_cfg_ui_itemcount_warning:int|id_cfg_ui_optdlg_selected_tab:int|id_cfg_ui_plugin_autorun_allow:int|id_cfg_ui_shell_height:int|id_cfg_ui_shell_max:int|id_cfg_ui_shell_width:int|id_cfg_ui_styles:int|id_cfg_ui_w_console_ratio:int|id_cfg_ui_xref_rowcnt:int|id_cfg_xml_wordwrap_length:int|id_ch_invalidbl:int|id_ch_showinnerclasses:int|id_changelist:int|id_changerestart:int|id_changessave:int|id_checklog:int|id_checkupdate:int|id_classhierarchy:int|id_classidentifiers:int|id_classnamefilter:int|id_clear:int|id_client:int|id_clients:int|id_close:int|id_codefont:int|id_comment:int|id_comments:int|id_completed_errors:int|id_completed_success:int|id_confirmation:int|id_confirmdeletion:int|id_constants:int|id_copiedtocb:int|id_copy:int|id_copyright:int|id_copytocb:int|id_createdon:int|id_createnewlayout:int|id_ctl_incompatible:int|id_ctl_nomoreseats:int|id_ctl_oldclient:int|id_ctl_unresponsive:int|id_ctl_unresponsive_retry:int|id_ctllocate:int|id_ctlproxysettings:int|id_ctlsetup1:int|id_ctlsetup2:int|id_ctlsetup3:int|id_curdir:int|id_currentline:int|id_currentsourceunit:int|id_customactions:int|id_cut:int|id_dalvikfiles:int|id_data:int|id_database:int|id_dbgattach:int|id_decline:int|id_decomp_cannotinterrupt:int|id_decomp_class:int|id_decomp_error:int|id_decomp_interrupt:int|id_decomp_interrupted:int|id_decomp_method:int|id_decompabort:int|id_decompilation:int|id_decompiledjava:int|id_decompiler:int|id_decompiling:int|id_default:int|id_defaults:int|id_demo:int|id_demo_apinotavailable:int|id_demo_automation:int|id_demo_copying:int|id_demo_cutting:int|id_demo_saving:int|id_demoexpired:int|id_demoexpon:int|id_demoinfo:int|id_demojavanoexport:int|id_demolim1:int|id_demolim2:int|id_demolim3:int|id_demolim4:int|id_demoliminclude:int|id_demolimitation:int|id_demonoexport:int|id_demonoredist:int|id_demonosave:int|id_description:int|id_destinationfolder:int|id_details:int|id_development:int|id_developmentmode:int|id_devices:int|id_dex_analysiscomplete:int|id_dex_error:int|id_dexparser:int|id_directory:int|id_disabled:int|id_documentation:int|id_done:int|id_donotshowdlginfuture:int|id_dstfile:int|id_duplicatelayout:int|id_edit:int|id_email:int|id_emailaddress:int|id_empty:int|id_enabled:int|id_endoffset:int|id_engine:int|id_engine_dupstring:int|id_engine_invalidanno:int|id_engine_invaliddexchksum:int|id_engine_invaliddexhdrsize:int|id_engine_invaliddexsig:int|id_engine_invalidinnerclass:int|id_engine_neinstanceremains:int|id_engine_parsingerror:int|id_engine_reusedmethods1:int|id_engine_reusedmethods2:int|id_engine_unknowndexversion:int|id_engine_zipjar:int|id_engines:int|id_error:int|id_error1:int|id_error2:int|id_error3:int|id_error4:int|id_erroroccurred:int|id_errorpluginincompat:int|id_errorsavingtojdb:int|id_eula:int|id_eulacopy:int|id_eulamustbeaccepted:int|id_eularejected:int|id_execengplugin:int|id_execoptions:int|id_execscript:int|id_existingjdb:int|id_exit:int|id_exiting:int|id_exitprg:int|id_exitrecommended:int|id_export:int|id_exportasm:int|id_exportasm_tohtml:int|id_exportdecomp:int|id_exportjava:int|id_exportres:int|id_exportres_info:int|id_exports:int|id_exportsmali:int|id_exportsmali_info:int|id_external:int|id_externalclasses:int|id_externalfields:int|id_externalmethods:int|id_extract:int|id_extractbintofile:int|id_extractingto:int|id_file:int|id_fileproperties:int|id_filter:int|id_filtertypeenter:int|id_find:int|id_findnext:int|id_firstexec1:int|id_firstexec2:int|id_firstexec3:int|id_firstname:int|id_flags:int|id_floatingbuild:int|id_floatingclientsetup:int|id_fontsandcolors:int|id_foreground:int|id_foregrounds:int|id_found:int|id_fpvalue:int|id_free:int|id_fullname:int|id_general:int|id_generatekey:int|id_generatingdisassembly:int|id_hellouser:int|id_help:int|id_hexdump:int|id_hexvalue:int|id_hidetoolbar:int|id_hierarchy:int|id_hinttexthistory:int|id_howtodecompile0:int|id_howtodecompile1:int|id_howtodecompile2:int|id_howtodecompile3:int|id_hyphen:int|id_id:int|id_identfailed:int|id_image:int|id_implements:int|id_import:int|id_imports:int|id_increasemem:int|id_index:int|id_info:int|id_info_open:int|id_info_save:int|id_information:int|id_input:int|id_inputcannotbeidentifiedas:int|id_inputcannotbeparsedas:int|id_inputpkgname:int|id_installupdate:int|id_internal:int|id_internet:int|id_internetupdate:int|id_invalidclassnamefilter:int|id_invalidcolordata:int|id_invalidcontroller:int|id_invaliddexfile:int|id_invalidfile:int|id_invalidjdb:int|id_invalidshortcut:int|id_invalidstyledata:int|id_invalidstyletype:int|id_invalidtarget:int|id_invalidtarget2:int|id_italic:int|id_item:int|id_items:int|id_java:int|id_javaarchives:int|id_javasources:int|id_javawarning1:int|id_javawarning2:int|id_javawarning3:int|id_jdbalreadyexists:int|id_jebdatabases:int|id_jebterminate:int|id_jebtermshortly:int|id_jumpto:int|id_jvmreserved:int|id_key:int|id_keyname:int|id_label:int|id_langchange:int|id_language:int|id_lastname:int|id_lastsavedon:int|id_layoutdeleted:int|id_libraries:int|id_license:int|id_license_copied:int|id_licensedata:int|id_licensedto:int|id_licenseid:int|id_licensekey:int|id_licensekeyerror:int|id_licensekeygenerated:int|id_licensekeynotgenerated:int|id_licenses:int|id_line:int|id_linenumber:int|id_lines:int|id_linuxonly:int|id_loadingprj:int|id_localvars:int|id_location:int|id_log:int|id_machines:int|id_macosonly:int|id_manifest:int|id_manualkeygen:int|id_manuallydownloadarchive:int|id_manualupdate:int|id_memcode:int|id_memoryusage:int|id_memuse:int|id_menu_about:int|id_menu_action:int|id_menu_add_artifact:int|id_menu_apidoc:int|id_menu_bulletinboard:int|id_menu_changelayout:int|id_menu_changelist:int|id_menu_checkupdate:int|id_menu_close:int|id_menu_closeview:int|id_menu_comment:int|id_menu_convert:int|id_menu_copy:int|id_menu_createpackage:int|id_menu_customactions:int|id_menu_cut:int|id_menu_debugger:int|id_menu_decompile:int|id_menu_decompiled_code:int|id_menu_definecode:int|id_menu_definedata:int|id_menu_definefunc:int|id_menu_defineproc:int|id_menu_definestring:int|id_menu_delete:int|id_menu_deletelayout:int|id_menu_detach:int|id_menu_devportal:int|id_menu_donotreplviews:int|id_menu_edit:int|id_menu_editarray:int|id_menu_editcode:int|id_menu_editdata:int|id_menu_editfunc:int|id_menu_editproc:int|id_menu_editstackframe:int|id_menu_editstring:int|id_menu_edittype:int|id_menu_engines:int|id_menu_enginesplugins:int|id_menu_execute:int|id_menu_executeengplugin:int|id_menu_exit:int|id_menu_export:int|id_menu_extractto:int|id_menu_faq:int|id_menu_file:int|id_menu_find:int|id_menu_findnext:int|id_menu_follow:int|id_menu_followitem:int|id_menu_fontstyles:int|id_menu_help:int|id_menu_hidetoolbar:int|id_menu_import:int|id_menu_jumpto:int|id_menu_keepunitsinsync:int|id_menu_language:int|id_menu_locateinprjexpl:int|id_menu_maximizeview:int|id_menu_memoryusage:int|id_menu_movetopackage:int|id_menu_navbackward:int|id_menu_navforward:int|id_menu_navigation:int|id_menu_new:int|id_menu_newlayout:int|id_menu_nextitem:int|id_menu_notifications:int|id_menu_onlinemanual:int|id_menu_open:int|id_menu_open_recent:int|id_menu_opennewview:int|id_menu_opentypeeditor:int|id_menu_openview:int|id_menu_options:int|id_menu_overrides:int|id_menu_parseat:int|id_menu_parsers:int|id_menu_paste:int|id_menu_pause:int|id_menu_plugins:int|id_menu_preferences:int|id_menu_previtem:int|id_menu_processorplugins:int|id_menu_properties:int|id_menu_quit:int|id_menu_recent:int|id_menu_refresh:int|id_menu_rename:int|id_menu_resetstate:int|id_menu_restart:int|id_menu_restoreview:int|id_menu_resumethread:int|id_menu_run:int|id_menu_runlastscript:int|id_menu_runscript:int|id_menu_runtoline:int|id_menu_save:int|id_menu_saveas:int|id_menu_scripts:int|id_menu_selectall:int|id_menu_selecttype:int|id_menu_settings:int|id_menu_showconsole:int|id_menu_showhier:int|id_menu_showlast:int|id_menu_showlogger:int|id_menu_showprjexp:int|id_menu_showtoolbar:int|id_menu_showview:int|id_menu_softwareupdate:int|id_menu_start:int|id_menu_stepinto:int|id_menu_stepout:int|id_menu_stepover:int|id_menu_stop:int|id_menu_style:int|id_menu_suspendthread:int|id_menu_terminate:int|id_menu_togglebreakpoint:int|id_menu_typehier:int|id_menu_undefine:int|id_menu_usermanual:int|id_menu_window:int|id_menu_xrefs:int|id_multidexcontinue:int|id_multidexcontinuesuccess:int|id_multidexfailure:int|id_multidexinfo:int|id_multidexnomerge:int|id_multidexsuccess:int|id_multidextrymerge:int|id_name:int|id_namelayout:int|id_new:int|id_no:int|id_nodescription:int|id_nodexerror:int|id_normal:int|id_note:int|id_notes:int|id_notes_info:int|id_notfound:int|id_notifications:int|id_notrecommended:int|id_offset:int|id_ok:int|id_onlinemanual:int|id_onlydecomp:int|id_open:int|id_openinbrowser:int|id_openingfile:int|id_openjdbinstead:int|id_openprojectorart:int|id_opt_advancedoptions:int|id_opt_simpleoptions:int|id_optional:int|id_options:int|id_or:int|id_organization:int|id_originalpath:int|id_os_linux:int|id_os_macos:int|id_os_windows:int|id_other:int|id_output:int|id_overview:int|id_parseat:int|id_parser:int|id_parsers:int|id_parsingfailed:int|id_passive:int|id_password:int|id_paste:int|id_path:int|id_pause:int|id_performmanualupdate:int|id_pleasegenkey:int|id_pleaseproceedexec:int|id_pleasewait:int|id_plugin:int|id_plugin_autooff:int|id_plugin_invalid:int|id_plugin_invaliddir:int|id_plugin_invalidfile:int|id_plugin_loading:int|id_pluginclassnames:int|id_pluginclasspath:int|id_pluginfolder:int|id_plugins:int|id_port:int|id_preferences:int|id_presscanceltoabort:int|id_pressoktoexit:int|id_pressselectfile:int|id_prgdir:int|id_priorities:int|id_priority:int|id_prj_name:int|id_prj_properties:int|id_prjcuropen:int|id_prjsave:int|id_prjsaving:int|id_proceedquestion:int|id_processes:int|id_processingart:int|id_progressinfo:int|id_properties:int|id_property:int|id_proxy:int|id_proxy_enable:int|id_proxy_hostname:int|id_proxy_port:int|id_proxy_type:int|id_pwdinemail:int|id_pythonscripts:int|id_quit:int|id_regexp:int|id_remove:int|id_rename:int|id_rendering:int|id_reset:int|id_resetdefaults:int|id_resources:int|id_restartrequired:int|id_revsearch:int|id_rootunits:int|id_runlastscript:int|id_runningscript:int|id_runscript:int|id_save:int|id_saveandrestart:int|id_saveas:int|id_savedtojdb:int|id_savingto:int|id_savingtodst:int|id_script_compileerrors:int|id_script_errornotloaded:int|id_script_errornotterminated:int|id_script_execerror:int|id_script_interrupted:int|id_script_loaderrorjar:int|id_script_loaderrorjarclass:int|id_script_loaderrorjarmanifest:int|id_script_loaderrorjavascript:int|id_script_loaderrorjavascriptclass:int|id_script_loaderrorpython:int|id_script_notfound:int|id_script_requiresjdk:int|id_script_unknownext:int|id_scriptends:int|id_scriptexec:int|id_scripts:int|id_scriptstop:int|id_search:int|id_searching:int|id_searchingfor:int|id_searchstring:int|id_section:int|id_sections:int|id_segment:int|id_segments:int|id_selectall:int|id_selectfont:int|id_selectprocmode:int|id_selectupdatearchive:int|id_server:int|id_server_alreadyrunning:int|id_server_cannotaccept:int|id_server_cannotlisten:int|id_server_clientcountinfo:int|id_server_exception:int|id_server_invalidinterface:int|id_server_listening:int|id_server_mode:int|id_server_setup1:int|id_servers:int|id_setup:int|id_showall:int|id_signature:int|id_simple:int|id_size:int|id_sizebytes:int|id_skip:int|id_smali:int|id_softwareupdater:int|id_stack:int|id_stackframe:int|id_start:int|id_status:int|id_stepinto:int|id_stepover:int|id_stepup:int|id_stop:int|id_string:int|id_strings:int|id_style:int|id_stylemanager:int|id_styles:int|id_subscriptionexpires:int|id_supportexpired:int|id_suspendallthreads:int|id_symbol:int|id_symbols:int|id_tag_console:int|id_tag_logger:int|id_tag_prjexp:int|id_tag_prjexp_info:int|id_taskcancelled:int|id_taskerror:int|id_text:int|id_thankyouforkey:int|id_theme:int|id_themes:int|id_thread:int|id_threads:int|id_thridpartyuse:int|id_togglecodesplit:int|id_toggletoolbar:int|id_tryagainkeygen:int|id_type:int|id_typeinfo:int|id_types:int|id_uimodelreset:int|id_uiresetrequired:int|id_uistatereset:int|id_unit:int|id_unit_name:int|id_unit_properties:int|id_unit_type:int|id_unitcouldnotbeprocessed:int|id_unitnotprocessed:int|id_unittreedelconfirm:int|id_unnamed:int|id_unnamedlayout:int|id_unprocessed:int|id_unrecoverableerror:int|id_update:int|id_update_checking:int|id_update_checklatest:int|id_update_corrupt:int|id_update_diskerror:int|id_update_downloaderror:int|id_update_downloading:int|id_update_error:int|id_update_found:int|id_update_manual:int|id_update_nodownload:int|id_update_success:int|id_update_uptodate:int|id_used:int|id_usedarktheme:int|id_user:int|id_userid:int|id_users:int|id_valildfor:int|id_value:int|id_verboselogging:int|id_verify:int|id_version:int|id_visualization:int|id_voice:int|id_warning:int|id_website:int|id_welcome:int|id_window:int|id_windowsonly:int|id_wraparound:int|id_xml:int|id_yes:int
C;0;SafeLockImpl;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.SafeLockImpl;java.lang.Object;com.pnfsoftware.jeb.util.concurrent.ISafeLock;com.pnfsoftware.jeb.util.concurrent.SafeLockImpl();lock(forWriting:boolean)void|unlock(forWriting:boolean)void|rw()com.pnfsoftware.jeb.util.concurrent.ACLock|debugFormatStatus()java.lang.String|getInternalLock()java.util.concurrent.locks.ReentrantReadWriteLock|lockRead()void|ro()com.pnfsoftware.jeb.util.concurrent.ACLock|lockWrite()void|unlockWrite()void|unlockRead()void;
C;0;SafeLockUtil;com.pnfsoftware.jeb.util.concurrent;com.pnfsoftware.jeb.util.concurrent.SafeLockUtil;java.lang.Object;;com.pnfsoftware.jeb.util.concurrent.SafeLockUtil();debugVerifyNoLockRead(lock:com.pnfsoftware.jeb.util.concurrent.ISafeLock)void|debugVerifyLockWrite(lock:com.pnfsoftware.jeb.util.concurrent.ISafeLock)void|debugVerifyLockRead(lock:com.pnfsoftware.jeb.util.concurrent.ISafeLock)void;
C;0;SampleDetermination;com.pnfsoftware.jeb.client.jebio;com.pnfsoftware.jeb.client.jebio.SampleDetermination;java.lang.Enum;;;values()com.pnfsoftware.jeb.client.jebio.SampleDetermination[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.client.jebio.SampleDetermination|getMessage()java.lang.String|getLevel()int|fromLevel(level:int)com.pnfsoftware.jeb.client.jebio.SampleDetermination;UNKNOWN:com.pnfsoftware.jeb.client.jebio.SampleDetermination|CLEAN:com.pnfsoftware.jeb.client.jebio.SampleDetermination|SUSPICIOUS:com.pnfsoftware.jeb.client.jebio.SampleDetermination|MALWARE:com.pnfsoftware.jeb.client.jebio.SampleDetermination
C;0;ScriptException;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.ScriptException;com.pnfsoftware.jeb.core.exceptions.JebException;;com.pnfsoftware.jeb.client.script.ScriptException(message:java.lang.String)|com.pnfsoftware.jeb.client.script.ScriptException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.client.script.ScriptException(message:java.lang.String,cause:java.lang.Throwable);;
C;0;ScriptExecutionException;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.ScriptExecutionException;com.pnfsoftware.jeb.client.script.ScriptException;;com.pnfsoftware.jeb.client.script.ScriptExecutionException(cause:java.lang.Throwable);;
C;0;ScriptInitializationException;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.ScriptInitializationException;com.pnfsoftware.jeb.client.script.ScriptException;;com.pnfsoftware.jeb.client.script.ScriptInitializationException(cause:java.lang.Throwable);;
C;0;ScriptLoader;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.ScriptLoader;java.lang.Object;;com.pnfsoftware.jeb.client.script.ScriptLoader(path:java.lang.String,libdirPath:java.lang.String);execute(context:com.pnfsoftware.jeb.client.api.IClientContext)void|getScriptType()com.pnfsoftware.jeb.client.script.ScriptType;
C;0;ScriptPreparationException;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.ScriptPreparationException;com.pnfsoftware.jeb.client.script.ScriptException;;com.pnfsoftware.jeb.client.script.ScriptPreparationException(message:java.lang.String)|com.pnfsoftware.jeb.client.script.ScriptPreparationException(cause:java.lang.Throwable)|com.pnfsoftware.jeb.client.script.ScriptPreparationException(message:java.lang.String,cause:java.lang.Throwable);;
C;0;ScriptType;com.pnfsoftware.jeb.client.script;com.pnfsoftware.jeb.client.script.ScriptType;java.lang.Enum;;;values()com.pnfsoftware.jeb.client.script.ScriptType[]|valueOf(name:java.lang.String)com.pnfsoftware.jeb.client.script.ScriptType;JAVA:com.pnfsoftware.jeb.client.script.ScriptType|PYTHON:com.pnfsoftware.jeb.client.script.ScriptType
C;0;SecureSocketInfo;com.pnfsoftware.jeb.util.net;com.pnfsoftware.jeb.util.net.SecureSocketInfo;java.lang.Object;;com.pnfsoftware.jeb.util.net.SecureSocketInfo(sslContext:javax.net.ssl.SSLContext,trustManager:javax.net.ssl.X509TrustManager,hostnameVerifier:javax.net.ssl.HostnameVerifier);getSslContext()javax.net.ssl.SSLContext|getTrustManager()javax.net.ssl.X509TrustManager|getHostnameVerifier()javax.net.ssl.HostnameVerifier;
C;0;SegmentInformation;com.pnfsoftware.jeb.core.units.codeobject;com.pnfsoftware.jeb.core.units.codeobject.SegmentInformation;java.lang.Object;com.pnfsoftware.jeb.core.units.codeobject.ISegmentInformation;com.pnfsoftware.jeb.core.units.codeobject.SegmentInformation(name:java.lang.String,offsetInFile:long,sizeInFile:long,offsetInMemory:long,sizeInMemory:long,flags:int);toString()java.lang.String|getName()java.lang.String|setName(name:java.lang.String)void|getAlignment()long|getSizeInMemory()long|getOffsetInMemory()long|getOffsetInFile()long|getSizeInFile()long|getFlags()int|setFlags(flags:int)void|setOffstInMemory(offsetInMemory:long)void|setOffsetInFile(offsetInFile:long)void|setSizeInFile(sizeInFile:long)void|setSizeInMemory(sizeInMemory:long)void|setAlignment(alignment:long)void;
C;0;SegmentMap;com.pnfsoftware.jeb.util.collect;com.pnfsoftware.jeb.util.collect.SegmentMap;java.util.concurrent.ConcurrentSkipListMap;com.pnfsoftware.jeb.util.collect.ISegmentMap;com.pnfsoftware.jeb.util.collect.SegmentMap()|com.pnfsoftware.jeb.util.collect.SegmentMap(comparator:java.util.Comparator);add(v:com.pnfsoftware.jeb.util.collect.ISegment)com.pnfsoftware.jeb.util.collect.ISegment|put(k:java.lang.Comparable,v:com.pnfsoftware.jeb.util.collect.ISegment)com.pnfsoftware.jeb.util.collect.ISegment|put(arg0:java.lang.Object,arg1:java.lang.Object)java.lang.Object|equals(obj:java.lang.Object)boolean|toString()java.lang.String|hashCode()int|putAll(m:java.util.Map)void|isValidKey(k:java.lang.Comparable)boolean|getOverlappingSegmentsMap(begin:java.lang.Comparable,includeFirstPartialSegment:boolean,end:java.lang.Comparable,includeLastPartialSegment:boolean)java.util.SortedMap|getSegmentContaining(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|isEmptyRange(begin:java.lang.Comparable,end:java.lang.Comparable)boolean|isRemoveSegmentsOnOverlap()boolean|getSegmentAfter(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|getSegmentBefore(key:java.lang.Comparable)com.pnfsoftware.jeb.util.collect.ISegment|contiguousSubMap(begin:java.lang.Comparable,end:java.lang.Comparable,factory:com.pnfsoftware.jeb.util.collect.ISegmentFactory)java.util.SortedMap|isValidSegment(v:com.pnfsoftware.jeb.util.collect.ISegment)boolean|compareKeys(a:java.lang.Comparable,b:java.lang.Comparable)int|generateGapItems(begin:java.lang.Comparable,allowHeader:boolean,end:java.lang.Comparable,allowTrailer:boolean,factory:com.pnfsoftware.jeb.util.collect.ISegmentFactory,addItemsToMap:boolean)java.util.List|generateGaps(begin:java.lang.Comparable,allowHeader:boolean,end:java.lang.Comparable,allowTrailer:boolean,verifier:com.pnfsoftware.jeb.util.collect.ISegmentGapVerifier)java.util.List|generateGaps(begin:java.lang.Comparable,allowHeader:boolean,end:java.lang.Comparable,allowTrailer:boolean)java.util.List|fillGaps(begin:java.lang.Comparable,end:java.lang.Comparable,factory:com.pnfsoftware.jeb.util.collect.ISegmentFactory)java.util.List|setRemoveSegmentsOnOverlap(removeSegmentsOnOverlap:boolean)void;
I;0;Ser;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.Ser;;java.lang.annotation.Annotation;;;
C;0;SerArrayList;com.pnfsoftware.jeb.util.serialization.objects;com.pnfsoftware.jeb.util.serialization.objects.SerArrayList;java.util.ArrayList;com.pnfsoftware.jeb.util.serialization.objects.SerList;com.pnfsoftware.jeb.util.serialization.objects.SerArrayList()|com.pnfsoftware.jeb.util.serialization.objects.SerArrayList(c:java.util.Collection)|com.pnfsoftware.jeb.util.serialization.objects.SerArrayList(initialCapacity:int);;
I;0;SerConstructor;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerConstructor;;java.lang.annotation.Annotation;;;
I;0;SerCustomInit;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerCustomInit;;java.lang.annotation.Annotation;;;
I;0;SerCustomInitPostGraph;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerCustomInitPostGraph;;java.lang.annotation.Annotation;;;
I;0;SerCustomRead;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerCustomRead;;java.lang.annotation.Annotation;;;
I;0;SerCustomWrite;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerCustomWrite;;java.lang.annotation.Annotation;;;
I;0;SerDisabled;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerDisabled;;java.lang.annotation.Annotation;;;
I;0;SerId;com.pnfsoftware.jeb.util.serialization.annotations;com.pnfsoftware.jeb.util.serialization.annotations.SerId;;java.lang.annotation.Annotation;;value()int|version()int|deprecated()boolean;
I;0;SerList;com.pnfsoftware.jeb.util.serialization.objects;com.pnfsoftware.jeb.util.serialization.objects.SerList;;java.util.List;;;
I;0;SerMap;com.pnfsoftware.jeb.util.serialization.objects;com.pnfsoftware.jeb.util.serialization.objects.SerMap;;java.util.Map;;;
C;0;SerReentrantLock;com.pnfsoftware.jeb.util.serialization.objects;com.pnfsoftware.jeb.util.serialization.objects.SerReentrantLock;java.lang.Object;java.util.concurrent.locks.Lock;com.pnfsoftware.jeb.util.serialization.objects.SerReentrantLock(fair:boolean)|com.pnfsoftware.jeb.util.serialization.objects.SerReentrantLock();lock()void|get()java.util.concurrent.locks.ReentrantLock|getHoldCount()int|getQueueLength()int|getWaitQueueLength(condition:java.util.concurrent.locks.Condition)int|hasQueuedThread(thread:java.lang.Thread)boolean|hasQueuedThreads()boolean|hasWaiters(condition:java.util.concurrent.locks.Condition)boolean|isFair()boolean|isHeldByCurrentThread()boolean|isLocked()boolean|lockInterruptibly()void|newCondition()java.util.concurrent.locks.Condition|tryLock(timeout:long,unit:java.util.concurrent.TimeUnit)boolean|tryLock()boolean|unlock()void;