Home | History | Annotate | Download | only in m_gdbserver

Lines Matching refs:buf

45 void registers_to_string (char *buf);
49 void registers_from_string (const char *buf);
65 /* *mod set to True if *buf provides a new value. */
66 void supply_register (int n, const void *buf, Bool *mod);
68 /* Reads register data from buf (hex string in target byte order)
70 *mod set to True if *buf provides a new value. */
71 void supply_register_from_string (int n, const char *buf, Bool *mod);
73 /* *mod set to True if *buf provides a new value. */
74 void supply_register_by_name (const char *name, const void *buf, Bool *mod);
76 void collect_register (int n, void *buf);
78 void collect_register_as_string (int n, char *buf);
80 void collect_register_by_name (const char *name, void *buf);