MCPcopy Create free account
hub / github.com/google/gapid / Call

Struct Call

gapis/replay/opcode/opcodes.go:100–104  ·  view source on GitHub ↗

Call represents the CALL virtual machine opcode.

Source from the content-addressed store, hash-verified

98
99// Call represents the CALL virtual machine opcode.
100type Call struct {
101 PushReturn bool // Should the return value be pushed onto the stack?
102 ApiIndex uint8 // The index of the API this call belongs to.
103 FunctionID uint16 // The function identifier to call.
104}
105
106func (c Call) String() string {
107 return fmt.Sprintf("Call(PushReturn: %v, API: %v, Func: %v)", c.PushReturn, c.ApiIndex, c.FunctionID)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected