Lines Matching refs:symbol
42 // Retrive the pointer to the symbol table.
46 ALOGW("Object doesn't contain any symbol table.");
107 const ELFSymbol<32> *symbol = mSymTab->getByName(pName);
108 if (symbol == NULL) {
109 ALOGV("Request symbol '%s' is not found in the object!", pName);
113 return symbol->getAddress(mObject->getHeader()->getMachine(),
122 const ELFSymbol<32> *symbol = mSymTab->getByName(pName);
124 if (symbol == NULL) {
125 ALOGV("Request symbol '%s' is not found in the object!", pName);
129 return static_cast<size_t>(symbol->getSize());
150 assert(false && "Invalid symbol type given!");
156 ELFSymbol<32> *symbol = (*mSymTab)[i];
157 if (symbol == NULL) {
162 (symbol->getType() == elf_type)) {
163 const char *symbol_name = symbol->getName();