Re: [lldb-dev] GetSymbolContext(lldb.eSymbolContextEverything)

2016-06-22 Thread Kamenee Arumugam via lldb-dev
> also print that in a for loop using "variables" from above: > > > > for variable in variables: > > print str(variable) > > print "Location = %s" % (variable.GetLocation()) > > > > > > Each "variable" object is a lldb.SBValue type

Re: [lldb-dev] GetSymbolContext(lldb.eSymbolContextEverything)

2016-06-21 Thread Kamenee Arumugam via lldb-dev
uot;variable" object is a lldb.SBValue type. There are many API calls on > these that you can call manually depending on what you want. Let me know if > you have any questions. > > Greg Clayton > > > > > > On Jun 17, 2016, at 11:34 AM, Kamenee Arumugam via ll

[lldb-dev] GetSymbolContext(lldb.eSymbolContextEverything)

2016-06-18 Thread Kamenee Arumugam via lldb-dev
Hi, I am trying program using Lldb Python API to get an output exactly same when I run this command "image lookup --address 0x000405a6 --verbose". But when I print return value of GetSymbolContext(lldb.eSymbolContextEverything), it doesnt contain the decoding of local variables which the above