Searched defs:out (Results 1 - 18 of 18) sorted by relevance

/systemd/src/test/
H A Dtest-device-nodes.c30 char *out = malloc(out_len); local
32 assert_se(out);
33 assert_se(encode_devnode_name(in, out, out_len) >= 0);
34 puts(out);
36 return out;
H A Dtest-siphash24.c27 uint64_t out = 0; local
30 out = siphash24(in, len, key);
31 assert_se(out == 0xa129ca6149be45e5);
44 out = siphash24_finalize(&state);
45 assert_se(out == 0xa129ca6149be45e5);
59 out = siphash24_finalize(&state);
60 assert_se(out == 0xa129ca6149be45e5);
/systemd/src/bus-proxyd/
H A Dbus-proxyd.c69 static int client_context_new(ClientContext **out) { argument
78 *out = c;
H A Dproxy.c227 int proxy_new(Proxy **out, int in_fd, int out_fd, const char *destination) { argument
272 *out = p;
H A Dbus-xml-policy.c1184 int shared_policy_new(SharedPolicy **out) { argument
1204 *out = sp;
/systemd/src/boot/efi/
H A Dsplash.c172 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *out; local
176 out = &buf[(dib->y - y - 1) * dib->x];
177 for (x = 0; x < dib->x; x++, in++, out++) {
183 out->Red = map[((*in) >> (7 - i)) & 1].red;
184 out->Green = map[((*in) >> (7 - i)) & 1].green;
185 out->Blue = map[((*in) >> (7 - i)) & 1].blue;
186 out++;
189 out--;
198 out->Red = map[i].red;
199 out
[all...]
/systemd/src/journal/
H A Dcompress.c192 char* out; local
209 out = realloc(*dst, size);
210 if (!out)
212 *dst = out;
215 out = *dst;
217 r = LZ4_decompress_safe(src + 8, out, src_size - 8, size);
373 uint8_t buf[BUFSIZ], out[BUFSIZ]; local
410 s.next_out = out;
411 s.avail_out = sizeof(out);
423 n = sizeof(out)
544 uint8_t buf[BUFSIZ], out[BUFSIZ]; local
613 decompress_stream_lz4(int in, int out, uint64_t max_bytes) argument
[all...]
/systemd/src/journal-remote/
H A Dmicrohttpd-util.c187 gnutls_datum_t out; local
195 r = gnutls_certificate_verification_status_print(status, type, &out, 0);
199 log_debug("Certificate status: %s", out.data);
200 gnutls_free(out.data);
/systemd/src/login/
H A Dlogind-session-device.c344 int session_device_new(Session *s, dev_t dev, SessionDevice **out) { argument
349 assert(out);
392 *out = sd;
H A Dlogind-user.c52 int user_new(User **out, Manager *m, uid_t uid, gid_t gid, const char *name) { argument
57 assert(out);
100 *out = u;
485 * XDG_RUNTIME_DIR out of it while starting up systemd --user.
610 log_debug("User %s logged out.", u->name);
874 log_syntax(unit, LOG_ERR, filename, line, 0, "Percentage value out of range, ignoring: %s", rvalue);
/systemd/src/shared/
H A Dacl-util.c346 static int find_acl_entry(acl_t acl, acl_entry_t entry, acl_entry_t *out) { argument
358 *out = i;
H A Ddns-domain.c857 uint8_t *label_length, *out; local
863 out = buffer;
870 label_length = out;
871 out++;
877 r = dns_label_unescape(&domain, (char *) out, len);
885 ascii_strlower_n((char*) out, (size_t) r);
889 out += r;
898 if (out - buffer > DNS_HOSTNAME_MAX + 2)
901 return out - buffer;
/systemd/src/basic/
H A Dhexdecoct.c515 ssize_t base64mem(const void *p, size_t l, char **out) { argument
550 *out = r;
/systemd/src/libsystemd-network/
H A Dtest-dhcp6-client.c104 uint8_t *optval, *buf, *out; local
119 out = &result[3];
129 assert_se(dhcp6_option_append(&out, &outlen, optcode, optlen,
131 assert_se(out == &result[pos]);
132 assert_se(*out == 0x00);
142 assert_se(dhcp6_option_append(&out, &outlen, optcode, optlen,
144 assert_se(out == &result[pos]);
145 assert_se(*out == 'B');
/systemd/src/shared/linux/
H A Dauto_dev-ioctl.h84 } out; member in union:args_ismountpoint::__anon266
/systemd/src/libsystemd/sd-bus/
H A Dbus-objects.c1489 static int bus_find_parent_object_manager(sd_bus *bus, struct node **out, const char *path) { argument
1510 if (out)
1511 *out = n;
2316 * interfaces_added(), this call can figure out the list of supported
H A Dsd-bus.c1328 /* Cut out the host part */
2243 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_NO_REPLY, "Method call timed out"),
3462 _public_ int sd_bus_path_encode_many(char **out, const char *path_template, ...) { argument
3470 assert_return(out, -EINVAL);
3521 *out = path;
/systemd/src/analyze/
H A Danalyze.c98 * completely consist of empty space. Thus we cancel out this offset.
339 static int acquire_time_data(sd_bus *bus, struct unit_times **out) { argument
431 *out = unit_times;

Completed in 94 milliseconds