Lines Matching refs:state
259 static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*) in VM_Exit() argument
262 state->ExitAfterReplying(exit_status); in VM_Exit()
531 static JdwpError RT_Signature(JdwpState* state, Request* request, ExpandBuf* pReply) in RT_Signature() argument
533 return RT_Signature(state, request, pReply, false); in RT_Signature()
536 static JdwpError RT_SignatureWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply) in RT_SignatureWithGeneric() argument
538 return RT_Signature(state, request, pReply, true); in RT_SignatureWithGeneric()
649 static JdwpError CT_InvokeMethod(JdwpState* state, Request* request, in CT_InvokeMethod() argument
656 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in CT_InvokeMethod()
666 static JdwpError CT_NewInstance(JdwpState* state, Request* request, in CT_NewInstance() argument
678 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, true); in CT_NewInstance()
702 static JdwpError IT_InvokeMethod(JdwpState* state, Request* request, in IT_InvokeMethod() argument
709 return RequestInvoke(state, request, thread_id, 0, class_id, method_id, false); in IT_InvokeMethod()
739 static JdwpError M_VariableTable(JdwpState* state, Request* request, ExpandBuf* pReply) in M_VariableTable() argument
741 return M_VariableTable(state, request, pReply, false); in M_VariableTable()
744 static JdwpError M_VariableTableWithGeneric(JdwpState* state, Request* request, ExpandBuf* pReply) in M_VariableTableWithGeneric() argument
746 return M_VariableTable(state, request, pReply, true); in M_VariableTableWithGeneric()
851 static JdwpError OR_InvokeMethod(JdwpState* state, Request* request, in OR_InvokeMethod() argument
859 return RequestInvoke(state, request, thread_id, object_id, class_id, method_id, false); in OR_InvokeMethod()
1214 static JdwpError ER_Set(JdwpState* state, Request* request, ExpandBuf* pReply) in ER_Set() argument
1338 uint32_t requestId = state->NextEventSerial(); in ER_Set()
1347 JdwpError err = state->RegisterEvent(pEvent.get()); in ER_Set()
1357 static JdwpError ER_Clear(JdwpState* state, Request* request, ExpandBuf*) in ER_Clear() argument
1364 state->UnregisterEventById(requestId); in ER_Clear()
1414 static JdwpError DDM_Chunk(JdwpState* state, Request* request, ExpandBuf* pReply) in DDM_Chunk() argument
1416 state->NotifyDdmsActive(); in DDM_Chunk()
1435 using JdwpRequestHandler = JdwpError(*)(JdwpState* state, Request* request, ExpandBuf* reply);