Home
last modified time | relevance | path

Searched refs:stackFrame (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/dalvik/system/
DEmulatedStackFrameTest.java28 EmulatedStackFrame stackFrame = EmulatedStackFrame.create(MethodType.methodType( in testReaderWriter_allParamTypes() local
34 writer.attach(stackFrame); in testReaderWriter_allParamTypes()
46 reader.attach(stackFrame); in testReaderWriter_allParamTypes()
59 EmulatedStackFrame stackFrame = EmulatedStackFrame.create( in testReaderWriter_allReturnTypes() local
63 writer.attach(stackFrame).makeReturnValueAccessor(); in testReaderWriter_allReturnTypes()
66 reader.attach(stackFrame).makeReturnValueAccessor(); in testReaderWriter_allReturnTypes()
71 stackFrame = EmulatedStackFrame.create(MethodType.methodType(char.class)); in testReaderWriter_allReturnTypes()
72 writer.attach(stackFrame).makeReturnValueAccessor(); in testReaderWriter_allReturnTypes()
73 reader.attach(stackFrame).makeReturnValueAccessor(); in testReaderWriter_allReturnTypes()
78 stackFrame = EmulatedStackFrame.create(MethodType.methodType(short.class)); in testReaderWriter_allReturnTypes()
[all …]
/libcore/dalvik/src/main/java/dalvik/system/
DEmulatedStackFrame.java81 private final byte[] stackFrame; field in EmulatedStackFrame
84 byte[] stackFrame) { in EmulatedStackFrame() argument
88 this.stackFrame = stackFrame; in EmulatedStackFrame()
220 System.arraycopy(stackFrame, fromRange.stackFrameStart, in copyRangeTo()
221 other.stackFrame, primitivesStart, fromRange.numBytes); in copyRangeTo()
233 System.arraycopy(stackFrame, stackFrame.length - 4, in copyReturnValueTo()
234 other.stackFrame, other.stackFrame.length - 4, 4); in copyReturnValueTo()
236 System.arraycopy(stackFrame, stackFrame.length - 8, in copyReturnValueTo()
237 other.stackFrame, other.stackFrame.length - 8, 8); in copyReturnValueTo()
329 public StackFrameAccessor attach(EmulatedStackFrame stackFrame) { in attach() argument
[all …]