Home | History | Annotate | Download | only in jdwp

Lines Matching refs:rc

68   JdwpError rc = Dbg::GetObjectTag(object_id, tag);
69 if (rc == ERR_NONE) {
73 return rc;
80 JdwpError rc = WriteTaggedObject(reply, objects[i]);
81 if (rc != ERR_NONE) {
82 return rc;
451 JdwpError rc = Dbg::GetInstanceCounts(class_ids, counts);
452 if (rc != ERR_NONE) {
453 return rc;
633 JdwpError rc = Dbg::GetInstances(class_id, max_count, instances);
634 if (rc != ERR_NONE) {
635 return rc;
785 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, bytecodes);
786 if (rc != ERR_NONE) {
787 return rc;
899 JdwpError rc = Dbg::IsCollected(object_id, is_collected);
901 return rc;
913 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, referring_objects);
914 if (rc != ERR_NONE) {
915 return rc;
1072 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, frame_count);
1073 if (rc != ERR_NONE) {
1074 return rc;
1087 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, monitors, stack_depths);
1088 if (rc != ERR_NONE) {
1089 return rc;
1094 rc = WriteTaggedObject(reply, monitors[i]);
1095 if (rc != ERR_NONE) {
1096 return rc;
1120 JdwpError rc = Dbg::GetContendedMonitor(thread_id, contended_monitor);
1121 if (rc != ERR_NONE) {
1122 return rc;
1407 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id);
1408 if (rc != ERR_NONE) {
1409 return rc;