Searched refs:SBValue (Results 1 – 5 of 5) sorted by relevance
91 if isinstance(arg, lldb.SBValue):93 lldb.SBValue(arg).GetType().GetDisplayTypeName(),94 lldb.SBValue(arg).GetLoadAddress())514 v.__class__ = SBValue611 class SBValue(lldb.SBValue, metaclass=LLDBWrapMetaclass): class643 @functools.wraps(lldb.SBValue.GetValueAsSigned)652 @functools.wraps(lldb.SBValue.GetValueAsUnsigned)661 @functools.wraps(lldb.SBValue.SetValueFromCString)668 @functools.wraps(lldb.SBValue.SetData)677 v = super(SBValue, self).Cast(ty)[all …]
7 from lldb import SBValue263 is_sbval = isinstance(obj, SBValue)286 return v.xGetValueAsCString() if isinstance(v, SBValue) else str(v)290 n = v.xGetValueAsCString() if isinstance(v, SBValue) else int(v)
275 elif isinstance(arg, lldb.SBValue):
11 class PluginValue(lldb.SBValue):
1174 if not hasattr(lldb.SBValue, 'GetValueAsAddress'):