Searched refs:u1 (Results 1 – 25 of 27) sorted by relevance
12
/systemd-251/src/test/ |
D | test-firewall-util.c | 13 union in_addr_union u1, u2, u3; in test_v6() local 24 assert_se(in_addr_from_string(AF_INET6, "dead::beef", &u1) >= 0); in test_v6() 30 assert_se(fw_add_masquerade(&ctx, true, AF_INET6, &u1, 128) >= 0); in test_v6() 31 assert_se(fw_add_masquerade(&ctx, false, AF_INET6, &u1, 128) >= 0); in test_v6() 32 assert_se(fw_add_masquerade(&ctx, true, AF_INET6, &u1, 64) >= 0); in test_v6() 33 assert_se(fw_add_masquerade(&ctx, false, AF_INET6, &u1, 64) >= 0); in test_v6() 37 r = fw_add_local_dnat(&ctx, true, AF_INET6, IPPROTO_TCP, 4711, &u1, 815, NULL); in test_v6() 44 assert_se(fw_add_local_dnat(&ctx, true, AF_INET6, IPPROTO_TCP, 4711, &u2, 815, &u1) >= 0); in test_v6()
|
D | test-in-addr-util.c | 102 union in_addr_union u1, u2; in test_in_addr_prefix_to_string_unoptimized() local 107 assert_se(in_addr_prefix_from_string(p, family, &u1, &len1) >= 0); in test_in_addr_prefix_to_string_unoptimized() 108 assert_se(in_addr_prefix_to_string(family, &u1, len1, &str1) >= 0); in test_in_addr_prefix_to_string_unoptimized() 114 assert_se(in_addr_equal(family, &u1, &u2) > 0); in test_in_addr_prefix_to_string_unoptimized()
|
/systemd-251/src/shared/ |
D | efi-api.c | 196 uint32_t u1; member 203 uint32_t u1; in efi_guid_to_id128() local 207 memcpy(&u1, &uuid->u1, sizeof(uint32_t)); in efi_guid_to_id128() 208 id128->bytes[0] = (u1 >> 24) & 0xff; in efi_guid_to_id128() 209 id128->bytes[1] = (u1 >> 16) & 0xff; in efi_guid_to_id128() 210 id128->bytes[2] = (u1 >> 8) & 0xff; in efi_guid_to_id128() 211 id128->bytes[3] = u1 & 0xff; in efi_guid_to_id128() 334 .u1 = id.bytes[0] << 24 | id.bytes[1] << 16 | id.bytes[2] << 8 | id.bytes[3], in id128_to_efi_guid()
|
/systemd-251/test/test-sysusers/ |
D | test-10.input | 5 u u1 300 - - 6 m u2 u1
|
D | test-6.input | 3 # ID 111 from g1 will cause u1 to get a new and different ID (999 on most 8 u u1 111 - -
|
D | test-1.expected-passwd | 1 u1:x:222:222::/:NOLOGIN
|
D | test-1.expected-group | 2 u1:x:222:
|
D | inline.expected-group | 2 u1:x:222:
|
D | inline.expected-passwd | 1 u1:x:222:222::/:/bin/zsh
|
D | test-6.expected-group | 2 u1:x:SYSTEM_UGID_MAX:
|
D | test-6.expected-passwd | 1 u1:x:SYSTEM_UGID_MAX:SYSTEM_UGID_MAX::/:NOLOGIN
|
D | test-10.expected-group | 1 u1:x:300:u2
|
D | unhappy-2.expected-err | 1 Failed to create u1: please create GID 100
|
D | test-10.expected-passwd | 1 u1:x:300:300::/:NOLOGIN
|
D | test-2.expected-group | 1 u1:x:SYSTEM_UGID_MAX:
|
D | test-11.expected-group | 3 u1:x:222:
|
D | test-11.input | 3 u u1 222 - -
|
D | unhappy-1.input | 5 u u1 9999999999 - -
|
D | test-1.input | 5 u u1 222 - -
|
D | test-2.expected-passwd | 1 u1:x:SYSTEM_UGID_MAX:SYSTEM_UGID_MAX:some gecos:/random/dir:NOLOGIN
|
D | unhappy-2.input | 5 u u1 100:100 -
|
D | unhappy-3.input | 5 u u1 100:g1 -
|
D | test-11.expected-passwd | 5 u1:x:222:222::/:NOLOGIN
|
D | test-2.input | 6 u u1 - "some gecos" /random/dir -
|
/systemd-251/src/core/ |
D | manager.c | 2462 Unit *u1, *u2, **array; in manager_dispatch_notify_fd() local 2551 u1 = manager_get_unit_by_pid_cgroup(m, ucred->pid); in manager_dispatch_notify_fd() 2566 if (u1) { in manager_dispatch_notify_fd() 2567 manager_invoke_notify_message(m, u1, ucred, tags, fds); in manager_dispatch_notify_fd() 2635 Unit *u1, *u2, **array; in manager_dispatch_sigchld() local 2651 u1 = manager_get_unit_by_pid_cgroup(m, si.si_pid); in manager_dispatch_sigchld() 2670 if (u1) { in manager_dispatch_sigchld() 2673 (void) unit_check_oom(u1); in manager_dispatch_sigchld() 2676 (void) unit_check_oomd_kill(u1); in manager_dispatch_sigchld() 2678 manager_invoke_sigchld_event(m, u1, &si); in manager_dispatch_sigchld()
|
12