This repository was archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 805
Expand file tree
/
Copy pathCorDebugExtensionMethods.generated.cs
More file actions
3357 lines (2860 loc) · 93.9 KB
/
CorDebugExtensionMethods.generated.cs
File metadata and controls
3357 lines (2860 loc) · 93.9 KB
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
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Debugger.Interop.CorDebug
{
public static partial class CorDebugExtensionMethods
{
public static void CanLaunchOrAttach(this CorDebugClass instance, uint dwProcessId, int win32DebuggingEnabled)
{
instance.__CanLaunchOrAttach(dwProcessId, win32DebuggingEnabled);
}
public static ICorDebugProcess CreateProcess(this CorDebugClass instance, string lpApplicationName, string lpCommandLine, ref _SECURITY_ATTRIBUTES lpProcessAttributes, ref _SECURITY_ATTRIBUTES lpThreadAttributes, int bInheritHandles, uint dwCreationFlags, IntPtr lpEnvironment, string lpCurrentDirectory, uint lpStartupInfo,
uint lpProcessInformation, CorDebugCreateProcessFlags debuggingFlags)
{
ICorDebugProcess ppProcess;
instance.__CreateProcess(lpApplicationName, lpCommandLine, ref lpProcessAttributes, ref lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInformation,
debuggingFlags, out ppProcess);
ProcessOutParameter(lpProcessAttributes);
ProcessOutParameter(lpThreadAttributes);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcess DebugActiveProcess(this CorDebugClass instance, uint id, int win32Attach)
{
ICorDebugProcess ppProcess;
instance.__DebugActiveProcess(id, win32Attach, out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcessEnum EnumerateProcesses(this CorDebugClass instance)
{
ICorDebugProcessEnum ppProcess;
instance.__EnumerateProcesses(out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcess GetProcess(this CorDebugClass instance, uint dwProcessId)
{
ICorDebugProcess ppProcess;
instance.__GetProcess(dwProcessId, out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static void Initialize(this CorDebugClass instance)
{
instance.__Initialize();
}
public static void SetManagedHandler(this CorDebugClass instance, ICorDebugManagedCallback pCallback)
{
instance.__SetManagedHandler(pCallback);
}
public static void SetUnmanagedHandler(this CorDebugClass instance, ICorDebugUnmanagedCallback pCallback)
{
instance.__SetUnmanagedHandler(pCallback);
}
public static void Terminate(this CorDebugClass instance)
{
instance.__Terminate();
}
public static void CanLaunchOrAttach(this EmbeddedCLRCorDebugClass instance, uint dwProcessId, int win32DebuggingEnabled)
{
instance.__CanLaunchOrAttach(dwProcessId, win32DebuggingEnabled);
}
public static ICorDebugProcess CreateProcess(this EmbeddedCLRCorDebugClass instance, string lpApplicationName, string lpCommandLine, ref _SECURITY_ATTRIBUTES lpProcessAttributes, ref _SECURITY_ATTRIBUTES lpThreadAttributes, int bInheritHandles, uint dwCreationFlags, IntPtr lpEnvironment, string lpCurrentDirectory, uint lpStartupInfo,
uint lpProcessInformation, CorDebugCreateProcessFlags debuggingFlags)
{
ICorDebugProcess ppProcess;
instance.__CreateProcess(lpApplicationName, lpCommandLine, ref lpProcessAttributes, ref lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInformation,
debuggingFlags, out ppProcess);
ProcessOutParameter(lpProcessAttributes);
ProcessOutParameter(lpThreadAttributes);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcess DebugActiveProcess(this EmbeddedCLRCorDebugClass instance, uint id, int win32Attach)
{
ICorDebugProcess ppProcess;
instance.__DebugActiveProcess(id, win32Attach, out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcessEnum EnumerateProcesses(this EmbeddedCLRCorDebugClass instance)
{
ICorDebugProcessEnum ppProcess;
instance.__EnumerateProcesses(out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcess GetProcess(this EmbeddedCLRCorDebugClass instance, uint dwProcessId)
{
ICorDebugProcess ppProcess;
instance.__GetProcess(dwProcessId, out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static void Initialize(this EmbeddedCLRCorDebugClass instance)
{
instance.__Initialize();
}
public static void SetManagedHandler(this EmbeddedCLRCorDebugClass instance, ICorDebugManagedCallback pCallback)
{
instance.__SetManagedHandler(pCallback);
}
public static void SetUnmanagedHandler(this EmbeddedCLRCorDebugClass instance, ICorDebugUnmanagedCallback pCallback)
{
instance.__SetUnmanagedHandler(pCallback);
}
public static void Terminate(this EmbeddedCLRCorDebugClass instance)
{
instance.__Terminate();
}
public static void Initialize(this ICorDebug instance)
{
instance.__Initialize();
}
public static void Terminate(this ICorDebug instance)
{
instance.__Terminate();
}
public static void SetManagedHandler(this ICorDebug instance, ICorDebugManagedCallback pCallback)
{
instance.__SetManagedHandler(pCallback);
}
public static void SetUnmanagedHandler(this ICorDebug instance, ICorDebugUnmanagedCallback pCallback)
{
instance.__SetUnmanagedHandler(pCallback);
}
public static ICorDebugProcess CreateProcess(this ICorDebug instance, string lpApplicationName, string lpCommandLine, ref _SECURITY_ATTRIBUTES lpProcessAttributes, ref _SECURITY_ATTRIBUTES lpThreadAttributes, int bInheritHandles, uint dwCreationFlags, IntPtr lpEnvironment, string lpCurrentDirectory, uint lpStartupInfo,
uint lpProcessInformation, CorDebugCreateProcessFlags debuggingFlags)
{
ICorDebugProcess ppProcess;
instance.__CreateProcess(lpApplicationName, lpApplicationName + lpCommandLine, ref lpProcessAttributes, ref lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment, lpCurrentDirectory, lpStartupInfo, lpProcessInformation,
debuggingFlags, out ppProcess);
ProcessOutParameter(lpProcessAttributes);
ProcessOutParameter(lpThreadAttributes);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcess DebugActiveProcess(this ICorDebug instance, uint id, int win32Attach)
{
ICorDebugProcess ppProcess;
instance.__DebugActiveProcess(id, win32Attach, out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcessEnum EnumerateProcesses(this ICorDebug instance)
{
ICorDebugProcessEnum ppProcess;
instance.__EnumerateProcesses(out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugProcess GetProcess(this ICorDebug instance, uint dwProcessId)
{
ICorDebugProcess ppProcess;
instance.__GetProcess(dwProcessId, out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static void CanLaunchOrAttach(this ICorDebug instance, uint dwProcessId, int win32DebuggingEnabled)
{
instance.__CanLaunchOrAttach(dwProcessId, win32DebuggingEnabled);
}
public static void Stop(this ICorDebugAppDomain instance, uint dwTimeoutIgnored)
{
instance.__Stop(dwTimeoutIgnored);
}
public static void Continue(this ICorDebugAppDomain instance, int fIsOutOfBand)
{
instance.__Continue(fIsOutOfBand);
}
public static int IsRunning(this ICorDebugAppDomain instance)
{
int pbRunning;
instance.__IsRunning(out pbRunning);
return pbRunning;
}
public static int HasQueuedCallbacks(this ICorDebugAppDomain instance, ICorDebugThread pThread)
{
int pbQueued;
instance.__HasQueuedCallbacks(pThread, out pbQueued);
return pbQueued;
}
public static ICorDebugThreadEnum EnumerateThreads(this ICorDebugAppDomain instance)
{
ICorDebugThreadEnum ppThreads;
instance.__EnumerateThreads(out ppThreads);
ProcessOutParameter(ppThreads);
return ppThreads;
}
public static void SetAllThreadsDebugState(this ICorDebugAppDomain instance, CorDebugThreadState state, ICorDebugThread pExceptThisThread)
{
instance.__SetAllThreadsDebugState(state, pExceptThisThread);
}
public static void Detach(this ICorDebugAppDomain instance)
{
instance.__Detach();
}
public static void Terminate(this ICorDebugAppDomain instance, uint exitCode)
{
instance.__Terminate(exitCode);
}
public static ICorDebugErrorInfoEnum CanCommitChanges(this ICorDebugAppDomain instance, uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots)
{
ICorDebugErrorInfoEnum pError;
instance.__CanCommitChanges(cSnapshots, ref pSnapshots, out pError);
ProcessOutParameter(pSnapshots);
ProcessOutParameter(pError);
return pError;
}
public static ICorDebugErrorInfoEnum CommitChanges(this ICorDebugAppDomain instance, uint cSnapshots, ref ICorDebugEditAndContinueSnapshot pSnapshots)
{
ICorDebugErrorInfoEnum pError;
instance.__CommitChanges(cSnapshots, ref pSnapshots, out pError);
ProcessOutParameter(pSnapshots);
ProcessOutParameter(pError);
return pError;
}
public static ICorDebugProcess GetProcess(this ICorDebugAppDomain instance)
{
ICorDebugProcess ppProcess;
instance.__GetProcess(out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugAssemblyEnum EnumerateAssemblies(this ICorDebugAppDomain instance)
{
ICorDebugAssemblyEnum ppAssemblies;
instance.__EnumerateAssemblies(out ppAssemblies);
ProcessOutParameter(ppAssemblies);
return ppAssemblies;
}
public static ICorDebugModule GetModuleFromMetaDataInterface(this ICorDebugAppDomain instance, object pIMetaData)
{
ICorDebugModule ppModule;
instance.__GetModuleFromMetaDataInterface(pIMetaData, out ppModule);
ProcessOutParameter(ppModule);
return ppModule;
}
public static ICorDebugBreakpointEnum EnumerateBreakpoints(this ICorDebugAppDomain instance)
{
ICorDebugBreakpointEnum ppBreakpoints;
instance.__EnumerateBreakpoints(out ppBreakpoints);
ProcessOutParameter(ppBreakpoints);
return ppBreakpoints;
}
public static ICorDebugStepperEnum EnumerateSteppers(this ICorDebugAppDomain instance)
{
ICorDebugStepperEnum ppSteppers;
instance.__EnumerateSteppers(out ppSteppers);
ProcessOutParameter(ppSteppers);
return ppSteppers;
}
public static int IsAttached(this ICorDebugAppDomain instance)
{
int pbAttached;
instance.__IsAttached(out pbAttached);
return pbAttached;
}
public static void GetName(this ICorDebugAppDomain instance, uint cchName, out uint pcchName, IntPtr szName)
{
instance.__GetName(cchName, out pcchName, szName);
}
public static ICorDebugValue GetObject(this ICorDebugAppDomain instance)
{
ICorDebugValue ppObject;
instance.__GetObject(out ppObject);
ProcessOutParameter(ppObject);
return ppObject;
}
public static void Attach(this ICorDebugAppDomain instance)
{
instance.__Attach();
}
public static uint GetID(this ICorDebugAppDomain instance)
{
uint pId;
instance.__GetID(out pId);
return pId;
}
public static ICorDebugType GetArrayOrPointerType(this ICorDebugAppDomain2 instance, uint elementType, uint nRank, ICorDebugType pTypeArg)
{
ICorDebugType ppType;
instance.__GetArrayOrPointerType(elementType, nRank, pTypeArg, out ppType);
ProcessOutParameter(ppType);
return ppType;
}
public static ICorDebugType GetFunctionPointerType(this ICorDebugAppDomain2 instance, uint nTypeArgs, ref ICorDebugType ppTypeArgs)
{
ICorDebugType ppType;
instance.__GetFunctionPointerType(nTypeArgs, ref ppTypeArgs, out ppType);
ProcessOutParameter(ppTypeArgs);
ProcessOutParameter(ppType);
return ppType;
}
public static void Skip(this ICorDebugAppDomainEnum instance, uint celt)
{
instance.__Skip(celt);
}
public static void Reset(this ICorDebugAppDomainEnum instance)
{
instance.__Reset();
}
public static ICorDebugEnum Clone(this ICorDebugAppDomainEnum instance)
{
ICorDebugEnum ppEnum;
instance.__Clone(out ppEnum);
ProcessOutParameter(ppEnum);
return ppEnum;
}
public static uint GetCount(this ICorDebugAppDomainEnum instance)
{
uint pcelt;
instance.__GetCount(out pcelt);
return pcelt;
}
public static uint Next(this ICorDebugAppDomainEnum instance, uint celt, IntPtr values)
{
uint pceltFetched;
instance.__Next(celt, values, out pceltFetched);
return pceltFetched;
}
public static uint GetTheType(this ICorDebugArrayValue instance)
{
uint pType;
instance.__GetType(out pType);
return pType;
}
public static uint GetSize(this ICorDebugArrayValue instance)
{
uint pSize;
instance.__GetSize(out pSize);
return pSize;
}
public static ulong GetAddress(this ICorDebugArrayValue instance)
{
ulong pAddress;
instance.__GetAddress(out pAddress);
return pAddress;
}
public static ICorDebugValueBreakpoint CreateBreakpoint(this ICorDebugArrayValue instance)
{
ICorDebugValueBreakpoint ppBreakpoint;
instance.__CreateBreakpoint(out ppBreakpoint);
ProcessOutParameter(ppBreakpoint);
return ppBreakpoint;
}
public static int IsValid(this ICorDebugArrayValue instance)
{
int pbValid;
instance.__IsValid(out pbValid);
return pbValid;
}
public static ICorDebugValueBreakpoint CreateRelocBreakpoint(this ICorDebugArrayValue instance)
{
ICorDebugValueBreakpoint ppBreakpoint;
instance.__CreateRelocBreakpoint(out ppBreakpoint);
ProcessOutParameter(ppBreakpoint);
return ppBreakpoint;
}
public static uint GetElementType(this ICorDebugArrayValue instance)
{
uint pType;
instance.__GetElementType(out pType);
return pType;
}
public static uint GetRank(this ICorDebugArrayValue instance)
{
uint pnRank;
instance.__GetRank(out pnRank);
return pnRank;
}
public static uint GetCount(this ICorDebugArrayValue instance)
{
uint pnCount;
instance.__GetCount(out pnCount);
return pnCount;
}
public static void GetDimensions(this ICorDebugArrayValue instance, uint cdim, IntPtr dims)
{
instance.__GetDimensions(cdim, dims);
}
public static int HasBaseIndicies(this ICorDebugArrayValue instance)
{
int pbHasBaseIndicies;
instance.__HasBaseIndicies(out pbHasBaseIndicies);
return pbHasBaseIndicies;
}
public static void GetBaseIndicies(this ICorDebugArrayValue instance, uint cdim, IntPtr indicies)
{
instance.__GetBaseIndicies(cdim, indicies);
}
public static ICorDebugValue GetElement(this ICorDebugArrayValue instance, uint cdim, IntPtr indices)
{
ICorDebugValue ppValue;
instance.__GetElement(cdim, indices, out ppValue);
ProcessOutParameter(ppValue);
return ppValue;
}
public static ICorDebugValue GetElementAtPosition(this ICorDebugArrayValue instance, uint nPosition)
{
ICorDebugValue ppValue;
instance.__GetElementAtPosition(nPosition, out ppValue);
ProcessOutParameter(ppValue);
return ppValue;
}
public static ICorDebugProcess GetProcess(this ICorDebugAssembly instance)
{
ICorDebugProcess ppProcess;
instance.__GetProcess(out ppProcess);
ProcessOutParameter(ppProcess);
return ppProcess;
}
public static ICorDebugAppDomain GetAppDomain(this ICorDebugAssembly instance)
{
ICorDebugAppDomain ppAppDomain;
instance.__GetAppDomain(out ppAppDomain);
ProcessOutParameter(ppAppDomain);
return ppAppDomain;
}
public static ICorDebugModuleEnum EnumerateModules(this ICorDebugAssembly instance)
{
ICorDebugModuleEnum ppModules;
instance.__EnumerateModules(out ppModules);
ProcessOutParameter(ppModules);
return ppModules;
}
public static void GetCodeBase(this ICorDebugAssembly instance, uint cchName, out uint pcchName, IntPtr szName)
{
instance.__GetCodeBase(cchName, out pcchName, szName);
}
public static void GetName(this ICorDebugAssembly instance, uint cchName, out uint pcchName, IntPtr szName)
{
instance.__GetName(cchName, out pcchName, szName);
}
public static int IsFullyTrusted(this ICorDebugAssembly2 instance)
{
int pbFullyTrusted;
instance.__IsFullyTrusted(out pbFullyTrusted);
return pbFullyTrusted;
}
public static void Skip(this ICorDebugAssemblyEnum instance, uint celt)
{
instance.__Skip(celt);
}
public static void Reset(this ICorDebugAssemblyEnum instance)
{
instance.__Reset();
}
public static ICorDebugEnum Clone(this ICorDebugAssemblyEnum instance)
{
ICorDebugEnum ppEnum;
instance.__Clone(out ppEnum);
ProcessOutParameter(ppEnum);
return ppEnum;
}
public static uint GetCount(this ICorDebugAssemblyEnum instance)
{
uint pcelt;
instance.__GetCount(out pcelt);
return pcelt;
}
public static uint Next(this ICorDebugAssemblyEnum instance, uint celt, IntPtr values)
{
uint pceltFetched;
instance.__Next(celt, values, out pceltFetched);
return pceltFetched;
}
public static uint GetTheType(this ICorDebugBoxValue instance)
{
uint pType;
instance.__GetType(out pType);
return pType;
}
public static uint GetSize(this ICorDebugBoxValue instance)
{
uint pSize;
instance.__GetSize(out pSize);
return pSize;
}
public static ulong GetAddress(this ICorDebugBoxValue instance)
{
ulong pAddress;
instance.__GetAddress(out pAddress);
return pAddress;
}
public static ICorDebugValueBreakpoint CreateBreakpoint(this ICorDebugBoxValue instance)
{
ICorDebugValueBreakpoint ppBreakpoint;
instance.__CreateBreakpoint(out ppBreakpoint);
ProcessOutParameter(ppBreakpoint);
return ppBreakpoint;
}
public static int IsValid(this ICorDebugBoxValue instance)
{
int pbValid;
instance.__IsValid(out pbValid);
return pbValid;
}
public static ICorDebugValueBreakpoint CreateRelocBreakpoint(this ICorDebugBoxValue instance)
{
ICorDebugValueBreakpoint ppBreakpoint;
instance.__CreateRelocBreakpoint(out ppBreakpoint);
ProcessOutParameter(ppBreakpoint);
return ppBreakpoint;
}
public static ICorDebugObjectValue GetObject(this ICorDebugBoxValue instance)
{
ICorDebugObjectValue ppObject;
instance.__GetObject(out ppObject);
ProcessOutParameter(ppObject);
return ppObject;
}
public static void Activate(this ICorDebugBreakpoint instance, int bActive)
{
instance.__Activate(bActive);
}
public static int IsActive(this ICorDebugBreakpoint instance)
{
int pbActive;
instance.__IsActive(out pbActive);
return pbActive;
}
public static void Skip(this ICorDebugBreakpointEnum instance, uint celt)
{
instance.__Skip(celt);
}
public static void Reset(this ICorDebugBreakpointEnum instance)
{
instance.__Reset();
}
public static ICorDebugEnum Clone(this ICorDebugBreakpointEnum instance)
{
ICorDebugEnum ppEnum;
instance.__Clone(out ppEnum);
ProcessOutParameter(ppEnum);
return ppEnum;
}
public static uint GetCount(this ICorDebugBreakpointEnum instance)
{
uint pcelt;
instance.__GetCount(out pcelt);
return pcelt;
}
public static uint Next(this ICorDebugBreakpointEnum instance, uint celt, IntPtr breakpoints)
{
uint pceltFetched;
instance.__Next(celt, breakpoints, out pceltFetched);
return pceltFetched;
}
public static ICorDebugThread GetThread(this ICorDebugChain instance)
{
ICorDebugThread ppThread;
instance.__GetThread(out ppThread);
ProcessOutParameter(ppThread);
return ppThread;
}
public static void GetStackRange(this ICorDebugChain instance, out ulong pStart, out ulong pEnd)
{
instance.__GetStackRange(out pStart, out pEnd);
}
public static ICorDebugContext GetContext(this ICorDebugChain instance)
{
ICorDebugContext ppContext;
instance.__GetContext(out ppContext);
ProcessOutParameter(ppContext);
return ppContext;
}
public static ICorDebugChain GetCaller(this ICorDebugChain instance)
{
ICorDebugChain ppChain;
instance.__GetCaller(out ppChain);
ProcessOutParameter(ppChain);
return ppChain;
}
public static ICorDebugChain GetCallee(this ICorDebugChain instance)
{
ICorDebugChain ppChain;
instance.__GetCallee(out ppChain);
ProcessOutParameter(ppChain);
return ppChain;
}
public static ICorDebugChain GetPrevious(this ICorDebugChain instance)
{
ICorDebugChain ppChain;
instance.__GetPrevious(out ppChain);
ProcessOutParameter(ppChain);
return ppChain;
}
public static ICorDebugChain GetNext(this ICorDebugChain instance)
{
ICorDebugChain ppChain;
instance.__GetNext(out ppChain);
ProcessOutParameter(ppChain);
return ppChain;
}
public static int IsManaged(this ICorDebugChain instance)
{
int pManaged;
instance.__IsManaged(out pManaged);
return pManaged;
}
public static ICorDebugFrameEnum EnumerateFrames(this ICorDebugChain instance)
{
ICorDebugFrameEnum ppFrames;
instance.__EnumerateFrames(out ppFrames);
ProcessOutParameter(ppFrames);
return ppFrames;
}
public static ICorDebugFrame GetActiveFrame(this ICorDebugChain instance)
{
ICorDebugFrame ppFrame;
instance.__GetActiveFrame(out ppFrame);
ProcessOutParameter(ppFrame);
return ppFrame;
}
public static ICorDebugRegisterSet GetRegisterSet(this ICorDebugChain instance)
{
ICorDebugRegisterSet ppRegisters;
instance.__GetRegisterSet(out ppRegisters);
ProcessOutParameter(ppRegisters);
return ppRegisters;
}
public static CorDebugChainReason GetReason(this ICorDebugChain instance)
{
CorDebugChainReason pReason;
instance.__GetReason(out pReason);
ProcessOutParameter(pReason);
return pReason;
}
public static void Skip(this ICorDebugChainEnum instance, uint celt)
{
instance.__Skip(celt);
}
public static void Reset(this ICorDebugChainEnum instance)
{
instance.__Reset();
}
public static ICorDebugEnum Clone(this ICorDebugChainEnum instance)
{
ICorDebugEnum ppEnum;
instance.__Clone(out ppEnum);
ProcessOutParameter(ppEnum);
return ppEnum;
}
public static uint GetCount(this ICorDebugChainEnum instance)
{
uint pcelt;
instance.__GetCount(out pcelt);
return pcelt;
}
public static uint Next(this ICorDebugChainEnum instance, uint celt, ICorDebugChain[] chains)
{
uint pceltFetched;
instance.__Next(celt, chains, out pceltFetched);
ProcessOutParameter(chains);
return pceltFetched;
}
public static ICorDebugModule GetModule(this ICorDebugClass instance)
{
ICorDebugModule pModule;
instance.__GetModule(out pModule);
ProcessOutParameter(pModule);
return pModule;
}
public static uint GetToken(this ICorDebugClass instance)
{
uint pTypeDef;
instance.__GetToken(out pTypeDef);
return pTypeDef;
}
public static ICorDebugValue GetStaticFieldValue(this ICorDebugClass instance, uint fieldDef, ICorDebugFrame pFrame)
{
ICorDebugValue ppValue;
instance.__GetStaticFieldValue(fieldDef, pFrame, out ppValue);
ProcessOutParameter(ppValue);
return ppValue;
}
public static ICorDebugType GetParameterizedType(this ICorDebugClass2 instance, uint elementType, uint nTypeArgs, ICorDebugType[] ppTypeArgs)
{
ICorDebugType ppType;
instance.__GetParameterizedType(elementType, nTypeArgs, ppTypeArgs, out ppType);
ProcessOutParameter(ppTypeArgs);
ProcessOutParameter(ppType);
return ppType;
}
public static void SetJMCStatus(this ICorDebugClass2 instance, int bIsJustMyCode)
{
instance.__SetJMCStatus(bIsJustMyCode);
}
public static int IsIL(this ICorDebugCode instance)
{
int pbIL;
instance.__IsIL(out pbIL);
return pbIL;
}
public static ICorDebugFunction GetFunction(this ICorDebugCode instance)
{
ICorDebugFunction ppFunction;
instance.__GetFunction(out ppFunction);
ProcessOutParameter(ppFunction);
return ppFunction;
}
public static ulong GetAddress(this ICorDebugCode instance)
{
ulong pStart;
instance.__GetAddress(out pStart);
return pStart;
}
public static uint GetSize(this ICorDebugCode instance)
{
uint pcBytes;
instance.__GetSize(out pcBytes);
return pcBytes;
}
public static ICorDebugFunctionBreakpoint CreateBreakpoint(this ICorDebugCode instance, uint offset)
{
ICorDebugFunctionBreakpoint ppBreakpoint;
instance.__CreateBreakpoint(offset, out ppBreakpoint);
ProcessOutParameter(ppBreakpoint);
return ppBreakpoint;
}
public static uint GetCode(this ICorDebugCode instance, uint startOffset, uint endOffset, uint cBufferAlloc, IntPtr buffer)
{
uint pcBufferSize;
instance.__GetCode(startOffset, endOffset, cBufferAlloc, buffer, out pcBufferSize);
return pcBufferSize;
}
public static uint GetVersionNumber(this ICorDebugCode instance)
{
uint nVersion;
instance.__GetVersionNumber(out nVersion);
return nVersion;
}
public static void GetILToNativeMapping(this ICorDebugCode instance, uint cMap, out uint pcMap, IntPtr map)
{
instance.__GetILToNativeMapping(cMap, out pcMap, map);
}
public static void GetEnCRemapSequencePoints(this ICorDebugCode instance, uint cMap, out uint pcMap, IntPtr offsets)
{
instance.__GetEnCRemapSequencePoints(cMap, out pcMap, offsets);
}
public static void Skip(this ICorDebugCodeEnum instance, uint celt)
{
instance.__Skip(celt);
}
public static void Reset(this ICorDebugCodeEnum instance)
{
instance.__Reset();
}
public static ICorDebugEnum Clone(this ICorDebugCodeEnum instance)
{
ICorDebugEnum ppEnum;
instance.__Clone(out ppEnum);
ProcessOutParameter(ppEnum);
return ppEnum;
}
public static uint GetCount(this ICorDebugCodeEnum instance)
{
uint pcelt;
instance.__GetCount(out pcelt);
return pcelt;
}
public static uint Next(this ICorDebugCodeEnum instance, uint celt, IntPtr values)
{
uint pceltFetched;
instance.__Next(celt, values, out pceltFetched);
return pceltFetched;
}
public static uint GetTheType(this ICorDebugContext instance)
{
uint pType;
instance.__GetType(out pType);
return pType;
}
public static uint GetSize(this ICorDebugContext instance)
{
uint pSize;
instance.__GetSize(out pSize);
return pSize;
}
public static ulong GetAddress(this ICorDebugContext instance)
{
ulong pAddress;
instance.__GetAddress(out pAddress);
return pAddress;
}
public static ICorDebugValueBreakpoint CreateBreakpoint(this ICorDebugContext instance)
{
ICorDebugValueBreakpoint ppBreakpoint;
instance.__CreateBreakpoint(out ppBreakpoint);
ProcessOutParameter(ppBreakpoint);
return ppBreakpoint;
}
public static ICorDebugClass GetClass(this ICorDebugContext instance)
{
ICorDebugClass ppClass;
instance.__GetClass(out ppClass);
ProcessOutParameter(ppClass);
return ppClass;
}
public static ICorDebugValue GetFieldValue(this ICorDebugContext instance, ICorDebugClass pClass, uint fieldDef)
{
ICorDebugValue ppValue;
instance.__GetFieldValue(pClass, fieldDef, out ppValue);
ProcessOutParameter(ppValue);
return ppValue;
}
public static ICorDebugFunction GetVirtualMethod(this ICorDebugContext instance, uint memberRef)
{
ICorDebugFunction ppFunction;
instance.__GetVirtualMethod(memberRef, out ppFunction);
ProcessOutParameter(ppFunction);
return ppFunction;
}
public static ICorDebugContext GetContext(this ICorDebugContext instance)
{
ICorDebugContext ppContext;
instance.__GetContext(out ppContext);
ProcessOutParameter(ppContext);
return ppContext;
}
public static int IsValueClass(this ICorDebugContext instance)
{
int pbIsValueClass;
instance.__IsValueClass(out pbIsValueClass);
return pbIsValueClass;
}
public static object GetManagedCopy(this ICorDebugContext instance)
{
object ppObject;
instance.__GetManagedCopy(out ppObject);
ProcessOutParameter(ppObject);
return ppObject;
}
public static void SetFromManagedCopy(this ICorDebugContext instance, object pObject)
{
instance.__SetFromManagedCopy(pObject);
}
public static void Stop(this ICorDebugController instance, uint dwTimeoutIgnored)
{