Home
last modified time | relevance | path

Searched refs:BUS_MESSAGE_NEED_BSWAP (Results 1 – 2 of 2) sorted by relevance

/systemd-251/src/libsystemd/sd-bus/
Dbus-message.h134 static inline bool BUS_MESSAGE_NEED_BSWAP(sd_bus_message *m) { in BUS_MESSAGE_NEED_BSWAP() function
139 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_16(u) : u; in BUS_MESSAGE_BSWAP16()
143 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_32(u) : u; in BUS_MESSAGE_BSWAP32()
147 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_64(u) : u; in BUS_MESSAGE_BSWAP64()
Dbus-message.c4792 assert_return(!BUS_MESSAGE_NEED_BSWAP(m), -EOPNOTSUPP); in sd_bus_message_read_array()