Searched defs:process_read_data (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_proc.c54 // unlike the standard ptrace() function, process_read_data() can handle
56 // before calling process_read_data.
58 static bool process_read_data(struct ps_prochandle* ph, uintptr_t addr, char *buf, size_t size) { function
233 if (process_read_data(ph, ehdr_addr, (char *)&ehdr, sizeof(ehdr)) != true) {
234 print_debug("process_read_data failed for ehdr_addr %p\n", ehdr_addr);
257 if (process_read_data(ph, phdr_addr, (char *)phdrs, hdrs_size) != true) {
258 print_debug("process_read_data failed for phdr_addr %p\n", phdr_addr);
284 if (process_read_data(ph, dyn_addr, (char *)dyns, hdrs_size) != true) {
285 print_debug("process_read_data failed for dyn_addr %p\n", dyn_addr);
308 if (process_read_data(p
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c53 // unlike the standard ptrace() function, process_read_data() can handle
55 // before calling process_read_data.
57 static bool process_read_data(struct ps_prochandle* ph, uintptr_t addr, char *buf, size_t size) { function
323 .p_pread= process_read_data,

Completed in 30 milliseconds