Home | History | Annotate | Download | only in coregrind

Lines Matching refs:desc

1270 int open_fifo (char* name, int flags, char* desc)
1273 DEBUG(1, "opening %s %s\n", name, desc);
1276 XERROR (errno, "error opening %s %s\n", name, desc);
1278 DEBUG(1, "opened %s %s fd %d\n", name, desc, fd);
1320 desc is a string used in tracing */
1322 int read_buf (int fd, char* buf, char* desc)
1325 DEBUG(2, "reading %s\n", desc);
1328 ERROR (errno, "error reading %s\n", desc);
1332 DEBUG(2, "read %s %s\n", desc, buf);
1337 desc is a description of the action for which the write is done.
1342 Bool write_buf(int fd, char* buf, int size, char* desc, Bool notify)
1346 DEBUG(2, "writing %s len %d %s notify: %d\n", desc, size, buf, notify);
1351 ERROR(errno, "error write %s\n", desc);