Lines Matching refs:module_sp
95 ObjectFileWasm::CreateInstance(const ModuleSP &module_sp, DataBufferSP &data_sp, in CreateInstance() argument
131 module_sp, data_sp, data_offset, file, file_offset, length)); in CreateInstance()
147 ObjectFile *ObjectFileWasm::CreateMemoryInstance(const ModuleSP &module_sp, in CreateMemoryInstance() argument
155 new ObjectFileWasm(module_sp, data_sp, process_sp, header_addr)); in CreateMemoryInstance()
234 ObjectFileWasm::ObjectFileWasm(const ModuleSP &module_sp, DataBufferSP &data_sp, in ObjectFileWasm() argument
237 : ObjectFile(module_sp, file, offset, length, data_sp, data_offset), in ObjectFileWasm()
242 ObjectFileWasm::ObjectFileWasm(const lldb::ModuleSP &module_sp, in ObjectFileWasm() argument
246 : ObjectFile(module_sp, process_sp, header_addr, header_data_sp), in ObjectFileWasm()
370 ModuleSP module_sp = GetModule(); in SetLoadAddress() local
371 if (!module_sp) in SetLoadAddress()
438 ModuleSP module_sp(GetModule()); in Dump() local
439 if (!module_sp) in Dump()
442 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex()); in Dump()