Lines Matching refs:context
1361 DebugCallbackContext context; in dvmDbgOutputLineTable() local
1363 memset (&context, 0, sizeof(DebugCallbackContext)); in dvmDbgOutputLineTable()
1381 context.pReply = pReply; in dvmDbgOutputLineTable()
1388 lineTablePositionsCb, NULL, &context); in dvmDbgOutputLineTable()
1390 set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); in dvmDbgOutputLineTable()
1466 DebugCallbackContext context; in dvmDbgOutputVariableTable() local
1468 memset (&context, 0, sizeof(DebugCallbackContext)); in dvmDbgOutputVariableTable()
1478 context.pReply = pReply; in dvmDbgOutputVariableTable()
1479 context.withGeneric = withGeneric; in dvmDbgOutputVariableTable()
1485 NULL, variableTableCb, &context); in dvmDbgOutputVariableTable()
1487 set4BE(expandBufGetBuffer(pReply) + numLocalsOffset, context.numItems); in dvmDbgOutputVariableTable()
2989 AddressSetContext context; in dvmAddressSetForLine() local
2994 memset(&context, 0, sizeof(context)); in dvmAddressSetForLine()
2995 context.pSet = result; in dvmAddressSetForLine()
2996 context.lineNum = line; in dvmAddressSetForLine()
2997 context.lastAddressValid = false; in dvmAddressSetForLine()
3003 addressSetCb, NULL, &context); in dvmAddressSetForLine()
3006 if (context.lastAddressValid) { in dvmAddressSetForLine()
3008 for (i = context.lastAddress; i < insnsSize; i++) { in dvmAddressSetForLine()