class ProcessMemoryFuchsia

Defined at line 29 of file ../../third_party/crashpad/src/util/process/process_memory_fuchsia.h

Accesses the memory of another Fuchsia process.

Public Methods

void ProcessMemoryFuchsia ()
void ProcessMemoryFuchsia (const ProcessMemoryFuchsia & )

Defined at line 33 of file ../../third_party/crashpad/src/util/process/process_memory_fuchsia.h

ProcessMemoryFuchsia & operator= (const ProcessMemoryFuchsia & )

Defined at line 34 of file ../../third_party/crashpad/src/util/process/process_memory_fuchsia.h

void ~ProcessMemoryFuchsia ()
bool Initialize (const zx::process & process)

Initializes this object to read the memory of a process by handle.

This method must be called successfully prior to calling any other method

in this class.

Parameters

process [in] The handle to the target process.

Returns

`true` on success, `false` on failure with a message logged.

bool Initialize (const zx::unowned_process & process)

TODO(wez): Remove this overload when zx::unowned_process allows implicit

copy.