Lines Matching refs:module
29 const JSONModule &module) { in ParseModule() argument
30 FileSpec system_file_spec(module.system_path); in ParseModule()
33 FileSpec local_file_spec(module.file.hasValue() ? *module.file in ParseModule()
34 : module.system_path); in ParseModule()
41 if (module.uuid.hasValue()) in ParseModule()
42 module_spec.GetUUID().SetFromStringRef(*module.uuid); in ParseModule()
52 module_sp->SetLoadAddress(*target_sp, module.load_address.value, false, in ParseModule()
137 for (const JSONModule &module : process.modules) in ParseProcess() local
138 if (Error err = ParseModule(target_sp, module)) in ParseProcess()
187 bool fromJSON(const Value &value, TraceSessionFileParser::JSONModule &module, in fromJSON() argument
190 return o && o.map("systemPath", module.system_path) && in fromJSON()
191 o.map("file", module.file) && in fromJSON()
192 o.map("loadAddress", module.load_address) && in fromJSON()
193 o.map("uuid", module.uuid); in fromJSON()