Lines Matching refs:state

256 static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*)  in VM_Exit()  argument
259 state->ExitAfterReplying(exit_status); in VM_Exit()
524 static JdwpError RT_Signature(JdwpState* state, Request* request, ExpandBuf* pReply) in RT_Signature() argument
526 return RT_Signature(state, request, pReply, false); in RT_Signature()
529 static JdwpError RT_SignatureWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply) in RT_SignatureWithGeneric() argument
531 return RT_Signature(state, request, pReply, true); in RT_SignatureWithGeneric()
642 static JdwpError CT_InvokeMethod(JdwpState* state, Request* request, in CT_InvokeMethod() argument
649 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in CT_InvokeMethod()
659 static JdwpError CT_NewInstance(JdwpState* state, Request* request, in CT_NewInstance() argument
671 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true); in CT_NewInstance()
719 static JdwpError M_VariableTable(JdwpState* state, Request* request, ExpandBuf* pReply) in M_VariableTable() argument
721 return M_VariableTable(state, request, pReply, false); in M_VariableTable()
724 static JdwpError M_VariableTableWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply) in M_VariableTableWithGeneric() argument
726 return M_VariableTable(state, request, pReply, true); in M_VariableTableWithGeneric()
823 static JdwpError OR_InvokeMethod(JdwpState* state, Request* request, in OR_InvokeMethod() argument
831 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false); in OR_InvokeMethod()
1181 static JdwpError ER_Set(JdwpState* state, Request* request, ExpandBuf* pReply) in ER_Set() argument
1307 uint32_t requestId = state->NextEventSerial(); in ER_Set()
1315 JdwpError err = state->RegisterEvent(pEvent); in ER_Set()
1324 static JdwpError ER_Clear(JdwpState* state, Request* request, ExpandBuf*) in ER_Clear() argument
1331 state->UnregisterEventById(requestId); in ER_Clear()
1381 static JdwpError DDM_Chunk(JdwpState* state, Request* request, ExpandBuf* pReply) in DDM_Chunk() argument
1383 state->NotifyDdmsActive(); in DDM_Chunk()
1402 typedef JdwpError (*JdwpRequestHandler)(JdwpState* state, Request* request, ExpandBuf* reply);