OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:link_t
(Results
1 - 2
of
2
) sorted by null
/device/google/contexthub/firmware/inc/
list.h
22
struct
link_t
struct
24
struct
link_t
*prev, *next;
25
} typedef
link_t
;
typedef
34
link_t
list = { .prev = &list, .next = &list }
36
static inline void list_init(struct
link_t
*list)
41
static inline void list_add_tail(struct
link_t
*list, struct
link_t
*item)
52
static inline void list_delete(struct
link_t
*item)
59
static inline bool list_is_empty(struct
link_t
*list)
isr.h
29
link_t
isrs;
36
link_t
node;
59
struct
link_t
*cur, *tmp;
78
struct
link_t
*cur, *tmp;
Completed in 184 milliseconds