Lines Matching refs:process
262 Process *process = exe_ctx.GetProcessPtr(); in WriteFunctionWrapper() local
264 if (!process) in WriteFunctionWrapper()
269 if (process != jit_process_sp.get()) in WriteFunctionWrapper()
301 process->GetTarget().GetImages().Append(jit_module_sp); in WriteFunctionWrapper()
304 if (process && m_jit_start_addr) in WriteFunctionWrapper()
305 m_jit_process_wp = process->shared_from_this(); in WriteFunctionWrapper()
339 Process *process = exe_ctx.GetProcessPtr(); in WriteFunctionArguments() local
341 if (process == NULL) in WriteFunctionArguments()
346 if (process != jit_process_sp.get()) in WriteFunctionArguments()
351 …args_addr_ref = process->AllocateMemory(m_struct_size, lldb::ePermissionsReadable|lldb::ePermissio… in WriteFunctionArguments()
368 …process->WriteScalarToMemory(args_addr_ref + first_offset, fun_addr, process->GetAddressByteSize()… in WriteFunctionArguments()
399 …if (!process->WriteScalarToMemory(args_addr_ref + offset, arg_scalar, arg_scalar.GetByteSize(), er… in WriteFunctionArguments()
473 Process *process = exe_ctx.GetProcessPtr(); in FetchFunctionResults() local
475 if (process == NULL) in FetchFunctionResults()
480 if (process != jit_process_sp.get()) in FetchFunctionResults()
484 …ret_value.GetScalar() = process->ReadUnsignedIntegerFromMemory (args_addr + m_return_offset, m_ret… in FetchFunctionResults()