Lines Matching refs:struct
56 __syscall void k_sem_init(struct k_sem *sem, unsigned int initial_count,
179 … static inline void k_sem_init(struct k_sem * sem, unsigned int initial_count, unsigned int limit)
360 static int z_vrfy_k_sem_take(struct k_sem *sem, int32_t timeout)
449 struct bar {
453 struct foo {
455 struct bar *bar_left;
456 struct bar *bar_right;
459 int z_vrfy_must_alloc(struct foo *foo)
462 struct foo foo_copy;
463 struct bar bar_right_copy;
464 struct bar bar_left_copy;
468 sizeof(struct bar)));
471 sizeof(struct bar)));
488 struct bar {
492 struct foo {
494 struct bar *bar_list; /* array of struct bar of size count */
497 int z_vrfy_must_alloc(struct foo *foo)
500 struct foo foo_copy;
501 struct bar *bar_list_copy;