Lines Matching refs:lldb

9 namespace lldb {
69 SBTarget (const lldb::SBTarget& rhs);
85 EventIsTargetEvent (const lldb::SBEvent &event);
87 static lldb::SBTarget
88 GetTargetFromEvent (const lldb::SBEvent &event);
91 GetNumModulesFromEvent (const lldb::SBEvent &event);
93 static lldb::SBModule
94 GetModuleAtIndexFromEvent (const uint32_t idx, const lldb::SBEvent &event);
96 lldb::SBProcess
108 lldb::SBPlatform
124 lldb::SBError
196 lldb::SBProcess
206 lldb::SBError& error);
226 lldb::SBProcess
231 lldb::SBProcess
232 Launch (lldb::SBLaunchInfo &launch_info, lldb::SBError& error);
252 lldb::SBProcess
255 lldb::SBProcess
256 LoadCore(const char *core_file, lldb::SBError &error);
258 lldb::SBProcess
259 Attach(lldb::SBAttachInfo &attach_info, lldb::SBError& error);
278 lldb::SBProcess
280 lldb::pid_t pid,
281 lldb::SBError& error);
303 lldb::SBProcess
307 lldb::SBError& error);
329 lldb::SBProcess
335 lldb::SBFileSpec
346 AddModule (lldb::SBModule &module);
348 lldb::SBModule
353 lldb::SBModule
359 lldb::SBModule
365 lldb::SBModule
369 RemoveModule (lldb::SBModule module);
371 lldb::SBDebugger
374 lldb::SBModule
375 FindModule (const lldb::SBFileSpec &file_spec);
385 lldb::SBSymbolContextList
386 FindCompileUnits (const lldb::SBFileSpec &sb_file_spec);
388 lldb::ByteOrder
421 lldb::SBError
422 SetSectionLoadAddress (lldb::SBSection section,
423 lldb::addr_t section_base_addr);
425 lldb::SBError
426 ClearSectionLoadAddress (lldb::SBSection section);
428 lldb::SBError
429 SetModuleLoadAddress (lldb::SBModule module,
432 lldb::SBError
433 ClearModuleLoadAddress (lldb::SBModule module);
450 lldb::SBSymbolContextList
452 uint32_t name_type_mask = lldb::eFunctionNameTypeAny);
454 lldb::SBType
457 lldb::SBTypeList
460 lldb::SBType
461 GetBasicType(lldb::BasicType type);
463 lldb::SBSourceManager
478 lldb::SBValueList
491 lldb::SBValue
495 lldb::SBValueList
500 lldb::SBSymbolContextList
515 lldb::SBAddress
516 ResolveFileAddress (lldb::addr_t file_addr);
518 lldb::SBAddress
519 ResolveLoadAddress (lldb::addr_t vm_addr);
521 lldb::SBAddress
522 ResolvePastLoadAddress (uint32_t stop_id, lldb::addr_t vm_addr);
550 ReadMemory (const SBAddress addr, void *buf, size_t size, lldb::SBError &error);
552 lldb::SBBreakpoint
555 lldb::SBBreakpoint
556 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line);
558 lldb::SBBreakpoint
559 …BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line, lldb::addr_t offset);
561 lldb::SBBreakpoint
562 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line,
563 lldb::addr_t offset, SBFileSpecList &module_list);
565 lldb::SBBreakpoint
566 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line,
567 uint32_t column, lldb::addr_t offset,
570 lldb::SBBreakpoint
571 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line,
572 uint32_t column, lldb::addr_t offset,
576 lldb::SBBreakpoint
579 lldb::SBBreakpoint
585 lldb::SBBreakpoint
588 lldb::LanguageType symbol_language,
621 lldb::SBBreakpoint
628 lldb::SBBreakpoint
632 lldb::LanguageType symbol_language,
636 lldb::SBBreakpoint
640 lldb::LanguageType symbol_language,
641 lldb::addr_t offset,
645 lldb::SBBreakpoint
648 lldb::SBBreakpoint
650 lldb::LanguageType symbol_language,
654 lldb::SBBreakpoint
655 …BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, cons…
657 lldb::SBBreakpoint
658 …tCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpecList &module_list, const lld…
660 lldb::SBBreakpoint
666 lldb::SBBreakpoint
667 BreakpointCreateForException (lldb::LanguageType language,
671 lldb::SBBreakpoint
674 lldb::SBEnvironment
677 lldb::SBBreakpoint
739 lldb::SBBreakpoint BreakpointCreateFromScript(
749 lldb::SBBreakpoint
755 lldb::SBBreakpoint
786 lldb::SBError
806 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
818 lldb::SBError
837 lldb::SBError
845 lldb::SBWatchpoint
849 DeleteWatchpoint (lldb::watch_id_t watch_id);
851 lldb::SBWatchpoint
852 FindWatchpointByID (lldb::watch_id_t watch_id);
863 lldb::SBWatchpoint
864 WatchAddress (lldb::addr_t addr,
871 lldb::SBBroadcaster
889 lldb::SBValue
890 CreateValueFromAddress (const char *name, lldb::SBAddress addr, lldb::SBType type);
892 lldb::SBValue
893 CreateValueFromData (const char *name, lldb::SBData data, lldb::SBType type);
895 lldb::SBValue
907 lldb::SBInstructionList
908 ReadInstructions (lldb::SBAddress base_addr, uint32_t count);
910 lldb::SBInstructionList
911 ReadInstructions (lldb::SBAddress base_addr, uint32_t count, const char *flavor_string);
922 lldb::SBInstructionList
923 GetInstructions (lldb::SBAddress base_addr, const void *buf, size_t size);
935 lldb::SBInstructionList
936 …GetInstructionsWithFlavor (lldb::SBAddress base_addr, const char *flavor_string, const void *buf, …
938 lldb::SBSymbolContextList
939 FindSymbols (const char *name, lldb::SymbolType type = eSymbolTypeAny);
942 GetDescription (lldb::SBStream &description, lldb::DescriptionLevel description_level);
944 lldb::addr_t
955 IsLoaded (const lldb::SBModule &module) const;
957 lldb::SBLaunchInfo
961 SetLaunchInfo (const lldb::SBLaunchInfo &launch_info);
967 lldb::SBStructuredData GetStatistics();
970 operator == (const lldb::SBTarget &rhs) const;
973 operator != (const lldb::SBTarget &rhs) const;
975 lldb::SBValue
978 lldb::SBValue
979 EvaluateExpression (const char *expr, const lldb::SBExpressionOptions &options);
981 STRING_EXTENSION_LEVEL(SBTarget, lldb::eDescriptionLevelBrief)
983 lldb::SBTrace
986 lldb::SBTrace
987 CreateTrace (lldb::SBError &error);