-
Notifications
You must be signed in to change notification settings - Fork 20
/
GDB-PYTHON-HELP
1286 lines (1223 loc) · 36.7 KB
/
GDB-PYTHON-HELP
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
Help on package gdb:
NAME
gdb
FILE
(built-in)
PACKAGE CONTENTS
FrameIterator
FrameWrapper
backtrace
command (package)
function (package)
printing
types
CLASSES
__builtin__.object
Block
BlockIterator
Breakpoint
Command
Event
ExitedEvent
ThreadEvent
ContinueEvent
StopEvent
BreakpointEvent
SignalEvent
EventRegistry
Field
Frame
Function
Inferior
InferiorThread
Membuf
Objfile
Parameter
Progspace
Symbol
Symtab
Symtab_and_line
Type
Value
exceptions.Exception(exceptions.BaseException)
GdbError
exceptions.RuntimeError(exceptions.StandardError)
error
MemoryError
class Block(__builtin__.object)
| GDB block object
|
| Methods defined here:
|
| __iter__(...)
| x.__iter__() <==> iter(x)
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this block is valid, false if not.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| end
| End address of the block.
|
| function
| Symbol that names the block, or None.
|
| start
| Start address of the block.
|
| superblock
| Block containing the block, or None.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xaaf560>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class BlockIterator(__builtin__.object)
| GDB block syms iterator object
|
| Methods defined here:
|
| __iter__(...)
| x.__iter__() <==> iter(x)
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this block iterator is valid, false if not.
|
| next(...)
| x.next() -> the next value, or raise StopIteration
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xaaf6e0>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class Breakpoint(__builtin__.object)
| GDB breakpoint object
|
| Methods defined here:
|
| __delattr__(...)
| x.__delattr__('name') <==> del x.name
|
| __init__(...)
| x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
| __setattr__(...)
| x.__setattr__('name', value) <==> x.name = value
|
| delete(...)
| Delete the underlying GDB breakpoint.
|
| is_valid(...)
| Return true if this breakpoint is valid, false if not.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| commands
| Commands of the breakpoint, as specified by the user.
|
| condition
| Condition of the breakpoint, as specified by the user,or None if no condition set.
|
| enabled
| Boolean telling whether the breakpoint is enabled.
|
| expression
| Expression of the breakpoint, as specified by the user.
|
| hit_count
| Number of times the breakpoint has been hit.
| Can be set to zero to clear the count. No other value is valid
| when setting this property.
|
| ignore_count
| Number of times this breakpoint should be automatically continued.
|
| location
| Location of the breakpoint, as specified by the user.
|
| number
| Breakpoint's number assigned by GDB.
|
| silent
| Boolean telling whether the breakpoint is silent.
|
| task
| Thread ID for the breakpoint.
| If the value is a task ID (integer), then this is an Ada task-specific breakpoint.
| If the value is None, then this breakpoint is not task-specific.
| No other type of value can be used.
|
| thread
| Thread ID for the breakpoint.
| If the value is a thread ID (integer), then this is a thread-specific breakpoint.
| If the value is None, then this breakpoint is not thread-specific.
| No other type of value can be used.
|
| type
| Type of breakpoint.
|
| visible
| Whether the breakpoint is visible to the user.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xaafb40>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class BreakpointEvent(StopEvent)
| GDB breakpoint stop event object
|
| Method resolution order:
| BreakpointEvent
| StopEvent
| ThreadEvent
| Event
| __builtin__.object
class Command(__builtin__.object)
| GDB command object
|
| Methods defined here:
|
| __init__(...)
| x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
| dont_repeat(...)
| Prevent command repetition when user enters empty line.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xaaffa0>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class ContinueEvent(ThreadEvent)
| GDB continue event object
|
| Method resolution order:
| ContinueEvent
| ThreadEvent
| Event
| __builtin__.object
class Event(__builtin__.object)
| GDB event object
class EventRegistry(__builtin__.object)
| GDB event registry object
|
| Methods defined here:
|
| connect(...)
| Add function
|
| disconnect(...)
| Remove function
class ExitedEvent(Event)
| GDB exited event object
|
| Method resolution order:
| ExitedEvent
| Event
| __builtin__.object
class Field(__builtin__.object)
| GDB field object
class Frame(__builtin__.object)
| GDB frame object
|
| Methods defined here:
|
| __eq__(...)
| x.__eq__(y) <==> x==y
|
| __ge__(...)
| x.__ge__(y) <==> x>=y
|
| __gt__(...)
| x.__gt__(y) <==> x>y
|
| __le__(...)
| x.__le__(y) <==> x<=y
|
| __lt__(...)
| x.__lt__(y) <==> x<y
|
| __ne__(...)
| x.__ne__(y) <==> x!=y
|
| __str__(...)
| x.__str__() <==> str(x)
|
| block(...)
| block () -> gdb.Block.
| Return the frame's code block.
|
| find_sal(...)
| find_sal () -> gdb.Symtab_and_line.
| Return the frame's symtab and line.
|
| function(...)
| function () -> gdb.Symbol.
| Returns the symbol for the function corresponding to this frame.
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this frame is valid, false if not.
|
| name(...)
| name () -> String.
| Return the function name of the frame, or None if it can't be determined.
|
| newer(...)
| newer () -> gdb.Frame.
| Return the frame called by this frame.
|
| older(...)
| older () -> gdb.Frame.
| Return the frame that called this frame.
|
| pc(...)
| pc () -> Long.
| Return the frame's resume address.
|
| read_var(...)
| read_var (variable) -> gdb.Value.
| Return the value of the variable in this frame.
|
| select(...)
| Select this frame as the user's current frame.
|
| type(...)
| type () -> Integer.
| Return the type of the frame.
|
| unwind_stop_reason(...)
| unwind_stop_reason () -> Integer.
| Return the reason why it's not possible to find frames older than this.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab0800>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class Function(__builtin__.object)
| GDB function object
|
| Methods defined here:
|
| __init__(...)
| x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab0b20>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class GdbError(exceptions.Exception)
| Method resolution order:
| GdbError
| exceptions.Exception
| exceptions.BaseException
| __builtin__.object
|
| Data descriptors defined here:
|
| __weakref__
| list of weak references to the object (if defined)
|
| ----------------------------------------------------------------------
| Methods inherited from exceptions.Exception:
|
| __init__(...)
| x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
| ----------------------------------------------------------------------
| Data and other attributes inherited from exceptions.Exception:
|
| __new__ = <built-in method __new__ of type object at 0x7ff1b67eb580>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
|
| ----------------------------------------------------------------------
| Methods inherited from exceptions.BaseException:
|
| __delattr__(...)
| x.__delattr__('name') <==> del x.name
|
| __getattribute__(...)
| x.__getattribute__('name') <==> x.name
|
| __getitem__(...)
| x.__getitem__(y) <==> x[y]
|
| __getslice__(...)
| x.__getslice__(i, j) <==> x[i:j]
|
| Use of negative indices is not supported.
|
| __reduce__(...)
|
| __repr__(...)
| x.__repr__() <==> repr(x)
|
| __setattr__(...)
| x.__setattr__('name', value) <==> x.name = value
|
| __setstate__(...)
|
| __str__(...)
| x.__str__() <==> str(x)
|
| ----------------------------------------------------------------------
| Data descriptors inherited from exceptions.BaseException:
|
| __dict__
|
| args
|
| message
| exception message
class Inferior(__builtin__.object)
| GDB inferior object
|
| Methods defined here:
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this inferior is valid, false if not.
|
| read_memory(...)
| read_memory (address, length) -> buffer
| Return a buffer object for reading from the inferior's memory.
|
| search_memory(...)
| search_memory (address, length, pattern) -> long
| Return a long with the address of a match, or None.
|
| threads(...)
| Return all the threads of this inferior.
|
| write_memory(...)
| write_memory (address, buffer [, length])
| Write the given buffer object to the inferior's memory.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| num
| ID of inferior, as assigned by GDB.
|
| pid
| PID of inferior, as assigned by the OS.
|
| was_attached
| True if the inferior was created using 'attach'.
class InferiorThread(__builtin__.object)
| GDB thread object
|
| Methods defined here:
|
| is_exited(...)
| is_exited () -> Boolean
| Return whether the thread is exited.
|
| is_running(...)
| is_running () -> Boolean
| Return whether the thread is running.
|
| is_stopped(...)
| is_stopped () -> Boolean
| Return whether the thread is stopped.
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this inferior thread is valid, false if not.
|
| switch(...)
| switch ()
| Makes this the GDB selected thread.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| name
| The name of the thread, as set by the user or the OS.
|
| num
| ID of the thread, as assigned by GDB.
|
| ptid
| ID of the thread, as assigned by the OS.
class Membuf(__builtin__.object)
| GDB memory buffer object
|
| Methods defined here:
|
| __str__(...)
| x.__str__() <==> str(x)
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab0e20>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class MemoryError(error)
| Method resolution order:
| MemoryError
| error
| exceptions.RuntimeError
| exceptions.StandardError
| exceptions.Exception
| exceptions.BaseException
| __builtin__.object
|
| Data descriptors inherited from error:
|
| __weakref__
| list of weak references to the object (if defined)
|
| ----------------------------------------------------------------------
| Methods inherited from exceptions.RuntimeError:
|
| __init__(...)
| x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
| ----------------------------------------------------------------------
| Data and other attributes inherited from exceptions.RuntimeError:
|
| __new__ = <built-in method __new__ of type object at 0x7ff1b67ec780>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
|
| ----------------------------------------------------------------------
| Methods inherited from exceptions.BaseException:
|
| __delattr__(...)
| x.__delattr__('name') <==> del x.name
|
| __getattribute__(...)
| x.__getattribute__('name') <==> x.name
|
| __getitem__(...)
| x.__getitem__(y) <==> x[y]
|
| __getslice__(...)
| x.__getslice__(i, j) <==> x[i:j]
|
| Use of negative indices is not supported.
|
| __reduce__(...)
|
| __repr__(...)
| x.__repr__() <==> repr(x)
|
| __setattr__(...)
| x.__setattr__('name', value) <==> x.name = value
|
| __setstate__(...)
|
| __str__(...)
| x.__str__() <==> str(x)
|
| ----------------------------------------------------------------------
| Data descriptors inherited from exceptions.BaseException:
|
| __dict__
|
| args
|
| message
| exception message
class Objfile(__builtin__.object)
| GDB objfile object
|
| Methods defined here:
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this object file is valid, false if not.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| filename
| The objfile's filename, or None.
|
| pretty_printers
| Pretty printers.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab1700>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class Parameter(__builtin__.object)
| GDB parameter object
|
| Methods defined here:
|
| __delattr__(...)
| x.__delattr__('name') <==> del x.name
|
| __getattribute__(...)
| x.__getattribute__('name') <==> x.name
|
| __init__(...)
| x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
| __setattr__(...)
| x.__setattr__('name', value) <==> x.name = value
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab1a00>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class Progspace(__builtin__.object)
| GDB progspace object
|
| Data descriptors defined here:
|
| filename
| The progspace's main filename, or None.
|
| pretty_printers
| Pretty printers.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab1b80>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class SignalEvent(StopEvent)
| GDB signal event object
|
| Method resolution order:
| SignalEvent
| StopEvent
| ThreadEvent
| Event
| __builtin__.object
class StopEvent(ThreadEvent)
| GDB stop event object
|
| Method resolution order:
| StopEvent
| ThreadEvent
| Event
| __builtin__.object
class Symbol(__builtin__.object)
| GDB symbol object
|
| Methods defined here:
|
| __str__(...)
| x.__str__() <==> str(x)
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this symbol is valid, false if not.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| addr_class
| Address class of the symbol.
|
| is_argument
| True if the symbol is an argument of a function.
|
| is_constant
| True if the symbol is a constant.
|
| is_function
| True if the symbol is a function or method.
|
| is_variable
| True if the symbol is a variable.
|
| linkage_name
| Name of the symbol, as used by the linker (i.e., may be mangled).
|
| name
| Name of the symbol, as it appears in the source code.
|
| print_name
| Name of the symbol in a form suitable for output.
| This is either name or linkage_name, depending on whether the user asked GDB
| to display demangled or mangled names.
|
| symtab
| Symbol table in which the symbol appears.
class Symtab(__builtin__.object)
| GDB symtab object
|
| Methods defined here:
|
| __str__(...)
| x.__str__() <==> str(x)
|
| fullname(...)
| fullname () -> String.
| Return the symtab's full source filename.
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this symbol table is valid, false if not.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| filename
| The symbol table's source filename.
|
| objfile
| The symtab's objfile.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab2420>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class Symtab_and_line(__builtin__.object)
| GDB symtab_and_line object
|
| Methods defined here:
|
| __str__(...)
| x.__str__() <==> str(x)
|
| is_valid(...)
| is_valid () -> Boolean.
| Return true if this symbol table and line is valid, false if not.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| line
| Return the symtab_and_line's line.
|
| pc
| Return the symtab_and_line's pc.
|
| symtab
| Symtab object.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object at 0xab25a0>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
class ThreadEvent(Event)
| GDB thread event object
|
| Method resolution order:
| ThreadEvent
| Event
| __builtin__.object
class Type(__builtin__.object)
| GDB type object
|
| Methods defined here:
|
| __eq__(...)
| x.__eq__(y) <==> x==y
|
| __ge__(...)
| x.__ge__(y) <==> x>=y
|
| __gt__(...)
| x.__gt__(y) <==> x>y
|
| __le__(...)
| x.__le__(y) <==> x<=y
|
| __lt__(...)
| x.__lt__(y) <==> x<y
|
| __ne__(...)
| x.__ne__(y) <==> x!=y
|
| __str__(...)
| x.__str__() <==> str(x)
|
| array(...)
| array (N) -> Type
| Return a type which represents an array of N objects of this type.
|
| const(...)
| const () -> Type
| Return a const variant of this type.
|
| fields(...)
| field () -> list
| Return a sequence holding all the fields of this type.
| Each field is a dictionary.
|
| pointer(...)
| pointer () -> Type
| Return a type of pointer to this type.
|
| range(...)
| range () -> tuple
| Return a tuple containing the lower and upper range for this type.
|
| reference(...)
| reference () -> Type
| Return a type of reference to this type.
|
| strip_typedefs(...)
| strip_typedefs () -> Type
| Return a type formed by stripping this type of all typedefs.
|
| target(...)
| target () -> Type
| Return the target type of this type.
|
| template_argument(...)
| template_argument (arg, [block]) -> Type
| Return the type of a template argument.
|
| unqualified(...)
| unqualified () -> Type
| Return a variant of this type without const or volatile attributes.
|
| volatile(...)
| volatile () -> Type
| Return a volatile variant of this type
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| code
| The code for this type.
|
| sizeof
| The size of this type, in bytes.
|
| tag
| The tag name for this type, or None.
class Value(__builtin__.object)
| GDB value object
|
| Methods defined here:
|
| __abs__(...)
| x.__abs__() <==> abs(x)
|
| __add__(...)
| x.__add__(y) <==> x+y
|
| __and__(...)
| x.__and__(y) <==> x&y
|
| __call__(...)
| x.__call__(...) <==> x(...)
|
| __delitem__(...)
| x.__delitem__(y) <==> del x[y]
|
| __div__(...)
| x.__div__(y) <==> x/y
|
| __eq__(...)
| x.__eq__(y) <==> x==y
|
| __float__(...)
| x.__float__() <==> float(x)
|
| __ge__(...)
| x.__ge__(y) <==> x>=y
|
| __getitem__(...)
| x.__getitem__(y) <==> x[y]
|
| __gt__(...)
| x.__gt__(y) <==> x>y
|
| __hash__(...)
| x.__hash__() <==> hash(x)
|
| __int__(...)
| x.__int__() <==> int(x)
|
| __invert__(...)
| x.__invert__() <==> ~x
|
| __le__(...)
| x.__le__(y) <==> x<=y
|
| __len__(...)
| x.__len__() <==> len(x)
|
| __long__(...)
| x.__long__() <==> long(x)
|
| __lshift__(...)
| x.__lshift__(y) <==> x<<y
|
| __lt__(...)
| x.__lt__(y) <==> x<y
|
| __mod__(...)
| x.__mod__(y) <==> x%y
|
| __mul__(...)
| x.__mul__(y) <==> x*y
|
| __ne__(...)
| x.__ne__(y) <==> x!=y
|
| __neg__(...)
| x.__neg__() <==> -x
|
| __nonzero__(...)
| x.__nonzero__() <==> x != 0
|
| __or__(...)
| x.__or__(y) <==> x|y
|
| __pos__(...)
| x.__pos__() <==> +x
|
| __pow__(...)
| x.__pow__(y[, z]) <==> pow(x, y[, z])
|
| __radd__(...)
| x.__radd__(y) <==> y+x
|
| __rand__(...)
| x.__rand__(y) <==> y&x
|
| __rdiv__(...)
| x.__rdiv__(y) <==> y/x
|
| __rlshift__(...)
| x.__rlshift__(y) <==> y<<x
|
| __rmod__(...)
| x.__rmod__(y) <==> y%x
|
| __rmul__(...)
| x.__rmul__(y) <==> y*x
|
| __ror__(...)
| x.__ror__(y) <==> y|x
|
| __rpow__(...)
| y.__rpow__(x[, z]) <==> pow(x, y[, z])
|
| __rrshift__(...)
| x.__rrshift__(y) <==> y>>x
|
| __rshift__(...)
| x.__rshift__(y) <==> x>>y
|
| __rsub__(...)
| x.__rsub__(y) <==> y-x
|
| __rxor__(...)
| x.__rxor__(y) <==> y^x
|
| __setitem__(...)
| x.__setitem__(i, y) <==> x[i]=y
|
| __str__(...)
| x.__str__() <==> str(x)
|
| __sub__(...)
| x.__sub__(y) <==> x-y
|
| __xor__(...)
| x.__xor__(y) <==> x^y
|
| cast(...)
| Cast the value to the supplied type.
|
| dereference(...)
| Dereferences the value.
|
| dynamic_cast(...)
| dynamic_cast (gdb.Type) -> gdb.Value
| Cast the value to the supplied type, as if by the C++ dynamic_cast operator.
|
| lazy_string(...)
| lazy_string ([encoding] [, length]) -> lazy_string
| Return a lazy string representation of the value.
|
| reinterpret_cast(...)
| reinterpret_cast (gdb.Type) -> gdb.Value
| Cast the value to the supplied type, as if by the C++
| reinterpret_cast operator.
|
| string(...)
| string ([encoding] [, errors] [, length]) -> string
| Return Unicode string representation of the value.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| address
| The address of the value.
|
| dynamic_type
| Dynamic type of the value.
|
| is_optimized_out
| Boolean telling whether the value is optimized out (i.e., not available).
|
| type