| 553 | } |
| 554 | |
| 555 | void Connection::SetLocalValue(threadID thread, frameID frame, int32_t slot, value val) |
| 556 | { |
| 557 | Command cmd(CommandSet::StackFrame, 2); |
| 558 | // set one value |
| 559 | cmd.GetData().Write(thread).Write(frame).Write<int32_t>(1).Write(slot).Write(val); |
| 560 | |
| 561 | SendReceive(cmd); |
| 562 | } |
| 563 | |
| 564 | value Connection::InvokeInstance(threadID thread, classID clazz, methodID method, objectID object, |
| 565 | const rdcarray<value> &arguments, InvokeOptions options) |
no test coverage detected