Lines Matching refs:struct
9 * A thread stack, which is an array of :c:struct:`z_thread_stack_element`
11 * A device driver instance (const struct device) that belongs to one of a defined
112 Drivers are a special case. All drivers are instances of :c:struct:`device`, but
115 be prevented. When a device struct is found, its API pointer is examined to
119 :c:struct:`z_object`, which has all the metadata for that object. This
216 are embedded within some larger struct and initialized statically.
220 struct foo {
221 struct k_sem sem;
225 struct foo my_foo = {
245 * In ``scripts/build/gen_kobject_list.py``, add the name of the struct to the
248 Instances of the new struct should now be tracked.
253 All driver instances are :c:struct:`device`. They are differentiated by
254 what API struct they are set to.
256 * In ``scripts/build/gen_kobject_list.py``, add the name of the API struct for the