Searched defs:ok (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Djava_vm_ext_test.cc51 jint ok = JNI_GetCreatedJavaVMs(vms_buf, arraysize(vms_buf), &num_vms); local
52 EXPECT_EQ(JNI_OK, ok);
64 jint ok = JNI_GetCreatedJavaVMs(vms_buf, arraysize(vms_buf), &num_vms); local
65 EXPECT_EQ(JNI_OK, ok);
66 if (ok == JNI_OK) {
68 ok = vms_buf[0]->AttachCurrentThread(&env, nullptr);
70 ok = vms_buf[0]->AttachCurrentThreadAsDaemon(&env, nullptr);
76 EXPECT_EQ(JNI_OK, ok);
78 if (ok == JNI_OK) {
79 ok
128 jint ok = vm_->AttachCurrentThread(&env, nullptr); local
[all...]
H A Delf_file.cc659 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashBucket(size_t i, bool* ok) const {
661 *ok = false;
664 *ok = true;
670 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashChain(size_t i, bool* ok) const {
672 *ok = false;
675 *ok = true;
786 bool ok; local
787 Elf_Word symbol_and_chain_index = GetHashBucket(bucket_index, &ok);
788 if (!ok) {
800 symbol_and_chain_index = GetHashChain(symbol_and_chain_index, &ok);
[all...]
/art/compiler/utils/
H A Dassembler_test_base.h120 EXPECT_TRUE(res.ok) << res.error_msg;
121 if (!res.ok) {
203 bool ok; member in struct:art::AssemblerTestInfrastructure::NativeAssemblerResult
381 res->ok = false;
435 res->ok = true;
/art/compiler/optimizing/
H A Dregister_allocator_graph_color.cc745 bool ok = ValidateIntervals(intervals, local
752 if (!ok) {
1601 // If all adjacent nodes of `from` are "ok", then we can conservatively merge with `into`.
1602 // Reasons an adjacent node `adj` can be "ok":
/art/runtime/interpreter/
H A Dunstarted_runtime.cc265 bool ok = false; local
275 ok = true;
283 if (!ok) {

Completed in 80 milliseconds