Searched refs:basic (Results 1 - 7 of 7) sorted by relevance
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-dump.c | 159 } basic; local 206 r = sd_bus_message_read_basic(m, type, &basic); 208 return log_error_errno(r, "Failed to get basic: %m"); 215 fprintf(f, "%sBYTE %s%u%s;\n", prefix, ansi_highlight(), basic.u8, ansi_normal()); 219 fprintf(f, "%sBOOLEAN %s%s%s;\n", prefix, ansi_highlight(), true_false(basic.i), ansi_normal()); 223 fprintf(f, "%sINT16 %s%i%s;\n", prefix, ansi_highlight(), basic.s16, ansi_normal()); 227 fprintf(f, "%sUINT16 %s%u%s;\n", prefix, ansi_highlight(), basic.u16, ansi_normal()); 231 fprintf(f, "%sINT32 %s%i%s;\n", prefix, ansi_highlight(), basic.s32, ansi_normal()); 235 fprintf(f, "%sUINT32 %s%u%s;\n", prefix, ansi_highlight(), basic.u32, ansi_normal()); 239 fprintf(f, "%sINT64 %s%"PRIi64"%s;\n", prefix, ansi_highlight(), basic [all...] |
H A D | busctl.c | 501 } basic; local 555 r = sd_bus_message_read_basic(m, type, &basic); 564 fprintf(f, "%u", basic.u8); 568 fputs(true_false(basic.i), f); 572 fprintf(f, "%i", basic.s16); 576 fprintf(f, "%u", basic.u16); 580 fprintf(f, "%i", basic.s32); 584 fprintf(f, "%u", basic.u32); 588 fprintf(f, "%" PRIi64, basic.s64); 592 fprintf(f, "%" PRIu64, basic [all...] |
H A D | bus-message.c | 3596 assert_not_reached("Unknown basic type..."); 5753 } basic; local 5788 r = sd_bus_message_read_basic(source, type, &basic); 5797 r = sd_bus_message_append_basic(m, type, basic.string); 5799 r = sd_bus_message_append_basic(m, type, &basic);
|
/systemd/src/shared/ |
H A D | acl-util.c | 104 _cleanup_(acl_freep) acl_t basic = NULL; 132 basic = acl_from_mode(st.st_mode); 133 if (!basic) 136 for (r = acl_get_entry(basic, ACL_FIRST_ENTRY, &i); 138 r = acl_get_entry(basic, ACL_NEXT_ENTRY, &i)) {
|
/systemd/test/bus-policy/ |
H A D | many-rules.conf | 7 <includedir>basic.d</includedir>
|
/systemd/test/TEST-06-SELINUX/ |
H A D | test.sh | 2 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- 91 mkdir -p $initdir/etc/systemd/system/basic.target.wants 92 ln -fs load-systemd-test-module.service $initdir/etc/systemd/system/basic.target.wants/load-systemd-test-module.service
|
/systemd/test/ |
H A D | test-functions | 2 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- 99 # create the basic filesystem layout 159 mkdir -p $initdir/etc/systemd/system/basic.target.wants 160 ln -fs autorelabel.service $initdir/etc/systemd/system/basic.target.wants/autorelabel.service
|
Completed in 2589 milliseconds