Searched refs:full (Results 1 - 6 of 6) sorted by relevance

/systemd/src/socket-proxy/
H A Dsocket-proxyd.c140 size_t *full, size_t *sz,
151 assert(full);
161 if (*full < *sz && *from >= 0 && *to >= 0) {
162 z = splice(*from, NULL, buffer[1], NULL, *sz - *full, SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
164 *full += z;
173 if (*full > 0 && *to >= 0) {
174 z = splice(buffer[0], NULL, *to, NULL, *full, SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
176 *full -= z;
137 connection_shovel( Connection *c, int *from, int buffer[2], int *to, size_t *full, size_t *sz, sd_event_source **from_source, sd_event_source **to_source) argument
/systemd/src/nspawn/
H A Dnspawn-mount.c226 const char *full, *top, *x; local
240 full = prefix_roota(top, "/full");
242 (void) mkdir(full, 0755);
244 if (mount("sysfs", full, "sysfs", MS_RDONLY|MS_NOSUID|MS_NOEXEC|MS_NODEV, NULL) < 0)
245 return log_error_errno(errno, "Failed to mount sysfs to %s: %m", full);
250 from = prefix_root(full, x);
267 if (umount(full) < 0)
268 return log_error_errno(errno, "Failed to unmount %s: %m", full);
270 if (rmdir(full) <
[all...]
/systemd/src/basic/
H A Dfs-util.c250 const char *full; local
253 full = prefix_roota(root, path);
254 r = readlink_malloc(full, &target);
/systemd/src/shared/
H A Dinstall.c1651 _cleanup_free_ char *full = NULL; local
1662 full = prefix_root(root_dir, *i);
1663 if (!full)
1666 if (lstat(full, &st) < 0)
1901 /* But the enable command with the full name */
2469 [UNIT_FILE_PRESET_FULL] = "full",
/systemd/src/journal/
H A Dsd-journal.c1199 const char *full, *tilded, *atted; local
1201 full = strjoina(prefix, ".journal");
1202 tilded = strjoina(full, "~");
1205 return streq(filename, full) ||
/systemd/test/
H A Dtest-functions192 exec valgrind --leak-check=full --log-file=/valgrind.out $ROOTLIBDIR/systemd "\$@"
780 # find a binary. If we were not passed the full path directly,
980 # $1 = full path to kernel module to install
1035 # It will be passed the full path to the found kernel module
1057 # This function will be passed the full path to the module to test.
1061 # This function returns the full filenames of modules that match $1

Completed in 31 milliseconds