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)
637 bool okay = true; local
640 okay = obj->IsClass();
646 okay = obj->GetClass()->IsStringClass();
649 okay = obj->GetClass()->IsThrowableClass();
654 if (!okay) {
784 case kFlag_CritOkay: // okay to call this method
786 case kFlag_CritBad: // not okay to call
1205 // The JNI specification doesn't say it's okay to call FatalError with a pending exception,
1757 // that it's okay t
[all...]
H A Djni_internal.cc474 bool okay; local
482 okay = true;
489 okay = (jni_on_load_result_ == kOkay);
491 << (okay ? "succeeded" : "failed") << "]";
495 return okay;
2532 bool okay = (static_cast<jint>(kLocalsMax - capacity) >= desired_capacity); local
2533 if (!okay) {
2537 return okay ? JNI_OK : JNI_ERR;
/art/runtime/hprof/
H A Dhprof.cc439 bool okay = true; local
467 okay = file->WriteFully(header_data_ptr_, header_data_size_) &&
469 if (!okay) {
478 if (okay) {

Completed in 69 milliseconds