/systemd/src/test/ |
H A D | test-device-nodes.c | 30 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 D | test-siphash24.c | 27 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 D | bus-proxyd.c | 69 static int client_context_new(ClientContext **out) { argument 78 *out = c;
|
H A D | proxy.c | 227 int proxy_new(Proxy **out, int in_fd, int out_fd, const char *destination) { argument 272 *out = p;
|
H A D | bus-xml-policy.c | 1184 int shared_policy_new(SharedPolicy **out) { argument 1204 *out = sp;
|
/systemd/src/boot/efi/ |
H A D | splash.c | 172 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 D | compress.c | 192 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 D | microhttpd-util.c | 187 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 D | logind-session-device.c | 344 int session_device_new(Session *s, dev_t dev, SessionDevice **out) { argument 349 assert(out); 392 *out = sd;
|
H A D | logind-user.c | 52 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 D | acl-util.c | 346 static int find_acl_entry(acl_t acl, acl_entry_t entry, acl_entry_t *out) { argument 358 *out = i;
|
H A D | dns-domain.c | 857 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 D | hexdecoct.c | 515 ssize_t base64mem(const void *p, size_t l, char **out) { argument 550 *out = r;
|
/systemd/src/libsystemd-network/ |
H A D | test-dhcp6-client.c | 104 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 D | auto_dev-ioctl.h | 84 } out; member in union:args_ismountpoint::__anon266
|
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-objects.c | 1489 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 D | sd-bus.c | 1328 /* 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 D | analyze.c | 98 * 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;
|