Lines Matching +full:string +full:- +full:array +full:- +full:property

86 A name is a human-readable string from 1 to 31 characters long.
87 A value is an array of zero or more bytes that encode certain
90 Properties can encode byte arrays, text strings, unsigned 32-bit
93 Property with a zero-length value usually represents boolean
95 If the property is present, it signifies true, otherwise false.
97 A byte array is encoded as a sequence of bytes and represents
100 A text string is a sequence of n printable characters.
101 It is encoded as a byte array of length n + 1 bytes with
104 Unsigned 32-bit values, also sometimes called cells, are
105 encoded as a sequence of 4 bytes in big-endian order.
108 returns either the length of the value associated with the property
112 or 0 if the property exists but has no associated value.
115 does not exist, -1 is returned.
120 bytes from the value associated with the property
126 Returns the actual size of the value or -1 if the
127 property does not exist.
134 then converts cell values from big-endian to host byte order.
135 Returns the actual size of the value in bytes, or -1
136 if the property does not exist.
143 has a property specified by
145 and zero if the property does not exist.
148 recursively looks for the property specified by
153 If the property is found, the function copies a maximum of
155 bytes of the value associated with the property
159 or -1 if the property does not exist.
162 recursively looks for the property specified by
167 If the property is found, the function copies a maximum of
169 bytes of the value associated with the property
172 then converts cell values from big-endian to host byte order.
174 or -1 if the property does not exist.
178 value associated with the property
186 If the property has a zero-sized value
189 Returns -1 if the property does not exist or
198 value associated with the property
203 then converts cell values from big-endian to host byte
208 If the property has zero-length value,
211 Returns -1 if the property does not exist or
221 value associated with the property
226 The value is expected to be an array of zero or more elements
232 If the property has a zero-sized value
235 Returns -1 if the property does not exist or
246 value associated with the property
251 then converts cell values from big-endian to host byte
253 The value is expected to be an array of zero or more elements
259 If the property has a zero-sized value
262 Returns -1 if the property does not exist or
283 bytes of the name of the property following the
285 property into
289 is NULL, the function copies the name of the first property of the
293 returns -1 if
301 sets the value of the property
310 If the property does not exist, the function tries to create
313 returns the actual size of the new value, or -1 if the
314 property value cannot be changed or the new property
317 .Bd -literal
325 * Get a byte array property
338 * Get string value of model property of HDMI framer node
348 .An -nosplit