Searched defs:okay (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dcheck_jni.cc393 * z - jsize (for lengths; use i if negative values are okay)
639 bool okay = true; local
642 okay = obj->IsClass();
648 okay = obj->GetClass()->IsStringClass();
651 okay = obj->GetClass()->IsThrowableClass();
656 if (!okay) {
781 case kFlag_CritOkay: // okay to call this method
783 case kFlag_CritBad: // not okay to call
1198 // The JNI specification doesn't say it's okay to call FatalError with a pending exception,
1752 // that it's okay t
[all...]
H A Djni_internal.cc380 bool okay; local
388 okay = true;
395 okay = (jni_on_load_result_ == kOkay);
397 << (okay ? "succeeded" : "failed") << "]";
401 return okay;
2571 bool okay = (static_cast<jint>(kLocalsMax - capacity) >= desired_capacity); local
2572 if (!okay) {
2575 return okay ? JNI_OK : JNI_ERR;
/art/runtime/hprof/
H A Dhprof.cc452 bool okay = true; local
480 okay = file->WriteFully(header_data_ptr_, header_data_size_) &&
482 if (okay) {
483 okay = file->FlushCloseOrErase() == 0;
487 if (!okay) {
496 if (okay) {

Completed in 1941 milliseconds