HomeSort by relevance Sort by last modified time
    Searched refs:ObjFile (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/Object/
ModuleSummaryIndexObjectFile.cpp 59 Expected<std::unique_ptr<ObjectFile>> ObjFile =
61 if (!ObjFile)
62 return errorToErrorCode(ObjFile.takeError());
63 return findBitcodeInObject(*ObjFile->get());
IRObjectFile.cpp 299 Expected<std::unique_ptr<ObjectFile>> ObjFile =
301 if (!ObjFile)
302 return errorToErrorCode(ObjFile.takeError());
303 return findBitcodeInObject(*ObjFile->get());
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 100 segments: make(map[*profile.Mapping]plugin.ObjFile),
140 func locateFile(obj plugin.ObjTool, file, buildID string, start uint64) (plugin.ObjFile, error) {
187 segments map[*profile.Mapping]plugin.ObjFile
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/symbolizer/
symbolizer.go 100 segments: make(map[*profile.Mapping]plugin.ObjFile),
140 func locateFile(obj plugin.ObjTool, file, buildID string, start uint64) (plugin.ObjFile, error) {
187 segments map[*profile.Mapping]plugin.ObjFile
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/plugin/
plugin.go 47 Open(file string, start uint64) (ObjFile, error)
74 func (noObjTool) Open(file string, start uint64) (ObjFile, error) {
89 // An ObjFile is a single object file: a shared library or executable.
90 type ObjFile interface {
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/plugin/
plugin.go 47 Open(file string, start uint64) (ObjFile, error)
74 func (noObjTool) Open(file string, start uint64) (ObjFile, error) {
89 // An ObjFile is a single object file: a shared library or executable.
90 type ObjFile interface {
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 132 std::unique_ptr<object::ObjectFile> ObjFile;
134 std::tie(ObjFile, MemBuf) = Obj.takeBinary();
135 addObjectFile(std::move(ObjFile));
  /external/llvm/tools/sancov/
sancov.cc 474 static void printCovPoints(const std::string &ObjFile, raw_ostream &OS) {
475 for (uint64_t Addr : getCoveragePoints(ObjFile)) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/
pprof.go 17 "cmd/internal/objfile"
132 disasmCache map[string]*objfile.Disasm
135 func (*objTool) Open(name string, start uint64) (plugin.ObjFile, error) {
136 of, err := objfile.Open(name)
169 func (t *objTool) cachedDisasm(file string) (*objfile.Disasm, error) {
173 t.disasmCache = make(map[string]*objfile.Disasm)
179 f, err := objfile.Open(file)
197 // file implements plugin.ObjFile using Go libraries
203 sym []objfile.Sym
204 file *objfile.Fil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/
pprof.go 17 "cmd/internal/objfile"
132 disasmCache map[string]*objfile.Disasm
135 func (*objTool) Open(name string, start uint64) (plugin.ObjFile, error) {
136 of, err := objfile.Open(name)
169 func (t *objTool) cachedDisasm(file string) (*objfile.Disasm, error) {
173 t.disasmCache = make(map[string]*objfile.Disasm)
179 f, err := objfile.Open(file)
197 // file implements plugin.ObjFile using Go libraries
203 sym []objfile.Sym
204 file *objfile.Fil
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]

Completed in 369 milliseconds