Lines Matching full:runtime
29 #include "runtime/include/exceptions.h"
30 #include "runtime/include/class_linker.h"
31 #include "runtime/include/coretypes/array.h"
32 #include "runtime/include/coretypes/string.h"
33 #include "runtime/include/panda_vm.h"
34 #include "runtime/include/runtime.h"
35 #include "runtime/include/thread.h"
36 #include "runtime/include/thread_status.h"
37 #include "runtime/interpreter/frame.h"
231 Runtime::Abort(); in Assert()
238 Runtime::Abort(); in UnknownIntrinsic()
245 Runtime::Abort(); in AssertPrint()
279 // Need for java.lang.Runtime
280 // it is explicit function in java.lang.Runtime class
283 Runtime::Halt(status); in RuntimeExit()
302 … LOG(FATAL, RUNTIME) << "MonitorEnter for " << std::hex << header << " returned Illegal state!"; in ObjectMonitorEnter()
325 LOG_IF(state == Monitor::State::ILLEGAL, FATAL, RUNTIME) << "Monitor::Wait() failed"; in ObjectWait()
331 LOG_IF(state == Monitor::State::ILLEGAL, FATAL, RUNTIME) << "Monitor::Wait() failed"; in ObjectTimedWait()
337 LOG_IF(state == Monitor::State::ILLEGAL, FATAL, RUNTIME) << "Monitor::Wait() failed"; in ObjectTimedWaitNanos()
343 LOG_IF(state != Monitor::State::OK, FATAL, RUNTIME) << "Monitor::Notify() failed"; in ObjectNotify()
349 LOG_IF(state != Monitor::State::OK, FATAL, RUNTIME) << "Monitor::NotifyAll() failed"; in ObjectNotifyAll()