Home | History | Annotate | Download | only in Commands

Lines Matching refs:symbol

27 #include "lldb/Symbol/Function.h"
28 #include "lldb/Symbol/Symbol.h"
237 { LLDB_OPT_SET_ALL, false, "raw" , 'r', no_argument , NULL, 0, eArgTypeNone, "Print raw disassembly with no symbol information."},
366 result.AppendErrorWithFormat ("Unable to find symbol with name '%s'.\n", name.GetCString());
401 Symbol *symbol = frame->GetSymbolContext(eSymbolContextSymbol).symbol;
402 if (symbol)
404 range.GetBaseAddress() = symbol->GetAddress();
405 range.SetByteSize(symbol->GetByteSize());
457 if (sc.function || sc.symbol)
491 else if (sc.symbol && sc.symbol->ValueIsAddress())
492 range.GetBaseAddress() = sc.symbol->GetAddress();
534 else if (sc.symbol && sc.symbol->ValueIsAddress())
536 range.GetBaseAddress() = sc.symbol->GetAddress();
537 range.SetByteSize (sc.symbol->GetByteSize());