Searched defs:input_fd (Results 1 - 6 of 6) sorted by relevance
/systemd/src/import/ |
H A D | export-raw.c | 51 int input_fd; member in struct:RawExport 85 safe_close(e->input_fd); 109 e->output_fd = e->input_fd = -1; 163 r = btrfs_reflink(e->input_fd, e->output_fd); 174 l = sendfile(e->output_fd, e->input_fd, NULL, COPY_BUFFER_SIZE); 201 l = read(e->input_fd, input, sizeof(input)); 240 (void) copy_times(e->input_fd, e->output_fd); 241 (void) copy_xattr(e->input_fd, e->output_fd); 328 e->input_fd = tfd; 331 e->input_fd [all...] |
H A D | import-raw.c | 62 int input_fd; member in struct:RawImport 124 i->input_fd = i->output_fd = -1; 241 (void) copy_times(i->input_fd, i->output_fd); 242 (void) copy_xattr(i->input_fd, i->output_fd); 298 assert(i->input_fd >= 0); 307 p = lseek(i->input_fd, 0, SEEK_CUR); 315 r = btrfs_reflink(i->input_fd, i->output_fd); 350 l = read(i->input_fd, i->buffer + i->buffer_size, sizeof(i->buffer) - i->buffer_size); 437 if (i->input_fd >= 0) 465 i->input_fd [all...] |
H A D | import-tar.c | 62 int input_fd; member in struct:TarImport 131 i->input_fd = i->tar_fd = -1; 279 l = read(i->input_fd, i->buffer + i->buffer_size, sizeof(i->buffer) - i->buffer_size); 358 if (i->input_fd >= 0) 386 i->input_fd = fd;
|
/systemd/src/coredump/ |
H A D | coredump.c | 299 int input_fd, 348 r = copy_bytes(input_fd, fd, max_size, false); 594 int input_fd) { 604 assert(input_fd >= 0); 610 r = save_external_coredump(context, input_fd, &filename, &coredump_node_fd, &coredump_fd, &coredump_size); 833 static int send_iovec(const struct iovec iovec[], size_t n_iovec, int input_fd) { argument 844 assert(input_fd >= 0); 862 r = send_one_fd(fd, input_fd, 0); 869 static int process_journald_crash(const char *context[], int input_fd) { argument 876 assert(input_fd > 297 save_external_coredump( const char *context[_CONTEXT_MAX], int input_fd, char **ret_filename, int *ret_node_fd, int *ret_data_fd, uint64_t *ret_size) argument 589 submit_coredump( const char *context[_CONTEXT_MAX], struct iovec *iovec, size_t n_iovec_allocated, size_t n_iovec, int input_fd) argument [all...] |
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-internal.h | 190 int input_fd, output_fd; member in struct:sd_bus
|
H A D | sd-bus.c | 84 if (b->input_fd != b->output_fd) 86 b->output_fd = b->input_fd = safe_close(b->input_fd); 184 r->input_fd = r->output_fd = -1; 222 _public_ int sd_bus_set_fd(sd_bus *bus, int input_fd, int output_fd) { argument 225 assert_return(input_fd >= 0, -EBADF); 229 bus->input_fd = input_fd; 1087 assert(b->input_fd >= 0); 1090 r = fd_nonblock(b->input_fd, tru [all...] |
Completed in 36 milliseconds