Searched defs:lldb (Results 51 - 75 of 421) sorted by relevance

1234567891011>>

/external/lldb/test/python_api/default-constructor/
H A Dsb_function.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
11 obj.GetInstructions(lldb.SBTarget())
14 # Do fuzz testing on the address obj, it should not crash lldb.
19 obj.GetDescription(lldb.SBStream())
H A Dsb_inputreader.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
10 obj.Initialize(lldb.SBDebugger.Create(), None, 0, "$", "^", True)
H A Dsb_instruction.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
13 obj.GetDescription(lldb.SBStream())
14 obj.EmulateWithFrame(lldb.SBFrame(), 0)
16 obj.TestEmulation(lldb.SBStream(), "my-file")
H A Dsb_instructionlist.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
11 obj.AppendInstruction(lldb.SBInstruction())
13 obj.GetDescription(lldb.SBStream())
H A Dsb_lineentry.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
14 obj.GetDescription(lldb.SBStream())
H A Dsb_listener.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
9 obj.AddEvent(lldb.SBEvent())
10 obj.StartListeningForEvents(lldb.SBBroadcaster(), 0xffffffff)
11 obj.StopListeningForEvents(lldb.SBBroadcaster(), 0xffffffff)
12 event = lldb.SBEvent()
13 broadcaster = lldb.SBBroadcaster()
H A Dsb_module.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
11 obj.SetPlatformFileSpec(lldb.SBFileSpec())
14 obj.ResolveSymbolContextForAddress(lldb.SBAddress(), 0)
15 obj.GetDescription(lldb.SBStream())
19 sc_list = obj.FindFunctions("my_func", lldb.eFunctionNameTypeAny)
20 obj.FindGlobalVariables(lldb.SBTarget(), "my_global_var", 1)
23 for symbol in obj.symbol_in_section_iter(lldb.SBSection()):
H A Dsb_process.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
14 event = lldb.SBEvent()
16 obj.AppendEventStateReport(event, lldb.SBCommandReturnObject())
17 error = lldb.SBError()
24 obj.SetSelectedThread(lldb.SBThread())
43 obj.GetDescription(lldb.SBStream())
44 obj.LoadImage(lldb.SBFileSpec(), error)
H A Dsb_section.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
20 obj.GetDescription(lldb.SBStream())
H A Dsb_stringlist.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
12 obj.AppendList(lldb.SBStringList())
H A Dsb_symbol.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
11 obj.GetInstructions(lldb.SBTarget())
16 obj.GetDescription(lldb.SBStream())
H A Dsb_symbolcontext.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
15 obj.GetDescription(lldb.SBStream())
H A Dsb_target.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
10 listener = lldb.SBListener()
11 error = lldb.SBError()
15 obj.AttachToProcessWithName(listener, 'lldb', False, error)
21 filespec = lldb.SBFileSpec()
24 sc_list = obj.FindFunctions("the_func", lldb.eFunctionNameTypeAny)
28 obj.GetInstructions(lldb.SBAddress(), bytearray())
55 error = lldb.SBError()
58 obj.GetDescription(lldb
[all...]
H A Dsb_thread.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
17 obj.StepOver(lldb.eOnlyDuringStepping)
18 obj.StepInto(lldb.eOnlyDuringStepping)
20 frame = lldb.SBFrame()
23 filespec = lldb.SBFileSpec()
34 obj.GetDescription(lldb.SBStream())
H A Dsb_type.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
13 member = lldb.SBTypeMember()
18 obj.GetDescription(lldb.SBStream())
20 lldb.SBType.IsPointerType(None)
H A Dsb_value.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
16 obj.SetFormat(lldb.eFormatBoolean)
25 obj.GetChildAtIndex(2, lldb.eNoDynamicValues, False)
28 obj.GetChildMemberWithName("my_first_child", lldb.eNoDynamicValues)
33 stream = lldb.SBStream()
37 error = lldb.SBError()
42 error = lldb.SBError()
47 obj.GetDynamicValue (lldb.eNoDynamicValues)
50 invalid_type = lldb
[all...]
H A Dsb_valuelist.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
9 obj.Append(lldb.SBValue())
H A Dsb_watchpoint.py2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
19 obj.GetDescription(lldb.SBStream(), lldb.eDescriptionLevelVerbose)
/external/lldb/utils/vim-lldb/python-vim-lldb/
H A Dplugin.py7 import lldb namespace
10 sys.stderr.write("Unable to load vim/lldb module. Check lldb is on the path is available (or LLDB is set) and that script is invoked inside Vim with :pyfile")
/external/lldb/examples/python/
H A Djump.py1 import lldb, re namespace
141 stream = lldb.SBStream()
169 if lldb.debugger:
172 lldb.debugger.HandleCommand('command script add -f jump.jump jump')
H A Dstacks.py3 import lldb namespace
20 for thread in lldb.process:
55 lldb.debugger.HandleCommand("command script add -f stacks.stack_frames stack_frames")
/external/lldb/include/lldb/API/
H A DSBBreakpoint.h13 #include "lldb/API/SBDefines.h"
15 namespace lldb { namespace
24 lldb::SBBreakpointLocation &location);
28 SBBreakpoint (const lldb::SBBreakpoint& rhs);
32 const lldb::SBBreakpoint &
33 operator = (const lldb::SBBreakpoint& rhs);
38 operator == (const lldb::SBBreakpoint& rhs);
41 operator != (const lldb::SBBreakpoint& rhs);
52 lldb::SBBreakpointLocation
53 FindLocationByAddress (lldb
[all...]
H A DSBBroadcaster.h13 #include "lldb/API/SBDefines.h"
15 namespace lldb { namespace
41 BroadcastEvent (const lldb::SBEvent &event, bool unique = false);
44 AddInitialEventsToListener (const lldb::SBListener &listener, uint32_t requested_events);
47 AddListener (const lldb::SBListener &listener, uint32_t event_mask);
56 RemoveListener (const lldb::SBListener &listener, uint32_t event_mask = UINT32_MAX);
61 operator == (const lldb::SBBroadcaster &rhs) const;
66 operator != (const lldb::SBBroadcaster &rhs) const;
72 operator < (const lldb::SBBroadcaster &rhs) const;
91 lldb
[all...]
H A DSBEvent.h13 #include "lldb/API/SBDefines.h"
19 namespace lldb { namespace
28 SBEvent (const lldb::SBEvent &rhs);
36 operator = (const lldb::SBEvent &rhs);
47 lldb::SBBroadcaster
54 BroadcasterMatchesPtr (const lldb::SBBroadcaster *broadcaster);
57 BroadcasterMatchesRef (const lldb::SBBroadcaster &broadcaster);
63 GetCStringFromEvent (const lldb::SBEvent &event);
66 GetDescription (lldb::SBStream &description);
69 GetDescription (lldb
[all...]
H A DSBListener.h13 #include "lldb/API/SBDefines.h"
15 namespace lldb { namespace
28 const lldb::SBListener &
29 operator = (const lldb::SBListener &rhs);
32 AddEvent (const lldb::SBEvent &event);
51 StartListeningForEvents (const lldb::SBBroadcaster& broadcaster,
55 StopListeningForEvents (const lldb::SBBroadcaster& broadcaster,
61 lldb::SBEvent &event);
65 const lldb::SBBroadcaster &broadcaster,
66 lldb
[all...]

Completed in 374 milliseconds

1234567891011>>