You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Print char *[] (Assuming r9 holds a pointer to it)
script ## To enter embedded python interpreter
from lldb import *
options = SBExpressionOptions()
i=0
>>> data = frame.EvaluateExpression("*(char **)($r9+{})".format(i), options)
>>> while SBValue.__eol_test__(data) == False:
... print data
... i += 8
... data = frame.EvaluateExpression("*(char **)($r9+{})".format(i), options)