target_write_phys_memory() is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDtarget_write_phys_memory()

target_write_phys_memory() function

Syntax

int target_write_phys_memory(struct target *target,     target_addr_t address,     uint32_t size,     uint32_t count,     const uint8_t *buffer);
Implemented in target.c:1286

Arguments

target

address

size

count

buffer

References

LocationReferrerText
target.c:1286
int target_write_phys_memory(struct target *target,
target.h:632
int target_write_phys_memory(struct target *target,
target.c:2725target_write_phys_u64()
retval = target_write_phys_memory(target, address, 8, 1, value_buf);
target.c:2746target_write_phys_u32()
retval = target_write_phys_memory(target, address, 4, 1, value_buf);
target.c:2767target_write_phys_u16()
retval = target_write_phys_memory(target, address, 2, 1, value_buf);
target.c:2785target_write_phys_u8()
retval = target_write_phys_memory(target, address, 1, 1, &value);
target.c:3555handle_mw_command()
fn = target_write_phys_memory;
target.c:4751target_jim_write_memory()
retval = target_write_phys_memory(target, addr, width, chunk_len, buffer);

Call Tree

Functions calling target_write_phys_memory()
Functions called by target_write_phys_memory()
target_write_phys_memory()