Lines Matching refs:retcode
9531 remote_hostio_parse_result (char *buffer, int *retcode, in remote_hostio_parse_result() argument
9543 *retcode = strtol (&buffer[1], &p, 16); in remote_hostio_parse_result()
9990 int retcode, fd, remote_errno, bytes, io_size; in remote_file_put() local
10049 retcode = remote_hostio_pwrite (fd, buffer, bytes, in remote_file_put()
10052 if (retcode < 0) in remote_file_put()
10054 else if (retcode == 0) in remote_file_put()
10056 else if (retcode < bytes) in remote_file_put()
10060 bytes_in_buffer = bytes - retcode; in remote_file_put()
10061 memmove (buffer, buffer + retcode, bytes_in_buffer); in remote_file_put()
10064 offset += retcode; in remote_file_put()
10134 int retcode, remote_errno; in remote_file_delete() local
10139 retcode = remote_hostio_unlink (remote_file, &remote_errno); in remote_file_delete()
10140 if (retcode == -1) in remote_file_delete()