From 19f4f86bfed21c5326ed2acebe1163f3a83e832b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:25:50 +0200 Subject: Adding upstream version 241. Signed-off-by: Daniel Baumann --- man/sd_bus_message_read_array.xml | 108 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 man/sd_bus_message_read_array.xml (limited to 'man/sd_bus_message_read_array.xml') diff --git a/man/sd_bus_message_read_array.xml b/man/sd_bus_message_read_array.xml new file mode 100644 index 0000000..3148127 --- /dev/null +++ b/man/sd_bus_message_read_array.xml @@ -0,0 +1,108 @@ + + + + + + + + sd_bus_message_read_array + systemd + + + + sd_bus_message_read_array + 3 + + + + sd_bus_message_read_array + + Access an array of elements in a message + + + + + #include <systemd/sd-bus.h> + + + int sd_bus_message_read_array + sd_bus_message *m + char type + const void **ptr + size_t *size + + + + + + Description + + sd_bus_message_read_array() gives access to an element array in + message m. The "read pointer" in the message must be right before an + array of type type. As a special case, type may be + NUL, in which case any type is acceptable. A pointer to the array data is + returned in the parameter ptr and the size of array data (in bytes) is + returned in the parameter size. If size is 0, a + valid non-null pointer will be returned, but it may not be dereferenced. The data is aligned as + appropriate for the data type. The data is part of the message — it may not be modified and is + valid only as long as the message is referenced. After this function returns, the "read pointer" + points at the next element after the array. + + + + Return Value + + + On success, sd_bus_message_read_array() returns 0 or + a positive integer. On failure, it returns a negative errno-style error + code. + + + + + Errors + + Returned errors may indicate the following problems: + + + + -EINVAL + + Specified type is invalid or the message parameter or one of the output + parameters are NULL. + + + + -EOPNOTSUPP + + The byte order in the message is different than native byte + order. + + + + -EPERM + + The message is not sealed. + + + + -EBADMSG + + The message cannot be parsed. + + + + + + + See Also + + + systemd1, + sd-bus3, + sd_bus_message_read3 + + + + -- cgit v1.2.3