Home | History | Annotate | Download | only in debug

Lines Matching defs:symbol

54   // Defer symbol load until they're needed, use undecorated names, and get line
69 // add the directory of the executable to symbol search path.
117 // Initialize symbol information retrieval structures.
119 PSYMBOL_INFO symbol = reinterpret_cast<PSYMBOL_INFO>(&buffer[0]);
120 symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
121 symbol->MaxNameLen = kMaxNameLength - 1;
123 SymFromAddr(GetCurrentProcess(), frame, &sym_displacement, symbol);
135 (*os) << symbol->Name << " [0x" << trace[i] << "+" << sym_displacement
138 // If there is no symbol information, add a spacer.
139 (*os) << "(No symbol) [0x" << trace[i] << "]";