Lines Matching refs:error

986     JDWP::JdwpError error = DecodeThread(soa, thread_id, thread);  in GetOwnedMonitors()  local
987 if (error != JDWP::ERR_NONE) { in GetOwnedMonitors()
988 return error; in GetOwnedMonitors()
1007 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetContendedMonitor() local
1008 if (error != JDWP::ERR_NONE) { in GetContendedMonitor()
1009 return error; in GetContendedMonitor()
1976 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThreadName() local
1977 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { in GetThreadName()
1978 return error; in GetThreadName()
2001 JDWP::JdwpError error; in GetThreadGroup() local
2005 error = DecodeThread(soa, thread_id, thread); in GetThreadGroup()
2007 if (error == JDWP::ERR_THREAD_NOT_ALIVE) { in GetThreadGroup()
2010 error = JDWP::ERR_NONE; in GetThreadGroup()
2011 } else if (error == JDWP::ERR_NONE) { in GetThreadGroup()
2022 return error; in GetThreadGroup()
2026 JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) in DecodeThreadGroup() argument
2030 *error = JDWP::ERR_INVALID_OBJECT; in DecodeThreadGroup()
2037 *error = JDWP::ERR_INVALID_THREAD_GROUP; in DecodeThreadGroup()
2040 *error = JDWP::ERR_NONE; in DecodeThreadGroup()
2046 JDWP::JdwpError error; in GetThreadGroupName() local
2047 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); in GetThreadGroupName()
2048 if (error != JDWP::ERR_NONE) { in GetThreadGroupName()
2049 return error; in GetThreadGroupName()
2065 JDWP::JdwpError error; in GetThreadGroupParent() local
2066 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); in GetThreadGroupParent()
2067 if (error != JDWP::ERR_NONE) { in GetThreadGroupParent()
2068 return error; in GetThreadGroupParent()
2109 JDWP::JdwpError error; in GetThreadGroupChildren() local
2110 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); in GetThreadGroupChildren()
2111 if (error != JDWP::ERR_NONE) { in GetThreadGroupChildren()
2112 return error; in GetThreadGroupChildren()
2187 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThreadStatus() local
2188 if (error != JDWP::ERR_NONE) { in GetThreadStatus()
2189 if (error == JDWP::ERR_THREAD_NOT_ALIVE) { in GetThreadStatus()
2193 return error; in GetThreadStatus()
2208 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThreadDebugSuspendCount() local
2209 if (error != JDWP::ERR_NONE) { in GetThreadDebugSuspendCount()
2210 return error; in GetThreadDebugSuspendCount()
2221 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in Interrupt() local
2222 if (error != JDWP::ERR_NONE) { in Interrupt()
2223 return error; in Interrupt()
2300 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThreadFrameCount() local
2301 if (error != JDWP::ERR_NONE) { in GetThreadFrameCount()
2302 return error; in GetThreadFrameCount()
2353 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThreadFrames() local
2354 if (error != JDWP::ERR_NONE) { in GetThreadFrames()
2355 return error; in GetThreadFrames()
2460 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetThisObject() local
2461 if (error != JDWP::ERR_NONE) { in GetThisObject()
2462 return error; in GetThisObject()
2516 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in GetLocalValues() local
2517 if (error != JDWP::ERR_NONE) { in GetLocalValues()
2518 return error; in GetLocalValues()
2540 JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); in GetLocalValues() local
2541 if (error != JDWP::ERR_NONE) { in GetLocalValues()
2542 return error; in GetLocalValues()
2682 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in SetLocalValues() local
2683 if (error != JDWP::ERR_NONE) { in SetLocalValues()
2684 return error; in SetLocalValues()
2704 JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width); in SetLocalValues() local
2705 if (error != JDWP::ERR_NONE) { in SetLocalValues()
2706 return error; in SetLocalValues()
3545 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); in UnconfigureStep() local
3546 if (error == JDWP::ERR_NONE) { in UnconfigureStep()
3595 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread); in InvokeMethod() local
3596 if (error != JDWP::ERR_NONE) { in InvokeMethod()
3598 return error; in InvokeMethod()
3770 return req->error; in InvokeMethod()