• Home
  • Raw
  • Download

Lines Matching refs:reply

65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)  in WriteTaggedObject()  argument
70 expandBufAdd1(reply, tag); in WriteTaggedObject()
71 expandBufAddObjectId(reply, object_id); in WriteTaggedObject()
76 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects) in WriteTaggedObjectList() argument
78 expandBufAdd4BE(reply, objects.size()); in WriteTaggedObjectList()
80 JdwpError rc = WriteTaggedObject(reply, objects[i]); in WriteTaggedObjectList()
359 static JdwpError VM_Capabilities(JdwpState*, Request&, ExpandBuf* reply) in VM_Capabilities() argument
361 expandBufAdd1(reply, true); // canWatchFieldModification in VM_Capabilities()
362 expandBufAdd1(reply, true); // canWatchFieldAccess in VM_Capabilities()
363 expandBufAdd1(reply, true); // canGetBytecodes in VM_Capabilities()
364 expandBufAdd1(reply, true); // canGetSyntheticAttribute in VM_Capabilities()
365 expandBufAdd1(reply, true); // canGetOwnedMonitorInfo in VM_Capabilities()
366 expandBufAdd1(reply, true); // canGetCurrentContendedMonitor in VM_Capabilities()
367 expandBufAdd1(reply, true); // canGetMonitorInfo in VM_Capabilities()
371 static JdwpError VM_CapabilitiesNew(JdwpState*, Request& request, ExpandBuf* reply) in VM_CapabilitiesNew() argument
374 VM_Capabilities(NULL, request, reply); in VM_CapabilitiesNew()
376 expandBufAdd1(reply, false); // canRedefineClasses in VM_CapabilitiesNew()
377 expandBufAdd1(reply, false); // canAddMethod in VM_CapabilitiesNew()
378 expandBufAdd1(reply, false); // canUnrestrictedlyRedefineClasses in VM_CapabilitiesNew()
379 expandBufAdd1(reply, false); // canPopFrames in VM_CapabilitiesNew()
380 expandBufAdd1(reply, true); // canUseInstanceFilters in VM_CapabilitiesNew()
381 expandBufAdd1(reply, false); // canGetSourceDebugExtension in VM_CapabilitiesNew()
382 expandBufAdd1(reply, false); // canRequestVMDeathEvent in VM_CapabilitiesNew()
383 expandBufAdd1(reply, false); // canSetDefaultStratum in VM_CapabilitiesNew()
384 expandBufAdd1(reply, true); // 1.6: canGetInstanceInfo in VM_CapabilitiesNew()
385 expandBufAdd1(reply, false); // 1.6: canRequestMonitorEvents in VM_CapabilitiesNew()
386 expandBufAdd1(reply, true); // 1.6: canGetMonitorFrameInfo in VM_CapabilitiesNew()
387 expandBufAdd1(reply, false); // 1.6: canUseSourceNameFilters in VM_CapabilitiesNew()
388 expandBufAdd1(reply, false); // 1.6: canGetConstantPool in VM_CapabilitiesNew()
389 expandBufAdd1(reply, false); // 1.6: canForceEarlyReturn in VM_CapabilitiesNew()
393 expandBufAdd1(reply, false); in VM_CapabilitiesNew()
624 static JdwpError RT_Instances(JdwpState*, Request& request, ExpandBuf* reply) in RT_Instances() argument
638 return WriteTaggedObjectList(reply, instances); in RT_Instances()
779 static JdwpError M_Bytecodes(JdwpState*, Request& request, ExpandBuf* reply) in M_Bytecodes() argument
790 expandBufAdd4BE(reply, bytecodes.size()); in M_Bytecodes()
792 expandBufAdd1(reply, bytecodes[i]); in M_Bytecodes()
856 static JdwpError OR_MonitorInfo(JdwpState*, Request& request, ExpandBuf* reply) in OR_MonitorInfo() argument
859 return Dbg::GetMonitorInfo(object_id, reply); in OR_MonitorInfo()
904 static JdwpError OR_ReferringObjects(JdwpState*, Request& request, ExpandBuf* reply) in OR_ReferringObjects() argument
918 return WriteTaggedObjectList(reply, referring_objects); in OR_ReferringObjects()
1081 static JdwpError TR_OwnedMonitors(Request& request, ExpandBuf* reply, bool with_stack_depths) in TR_OwnedMonitors() argument
1092 expandBufAdd4BE(reply, monitors.size()); in TR_OwnedMonitors()
1094 rc = WriteTaggedObject(reply, monitors[i]); in TR_OwnedMonitors()
1099 expandBufAdd4BE(reply, stack_depths[i]); in TR_OwnedMonitors()
1105 static JdwpError TR_OwnedMonitors(JdwpState*, Request& request, ExpandBuf* reply) in TR_OwnedMonitors() argument
1107 return TR_OwnedMonitors(request, reply, false); in TR_OwnedMonitors()
1110 static JdwpError TR_OwnedMonitorsStackDepthInfo(JdwpState*, Request& request, ExpandBuf* reply) in TR_OwnedMonitorsStackDepthInfo() argument
1112 return TR_OwnedMonitors(request, reply, true); in TR_OwnedMonitorsStackDepthInfo()
1115 static JdwpError TR_CurrentContendedMonitor(JdwpState*, Request& request, ExpandBuf* reply) in TR_CurrentContendedMonitor() argument
1124 return WriteTaggedObject(reply, contended_monitor); in TR_CurrentContendedMonitor()
1127 static JdwpError TR_Interrupt(JdwpState*, Request& request, ExpandBuf* reply) in TR_Interrupt() argument
1401 static JdwpError SF_ThisObject(JdwpState*, Request& request, ExpandBuf* reply) in SF_ThisObject() argument
1412 return WriteTaggedObject(reply, object_id); in SF_ThisObject()
1452 typedef JdwpError (*JdwpRequestHandler)(JdwpState* state, Request& request, ExpandBuf* reply);