HomeSort by relevance Sort by last modified time
    Searched full:lldb (Results 51 - 75 of 2078) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/lldb/test/python_api/default-constructor/
sb_error.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
14 obj.SetError(5, lldb.eErrorTypeGeneric)
21 obj.GetDescription(lldb.SBStream())
sb_event.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
12 # Do fuzz testing on the broadcaster obj, it should not crash lldb.
16 obj.GetDescription(lldb.SBStream())
sb_watchpoint.py 2 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)
sb_block.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
17 obj.GetDescription(lldb.SBStream())
sb_compileunit.py 2 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())
sb_debugger.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
22 obj.HandleProcessEvent(lldb.SBProcess(), lldb.SBEvent(), None, None)
26 obj.DeleteTarget(lldb.SBTarget())
33 obj.SetSelectedTarget(lldb.SBTarget())
41 obj.PushInputReader(lldb.SBInputReader())
42 obj.NotifyTopInputReader(lldb.eInputReaderActivate)
43 obj.InputReaderIsTopReader(lldb.SBInputReader())
45 obj.GetDescription(lldb.SBStream()
    [all...]
sb_filespec.py 2 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())
sb_inputreader.py 2 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)
sb_lineentry.py 2 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())
sb_stringlist.py 2 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())
sb_symbolcontext.py 2 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())
sb_valuelist.py 2 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())
sb_breakpointlocation.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
24 obj.GetDescription(lldb.SBStream(), lldb.eDescriptionLevelVerbose)
26 # Do fuzz testing on the breakpoint obj, it should not crash lldb.
sb_broadcaster.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
9 obj.BroadcastEventByType(lldb.eBreakpointEventTypeInvalidType, True)
10 obj.BroadcastEvent(lldb.SBEvent(), False)
11 listener = lldb.SBListener("fuzz_testing")
sb_type.py 2 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)
  /external/lldb/utils/vim-lldb/python-vim-lldb/
plugin.py 7 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/include/lldb/API/
SBDebugger.h 13 #include "lldb/API/SBDefines.h"
16 namespace lldb { namespace
29 static lldb::SBDebugger
32 static lldb::SBDebugger
35 static lldb::SBDebugger
36 Create(bool source_init_files, lldb::LogOutputCallback log_callback, void *baton);
39 Destroy (lldb::SBDebugger &debugger);
46 SBDebugger(const lldb::SBDebugger &rhs);
48 SBDebugger(const lldb::DebuggerSP &debugger_sp);
50 lldb::SBDebugger
    [all...]
SBAddress.h 13 #include "lldb/API/SBDefines.h"
14 #include "lldb/API/SBModule.h"
16 namespace lldb { namespace
24 SBAddress (const lldb::SBAddress &rhs);
26 SBAddress (lldb::SBSection section, lldb::addr_t offset);
29 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
33 const lldb::SBAddress &
34 operator = (const lldb::SBAddress &rhs)
    [all...]
SBBreakpointLocation.h 13 #include "lldb/API/SBDefines.h"
14 #include "lldb/API/SBBreakpoint.h"
16 namespace lldb { namespace
24 SBBreakpointLocation (const lldb::SBBreakpointLocation &rhs);
28 const lldb::SBBreakpointLocation &
29 operator = (const lldb::SBBreakpointLocation &rhs);
37 lldb::SBAddress
40 lldb::addr_t
62 SetThreadID (lldb::tid_t sb_thread_id);
64 lldb::tid_
    [all...]
SBTypeNameSpecifier.h 13 #include "lldb/API/SBDefines.h"
15 namespace lldb { namespace
28 SBTypeNameSpecifier (const lldb::SBTypeNameSpecifier &rhs);
45 GetDescription (lldb::SBStream &description,
46 lldb::DescriptionLevel description_level);
48 lldb::SBTypeNameSpecifier &
49 operator = (const lldb::SBTypeNameSpecifier &rhs);
52 IsEqualTo (lldb::SBTypeNameSpecifier &rhs);
55 operator == (lldb::SBTypeNameSpecifier &rhs);
58 operator != (lldb::SBTypeNameSpecifier &rhs)
    [all...]
  /external/lldb/scripts/Python/interface/
SBListener.i 10 namespace lldb {
29 AddEvent (const lldb::SBEvent &event);
48 StartListeningForEvents (const lldb::SBBroadcaster& broadcaster,
52 StopListeningForEvents (const lldb::SBBroadcaster& broadcaster,
58 lldb::SBEvent &event);
62 const lldb::SBBroadcaster &broadcaster,
63 lldb::SBEvent &sb_event);
67 const lldb::SBBroadcaster &broadcaster,
69 lldb::SBEvent &sb_event);
72 PeekAtNextEvent (lldb::SBEvent &sb_event)
    [all...]
  /external/lldb/scripts/
lldb.swig 2 lldb.swig
11 "The lldb module contains the public APIs for Python binding.
35 %module(docstring=DOCSTRING) lldb
54 #include "lldb/lldb-public.h"
55 #include "lldb/API/SBAddress.h"
56 #include "lldb/API/SBBlock.h"
57 #include "lldb/API/SBBreakpoint.h"
58 #include "lldb/API/SBBreakpointLocation.h"
59 #include "lldb/API/SBBroadcaster.h
    [all...]
  /external/lldb/include/lldb/Core/
Section.h 13 #include "lldb/lldb-private.h"
14 #include "lldb/Core/AddressRange.h"
15 #include "lldb/Core/Flags.h"
16 #include "lldb/Core/ModuleChild.h"
17 #include "lldb/Core/ConstString.h"
18 #include "lldb/Core/RangeMap.h"
19 #include "lldb/Core/UserID.h"
20 #include "lldb/Core/VMRange.h"
21 #include "lldb/Symbol/ObjectFile.h
    [all...]
  /external/lldb/include/lldb/
lldb-private-interfaces.h 1 //===-- lldb-private-interfaces.h -------------------------------*- C++ -*-===//
15 #include "lldb/lldb-private.h"
19 typedef lldb::ABISP (*ABICreateInstance) (const ArchSpec &arch);
22 typedef ObjectContainer* (*ObjectContainerCreateInstance) (const lldb::ModuleSP &module_sp, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, const FileSpec *file, lldb::offset_t offset, lldb::offset_t length);
23 typedef size_t (*ObjectFileGetModuleSpecifications) (const FileSpec &file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t len (…)
    [all...]
  /external/lldb/test/
bench-history 6 [17:45:55] johnny:/Volumes/data/lldb/svn/trunk/test $ ./bench.py 2>&1 | grep -P '^lldb.*benchmark:'
7 lldb startup delay (create fresh target) benchmark: Avg: 0.104274 (Laps: 30, Total Elapsed Time: 3.128214)
8 lldb startup delay (set first breakpoint) benchmark: Avg: 0.102216 (Laps: 30, Total Elapsed Time: 3.066470)
9 lldb frame variable benchmark: Avg: 1.649162 (Laps: 20, Total Elapsed Time: 32.983245)
10 lldb stepping benchmark: Avg: 0.104409 (Laps: 50, Total Elapsed Time: 5.220461)
11 lldb expr cmd benchmark: Avg: 0.206774 (Laps: 25, Total Elapsed Time: 5.169350)
12 lldb disassembly benchmark: Avg: 0.089086 (Laps: 10, Total Elapsed Time: 0.890859)
15 [15:53:34] johnny:/Volumes/data/lldb/svn/trunk/test $ ./bench.py 2>&1 | grep -P '^lldb.*benchmark:
    [all...]

Completed in 872 milliseconds

1 23 4 5 6 7 8 91011>>