Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
include/lldb/Core/Module.h
Show First 20 Lines • Show All 806 Lines • ▼ Show 20 Lines | uint32_t ResolveSymbolContextsForFileSpec( | ||||
const FileSpec &file_spec, uint32_t line, bool check_inlines, | const FileSpec &file_spec, uint32_t line, bool check_inlines, | ||||
lldb::SymbolContextItem resolve_scope, SymbolContextList &sc_list); | lldb::SymbolContextItem resolve_scope, SymbolContextList &sc_list); | ||||
void SetFileSpecAndObjectName(const FileSpec &file, | void SetFileSpecAndObjectName(const FileSpec &file, | ||||
ConstString object_name); | ConstString object_name); | ||||
bool GetIsDynamicLinkEditor(); | bool GetIsDynamicLinkEditor(); | ||||
TypeSystem *GetTypeSystemForLanguage(lldb::LanguageType language); | llvm::Expected<TypeSystem &> | ||||
GetTypeSystemForLanguage(lldb::LanguageType language); | |||||
// Special error functions that can do printf style formatting that will | // Special error functions that can do printf style formatting that will | ||||
// prepend the message with something appropriate for this module (like the | // prepend the message with something appropriate for this module (like the | ||||
// architecture, path and object name (if any)). This centralizes code so | // architecture, path and object name (if any)). This centralizes code so | ||||
// that everyone doesn't need to format their error and log messages on their | // that everyone doesn't need to format their error and log messages on their | ||||
// own and keeps the output a bit more consistent. | // own and keeps the output a bit more consistent. | ||||
void LogMessage(Log *log, const char *format, ...) | void LogMessage(Log *log, const char *format, ...) | ||||
__attribute__((format(printf, 3, 4))); | __attribute__((format(printf, 3, 4))); | ||||
▲ Show 20 Lines • Show All 256 Lines • Show Last 20 Lines |