Home
last modified time | relevance | path

Searched refs:methodName (Results 1 – 4 of 4) sorted by relevance

/development/tools/bugreport/src/com/android/bugreport/stacks/
DJavaStackFrameSnapshot.java33 public String methodName; field in JavaStackFrameSnapshot
47 this.methodName = that.methodName; in JavaStackFrameSnapshot()
DThreadSnapshotParser.java210 frame.methodName = javaRe.group(3); in parse()
221 frame.methodName = jniRe.group(3); in parse()
319 + " / " + jf.className + " / " + jf.methodName in parse()
/development/tools/bugreport/src/com/android/bugreport/inspector/
DInspector.java253 && "transactNative".equals(f.methodName))) { in markOutgoingBinderThread()
269 && "transact".equals(f.methodName))) { in markOutgoingBinderThread()
285 thread.outboundBinderMethod = f.methodName; in markOutgoingBinderThread()
310 && "execTransact".equals(f.methodName))) { in markIncomingBinderThread()
338 thread.inboundBinderMethod = f.methodName; in markIncomingBinderThread()
520 + f.className + "." + f.methodName; in matchesJavaStack()
/development/tools/bugreport/src/com/android/bugreport/html/
DRenderer.java346 hdf.setValue("methodName", f.methodName); in makeStackFrameSnapshotHdf()