Searched refs:target_errno (Results 1 – 3 of 3) sorted by relevance
| /dragonfly/contrib/gdb-7/gdb/ |
| HD | inf-child.c | 235 int *target_errno) in inf_child_fileio_open() argument 242 *target_errno = FILEIO_EINVAL; in inf_child_fileio_open() 250 *target_errno = inf_child_errno_to_fileio_error (errno); in inf_child_fileio_open() 260 ULONGEST offset, int *target_errno) in inf_child_fileio_pwrite() argument 278 *target_errno = inf_child_errno_to_fileio_error (errno); in inf_child_fileio_pwrite() 288 ULONGEST offset, int *target_errno) in inf_child_fileio_pread() argument 306 *target_errno = inf_child_errno_to_fileio_error (errno); in inf_child_fileio_pread() 314 inf_child_fileio_close (int fd, int *target_errno) in inf_child_fileio_close() argument 320 *target_errno = inf_child_errno_to_fileio_error (errno); in inf_child_fileio_close() 328 inf_child_fileio_unlink (const char *filename, int *target_errno) in inf_child_fileio_unlink() argument [all …]
|
| HD | target.h | 711 int *target_errno); 717 ULONGEST offset, int *target_errno); 723 ULONGEST offset, int *target_errno); 727 int (*to_fileio_close) (int fd, int *target_errno); 731 int (*to_fileio_unlink) (const char *filename, int *target_errno); 736 char *(*to_fileio_readlink) (const char *filename, int *target_errno); 1674 int *target_errno); 1680 ULONGEST offset, int *target_errno); 1686 ULONGEST offset, int *target_errno); 1690 extern int target_fileio_close (int fd, int *target_errno); [all …]
|
| HD | target.c | 3294 int *target_errno) in target_fileio_open() argument 3302 int fd = t->to_fileio_open (filename, flags, mode, target_errno); in target_fileio_open() 3308 fd, fd != -1 ? 0 : *target_errno); in target_fileio_open() 3313 *target_errno = FILEIO_ENOSYS; in target_fileio_open() 3322 ULONGEST offset, int *target_errno) in target_fileio_pwrite() argument 3331 target_errno); in target_fileio_pwrite() 3338 ret, ret != -1 ? 0 : *target_errno); in target_fileio_pwrite() 3343 *target_errno = FILEIO_ENOSYS; in target_fileio_pwrite() 3352 ULONGEST offset, int *target_errno) in target_fileio_pread() argument 3361 target_errno); in target_fileio_pread() [all …]
|