HomeSort by relevance Sort by last modified time
    Searched defs:dli (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 74 static void PrintDILineInfo(DILineInfo dli) {
76 outs() << (dli.getFunctionName() ? dli.getFunctionName() : "<unknown>")
78 outs() << (dli.getFileName() ? dli.getFileName() : "<unknown>") << ':'
79 << dli.getLine() << ':' << dli.getColumn() << '\n';
118 DILineInfo dli = InliningInfo.getFrame(i); local
119 PrintDILineInfo(dli);
123 DILineInfo dli = DICtx->getLineInfoForAddress(Address, SpecFlags) local
    [all...]
  /external/openssl/crypto/dso/
dso_dlfcn.c 447 Dl_info dli; local
457 if (dladdr(addr,&dli))
459 len = (int)strlen(dli.dli_fname);
462 memcpy(path,dli.dli_fname,len);
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 448 DILineInfo dli = local
451 if (dli != lastLine && dli.getLine() != 0)
452 outs() << "\t## " << dli.getFileName() << ':'
453 << dli.getLine() << ':' << dli.getColumn();
454 lastLine = dli;
616 DILineInfo dli = local
619 if (dli != lastLine && dli.getLine() != 0
    [all...]

Completed in 64 milliseconds