Lines Matching refs:ok
651 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashBucket(size_t i, bool* ok) const { in GetHashBucket()
653 *ok = false; in GetHashBucket()
656 *ok = true; in GetHashBucket()
662 typename ElfTypes::Word ElfFileImpl<ElfTypes>::GetHashChain(size_t i, bool* ok) const { in GetHashChain()
664 *ok = false; in GetHashChain()
667 *ok = true; in GetHashChain()
776 bool ok; in FindDynamicSymbol() local
777 Elf_Word symbol_and_chain_index = GetHashBucket(bucket_index, &ok); in FindDynamicSymbol()
778 if (!ok) { in FindDynamicSymbol()
790 symbol_and_chain_index = GetHashChain(symbol_and_chain_index, &ok); in FindDynamicSymbol()
791 if (!ok) { in FindDynamicSymbol()