Home
last modified time | relevance | path

Searched refs:sourceFile (Results 1 – 14 of 14) sorted by relevance

/dalvik/dx/src/com/android/dx/rop/code/
DSourcePosition.java32 private final CstUtf8 sourceFile; field in SourcePosition
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { in SourcePosition() argument
65 this.sourceFile = sourceFile; in SourcePosition()
75 if (sourceFile != null) { in toString()
76 sb.append(sourceFile.toHuman()); in toString()
114 return sourceFile.hashCode() + address + line; in hashCode()
137 ((sourceFile == other.sourceFile) || in sameLineAndFile()
138 ((sourceFile != null) && sourceFile.equals(other.sourceFile))); in sameLineAndFile()
147 return sourceFile; in getSourceFile()
/dalvik/dx/src/com/android/dx/cf/attrib/
DAttSourceFile.java29 private final CstUtf8 sourceFile; field in AttSourceFile
36 public AttSourceFile(CstUtf8 sourceFile) { in AttSourceFile() argument
39 if (sourceFile == null) { in AttSourceFile()
43 this.sourceFile = sourceFile; in AttSourceFile()
57 return sourceFile; in getSourceFile()
/dalvik/dx/src/com/android/dx/dex/file/
DClassDefItem.java64 private final CstUtf8 sourceFile; field in ClassDefItem
91 CstType superclass, TypeList interfaces, CstUtf8 sourceFile) { in ClassDefItem() argument
110 this.sourceFile = sourceFile; in ClassDefItem()
158 if (sourceFile != null) { in addContents()
159 stringIds.intern(sourceFile); in addContents()
182 int sourceFileIdx = (sourceFile == null) ? -1 : in writeTo()
183 file.getStringIds().indexOf(sourceFile); in writeTo()
205 " // " + ((sourceFile == null) ? "<none>" : in writeTo()
206 sourceFile.toHuman())); in writeTo()
270 return sourceFile; in getSourceFile()
[all …]
/dalvik/vm/hprof/
DHprofStackFrame.c70 const char* sourceFile = dvmGetMethodSourceFile(method); in hprofStartup_StackFrame() local
71 if (sourceFile) { in hprofStartup_StackFrame()
72 hprofLookupStringId(sourceFile); in hprofStartup_StackFrame()
192 const char *sourceFile; in hprofDumpStackFrames() local
203 sourceFile = dvmGetMethodSourceFile(method); in hprofDumpStackFrames()
204 if (sourceFile == NULL) { in hprofDumpStackFrames()
205 sourceFile = "<unknown>"; in hprofDumpStackFrames()
233 hprofAddIdToRecord(rec, hprofLookupStringId(sourceFile)); in hprofDumpStackFrames()
/dalvik/dx/src/com/android/dx/cf/code/
DConcreteMethod.java48 private final CstUtf8 sourceFile; field in ConcreteMethod
79 this.sourceFile = cf.getSourceFile(); in ConcreteMethod()
251 return new SourcePosition(sourceFile, offset, in makeSourcePosistion()
/dalvik/vm/
DException.c1100 const char* sourceFile; in dvmGetStackTraceRaw() local
1120 sourceFile = dvmGetMethodSourceFile(meth); in dvmGetStackTraceRaw()
1121 if (sourceFile != NULL) in dvmGetStackTraceRaw()
1122 fileName = dvmCreateStringFromCstr(sourceFile, ALLOC_DEFAULT); in dvmGetStackTraceRaw()
1165 const char* sourceFile; in dvmLogRawStackTrace() local
1189 sourceFile = dvmGetMethodSourceFile(meth); in dvmLogRawStackTrace()
DDebugger.c749 return clazz->sourceFile; in dvmDbgGetSourceFile()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java696 CstUtf8 sourceFile = clazz.getSourceFile(); in dumpMethod() local
697 if (sourceFile != null) { in dumpMethod()
698 pw.println(" source file: " + sourceFile.toQuoted()); in dumpMethod()
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java118 CstUtf8 sourceFile = (args.positionInfo == PositionList.NONE) ? null : in translate0() local
122 cf.getSuperclass(), cf.getInterfaces(), sourceFile); in translate0()
/dalvik/hit/src/com/android/hit/
DHprofParser.java211 String sourceFile = mStrings.get(readId()); in loadStackFrame() local
216 sourceFile, serial, lineNumber); in loadStackFrame()
/dalvik/dx/src/com/android/dx/cf/direct/
DStdAttributeFactory.java109 return sourceFile(cf, offset, length, observer); in parse0()
699 private Attribute sourceFile(DirectClassFile cf, int offset, int length, in sourceFile() method in StdAttributeFactory
/dalvik/vm/oo/
DObject.c685 return meth->clazz->sourceFile; in dvmGetMethodSourceFile()
DObject.h458 const char* sourceFile; member
DClass.c1850 newClass->sourceFile = dexGetSourceFile(pDexFile, pClassDef); in loadClassFromDex0()