Home
last modified time | relevance | path

Searched refs:lookup_function_symbol (Results 1 – 6 of 6) sorted by relevance

/external/libabigail/tests/
Dtest-symtab.cc163 corpus->lookup_function_symbol("exported_function");
166 CHECK(symbol == corpus->lookup_function_symbol(*symbol));
177 CHECK(!corpus->lookup_function_symbol("exported_variable"));
179 CHECK(symbol != corpus->lookup_function_symbol(*symbol));
186 CHECK(corpus->lookup_function_symbol("exported_function"));
189 CHECK(!corpus->lookup_function_symbol("exported_variable"));
220 CHECK(corpus->lookup_function_symbol("exported_function"));
223 CHECK(!corpus->lookup_function_symbol("exported_variable"));
233 CHECK(corpus->lookup_function_symbol("exported_function"));
236 CHECK(!corpus->lookup_function_symbol("exported_variable"));
[all …]
/external/libabigail/include/
Dabg-corpus.h199 lookup_function_symbol(const string& n) const;
202 lookup_function_symbol(const string& symbol_name,
206 lookup_function_symbol(const elf_symbol& symbol) const;
/external/libabigail/src/
Dabg-corpus.cc1132 corpus::lookup_function_symbol(const string& n) const in lookup_function_symbol() function in abigail::ir::corpus
1198 corpus::lookup_function_symbol(const string& symbol_name, in lookup_function_symbol() function in abigail::ir::corpus
1219 corpus::lookup_function_symbol(const elf_symbol& symbol) const in lookup_function_symbol() function in abigail::ir::corpus
1220 {return lookup_function_symbol(symbol.get_name(), symbol.get_version());} in lookup_function_symbol()
Dabg-comparison.cc5401 || s->lookup_function_symbol(*i->second->get_symbol())) in ensure_lookup_tables_populated()
5424 || f->lookup_function_symbol(*i->second->get_symbol())) in ensure_lookup_tables_populated()
8956 if (second_->lookup_function_symbol(*i->second->get_symbol())) in ensure_lookup_tables_populated()
8971 if (first_->lookup_function_symbol(*i->second->get_symbol())) in ensure_lookup_tables_populated()
8982 if (first_->lookup_function_symbol(i->second->get_symbol()->get_name(), in ensure_lookup_tables_populated()
9109 if (!second_->lookup_function_symbol(*deleted_sym)) in ensure_lookup_tables_populated()
9129 if (!first_->lookup_function_symbol(*added_sym)) in ensure_lookup_tables_populated()
9141 if (first_->lookup_function_symbol(added_sym->get_name(), in ensure_lookup_tables_populated()
Dabg-dwarf-reader.cc4632 corp->lookup_function_symbol(i->second->get_linkage_name())) in fixup_functions_with_no_symbols()
/external/libabigail/
DChangeLog20549 * include/abg-corpus.h (corpus::{lookup_function_symbol,
20554 (corpus::{lookup_function_symbol, lookup_variable_symbol}): Take a
21971 - && f->lookup_function_symbol(i->second->get_symbol()->get_name(),
21973 + || f->lookup_function_symbol(i->second->get_symbol()->get_name(),
27868 * include/abg-corpus.h (corpus::lookup_function_symbol)