Home | History | Annotate | Download | only in runtime

Lines Matching refs:ok

654 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashBucket(size_t i, bool* ok) const {
656 *ok = false;
659 *ok = true;
665 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashChain(size_t i, bool* ok) const {
667 *ok = false;
670 *ok = true;
781 bool ok;
782 Elf_Word symbol_and_chain_index = GetHashBucket(bucket_index, &ok);
783 if (!ok) {
795 symbol_and_chain_index = GetHashChain(symbol_and_chain_index, &ok);
796 if (!ok) {