Home | History | Annotate | Download | only in processor

Lines Matching defs:module

63     // Make a copy of the module and insert it into the map.  Use
67 linked_ptr<const CodeModule> module(
69 if (!map_->StoreRange(module->base_address(), module->size(), module)) {
70 BPLOG(ERROR) << "Module " << module->code_file() <<
91 linked_ptr<const CodeModule> module;
92 if (!map_->RetrieveRange(address, &module, NULL, NULL)) {
93 BPLOG(INFO) << "No module at " << HexString(address);
97 return module.get();
106 linked_ptr<const CodeModule> module;
107 if (!map_->RetrieveRangeAtIndex(sequence, &module, NULL, NULL)) {
112 return module.get();