Lines Matching refs:m_process
249 : DynamicLoader(process), m_process(process), in DynamicLoaderFreeBSDKernel()
509 addr_t address = m_process->ReadPointerFromMemory( in ReadKmodsListHeader()
510 m_linker_file_list_struct_addr.GetLoadAddress(&m_process->GetTarget()), in ReadKmodsListHeader()
541 ModuleList &modules = m_process->GetTarget().GetImages(); in ParseKmods()
552 m_process->GetTarget().ModulesDidUnload(remove_modules, false); in ParseKmods()
559 if (!image_info.LoadImageUsingMemoryModule(m_process)) { in ParseKmods()
560 image_info.LoadImageUsingFileAddress(m_process); in ParseKmods()
570 m_process->GetTarget().ModulesDidLoad(add_modules); in ParseKmods()
602 const int32_t kld_off_address = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
604 &m_process->GetTarget()), in ReadAllKmods()
608 const int32_t kld_off_next = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
609 kld_off_next_symbol->GetAddress().GetLoadAddress(&m_process->GetTarget()), in ReadAllKmods()
613 const int32_t kld_off_filename = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
615 &m_process->GetTarget()), in ReadAllKmods()
620 const int32_t kld_off_pathname = m_process->ReadSignedIntegerFromMemory( in ReadAllKmods()
622 &m_process->GetTarget()), in ReadAllKmods()
632 linker_files_head_addr.GetLoadAddress(&m_process->GetTarget()); in ReadAllKmods()
636 m_process->ReadPointerFromMemory(current_kld + kld_off_filename, error); in ReadAllKmods()
640 m_process->ReadPointerFromMemory(current_kld + kld_off_pathname, error); in ReadAllKmods()
644 m_process->ReadCStringFromMemory(kld_filename_addr, kld_filename, in ReadAllKmods()
648 m_process->ReadCStringFromMemory(kld_pathname_addr, kld_pathname, in ReadAllKmods()
653 m_process->ReadPointerFromMemory(current_kld + kld_off_address, error); in ReadAllKmods()
664 m_process->ReadPointerFromMemory(current_kld + kld_off_next, error); in ReadAllKmods()
694 ModuleSP module_sp = m_process->GetTarget().GetExecutableModule(); in LoadKernelModules()
718 if (!m_kernel_image_info.LoadImageUsingMemoryModule(m_process)) in LoadKernelModules()
719 m_kernel_image_info.LoadImageUsingFileAddress(m_process); in LoadKernelModules()
750 PrivateInitialize(m_process); in DidAttach()
756 PrivateInitialize(m_process); in DidLaunch()
764 m_process = nullptr; in Clear()
774 m_process = process; in PrivateInitialize()