Searched refs:ok (Results 1 – 6 of 6) sorted by relevance
/art/test/088-monitor-verification/ |
D | expected.txt | 1 recursiveSync ok 2 nestedMayThrow ok 3 constantLock ok 4 excessiveNesting ok 5 notNested ok 6 twoPath ok 7 triplet ok
|
/art/runtime/ |
D | java_vm_ext_test.cc | 51 jint ok = JNI_GetCreatedJavaVMs(vms_buf, arraysize(vms_buf), &num_vms); in TEST_F() local 52 EXPECT_EQ(JNI_OK, ok); in TEST_F() 64 jint ok = JNI_GetCreatedJavaVMs(vms_buf, arraysize(vms_buf), &num_vms); in attach_current_thread_callback() local 65 EXPECT_EQ(JNI_OK, ok); in attach_current_thread_callback() 66 if (ok == JNI_OK) { in attach_current_thread_callback() 68 ok = vms_buf[0]->AttachCurrentThread(&env, nullptr); in attach_current_thread_callback() 70 ok = vms_buf[0]->AttachCurrentThreadAsDaemon(&env, nullptr); in attach_current_thread_callback() 76 EXPECT_EQ(JNI_OK, ok); in attach_current_thread_callback() 78 if (ok == JNI_OK) { in attach_current_thread_callback() 79 ok = vms_buf[0]->DetachCurrentThread(); in attach_current_thread_callback() [all …]
|
D | elf_file_impl.h | 147 Elf_Word GetHashBucket(size_t i, bool* ok) const; 148 Elf_Word GetHashChain(size_t i, bool* ok) const;
|
D | elf_file.cc | 708 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashBucket(size_t i, bool* ok) const { in GetHashBucket() 710 *ok = false; in GetHashBucket() 713 *ok = true; in GetHashBucket() 719 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashChain(size_t i, bool* ok) const { in GetHashChain() 721 *ok = false; in GetHashChain() 724 *ok = true; in GetHashChain() 835 bool ok; in FindDynamicSymbol() local 836 Elf_Word symbol_and_chain_index = GetHashBucket(bucket_index, &ok); in FindDynamicSymbol() 837 if (!ok) { in FindDynamicSymbol() 849 symbol_and_chain_index = GetHashChain(symbol_and_chain_index, &ok); in FindDynamicSymbol() [all …]
|
/art/compiler/utils/ |
D | assembler_test_base.h | 103 EXPECT_TRUE(res.ok) << res.error_msg; in Driver() 104 if (!res.ok) { in Driver() 186 bool ok; member 361 res->ok = false; in Compile() 415 res->ok = true; in Compile()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 200 bool ok = false; in UnstartedClassNewInstance() local 210 ok = true; in UnstartedClassNewInstance() 218 if (!ok) { in UnstartedClassNewInstance() 418 bool ok = false; in UnstartedThreadLocalGet() local 423 ok = true; in UnstartedThreadLocalGet() 452 ok = true; in UnstartedThreadLocalGet() 460 if (!ok) { in UnstartedThreadLocalGet()
|