Searched refs:frames (Results 1 – 3 of 3) sorted by relevance
181 StringBuilder frames = new StringBuilder(); in toString() local183 frames.append('\n'); in toString()185 frames.append("\t at "); in toString()186 frames.append(stackFrame); in toString()187 frames.append('\n'); in toString()190 frames.append("<empty>"); in toString()194 + ", frames=" + frames + "]"; in toString()
193 int frames = stackTrace.stackFrames.length; in writeStackTrace() local194 int[] stackFrameIds = new int[frames]; in writeStackTrace()195 for (int i = 0; i < frames; i++) { in writeStackTrace()200 4 + 4 + 4 + (frames * BinaryHprof.ID_SIZE)); in writeStackTrace()203 out.writeInt(frames); in writeStackTrace()
377 int frames = in.readInt(); in parseStackTrace() local381 System.out.println("\tframes=" + frames); in parseStackTrace()383 int expectedLength = 4 + 4 + 4 + (frames * BinaryHprof.ID_SIZE); in parseStackTrace()390 StackTraceElement[] stackFrames = new StackTraceElement[frames]; in parseStackTrace()391 for (int i = 0; i < frames; i++) { in parseStackTrace()