Lines Matching refs:m_process
249 : DynamicLoader(process), m_process(process), in DynamicLoaderFreeBSDKernel()
510 addr_t address = m_process->ReadPointerFromMemory( in ReadKmodsListHeader()
511 m_linker_file_list_struct_addr.GetLoadAddress(&m_process->GetTarget()), in ReadKmodsListHeader()
542 ModuleList &modules = m_process->GetTarget().GetImages(); in ParseKmods()
553 m_process->GetTarget().ModulesDidUnload(remove_modules, false); in ParseKmods()
560 if (!image_info.LoadImageUsingMemoryModule(m_process)) { in ParseKmods()
561 image_info.LoadImageUsingFileAddress(m_process); in ParseKmods()
571 m_process->GetTarget().ModulesDidLoad(add_modules); in ParseKmods()
603 const int32_t kld_off_address = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
605 &m_process->GetTarget()), in ReadAllKmods()
609 const int32_t kld_off_next = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
610 kld_off_next_symbol->GetAddress().GetLoadAddress(&m_process->GetTarget()), in ReadAllKmods()
614 const int32_t kld_off_filename = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
616 &m_process->GetTarget()), in ReadAllKmods()
621 const int32_t kld_off_pathname = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
623 &m_process->GetTarget()), in ReadAllKmods()
633 linker_files_head_addr.GetLoadAddress(&m_process->GetTarget()); in ReadAllKmods()
637 m_process->ReadPointerFromMemory(current_kld + kld_off_filename, error); in ReadAllKmods()
641 m_process->ReadPointerFromMemory(current_kld + kld_off_pathname, error); in ReadAllKmods()
645 m_process->ReadCStringFromMemory(kld_filename_addr, kld_filename, in ReadAllKmods()
649 m_process->ReadCStringFromMemory(kld_pathname_addr, kld_pathname, in ReadAllKmods()
654 m_process->ReadPointerFromMemory(current_kld + kld_off_address, error); in ReadAllKmods()
665 m_process->ReadPointerFromMemory(current_kld + kld_off_next, error); in ReadAllKmods()
695 ModuleSP module_sp = m_process->GetTarget().GetExecutableModule(); in LoadKernelModules()
719 if (!m_kernel_image_info.LoadImageUsingMemoryModule(m_process)) in LoadKernelModules()
720 m_kernel_image_info.LoadImageUsingFileAddress(m_process); in LoadKernelModules()
751 PrivateInitialize(m_process); in DidAttach()
757 PrivateInitialize(m_process); in DidLaunch()
765 m_process = nullptr; in Clear()
775 m_process = process; in PrivateInitialize()