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

  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 260 * @param stackData <code>stack[0].cpool_index</code>
265 public void sameLocals(int pos, int offsetDelta, int stackTag, int stackData)
335 * @param stackData <code>stack[i].cpool_index</code>
339 int[] stackTags, int[] stackData)
373 public void sameLocals(int pos, int offsetDelta, int stackTag, int stackData) {
374 writer.sameLocals(offsetDelta, stackTag, copyData(stackTag, stackData));
386 int[] stackTags, int[] stackData) {
388 stackTags, copyData(stackTags, stackData));
492 int[] stackTags, int[] stackData) {
495 super.fullFrame(pos, offsetDelta, localTags, localData, stackTags, stackData);
    [all...]
  /dalvik/vm/
Exception.cpp 825 ArrayObject* stackData = NULL;
886 stackData = dvmAllocPrimitiveArray('I', stackDepth*2, ALLOC_DEFAULT);
887 if (stackData == NULL) {
891 intPtr = (int*)(void*)stackData->contents;
    [all...]

Completed in 199 milliseconds