Symbol: _list
crypto/openssh/addrmatch.c
109
addr_match_cidr_list(const char *addr, const char *_list)
crypto/openssh/addrmatch.c
120
if ((o = list = strdup(_list)) == NULL)
crypto/openssh/addrmatch.c
49
addr_match_list(const char *addr, const char *_list)
crypto/openssh/addrmatch.c
60
if ((o = list = strdup(_list)) == NULL)
lib/libutil/libutil.h
135
void properties_free(properties _list);
lib/libutil/libutil.h
136
char *property_find(properties _list, const char *_name);
sbin/hastd/primary.c
183
if (TAILQ_EMPTY(&hio_##name##_list[(ncomp)])) \
sbin/hastd/primary.c
185
TAILQ_INSERT_TAIL(&hio_##name##_list[(ncomp)], (hio), \
sbin/hastd/primary.c
192
if (TAILQ_EMPTY(&hio_##name##_list)) \
sbin/hastd/primary.c
194
TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_##name##_next);\
sbin/hastd/primary.c
203
while (((hio) = TAILQ_FIRST(&hio_##name##_list[(ncomp)])) == NULL && !_last) { \
sbin/hastd/primary.c
212
TAILQ_REMOVE(&hio_##name##_list[(ncomp)], (hio), \
sbin/hastd/primary.c
219
while (((hio) = TAILQ_FIRST(&hio_##name##_list)) == NULL) { \
sbin/hastd/primary.c
225
TAILQ_REMOVE(&hio_##name##_list, (hio), hio_##name##_next); \
sbin/hastd/secondary.c
113
if (TAILQ_EMPTY(&hio_##name##_list)) \
sbin/hastd/secondary.c
115
TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_next); \
sbin/hastd/secondary.c
121
while (((hio) = TAILQ_FIRST(&hio_##name##_list)) == NULL) { \
sbin/hastd/secondary.c
127
TAILQ_REMOVE(&hio_##name##_list, (hio), hio_next); \
sys/compat/linuxkpi/common/include/linux/netdevice.h
350
#define netdev_hw_addr_list_for_each(_addr, _list) \
sys/compat/linuxkpi/common/include/linux/netdevice.h
351
list_for_each_entry((_addr), &(_list)->addr_list, addr_list)
sys/dev/bxe/ecore_sp.h
287
#define ECORE_LIST_INIT(_list) \
sys/dev/bxe/ecore_sp.h
289
(_list)->head = NULL; \
sys/dev/bxe/ecore_sp.h
290
(_list)->tail = NULL; \
sys/dev/bxe/ecore_sp.h
291
(_list)->cnt = 0; \
sys/dev/bxe/ecore_sp.h
295
#define ECORE_LIST_IS_LAST(_elem, _list) \
sys/dev/bxe/ecore_sp.h
296
(_elem == (_list)->tail)
sys/dev/bxe/ecore_sp.h
299
#define ECORE_LIST_IS_EMPTY(_list) \
sys/dev/bxe/ecore_sp.h
300
((_list)->cnt == 0)
sys/dev/bxe/ecore_sp.h
303
#define ECORE_LIST_FIRST_ENTRY(_list, cast, _link) \
sys/dev/bxe/ecore_sp.h
304
(cast *)((_list)->head)
sys/dev/bxe/ecore_sp.h
311
#define ECORE_LIST_PUSH_HEAD(_elem, _list) \
sys/dev/bxe/ecore_sp.h
314
(_elem)->next = (_list)->head; \
sys/dev/bxe/ecore_sp.h
315
if ((_list)->tail == (ecore_list_entry_t *)0) { \
sys/dev/bxe/ecore_sp.h
316
(_list)->tail = (_elem); \
sys/dev/bxe/ecore_sp.h
318
(_list)->head->prev = (_elem); \
sys/dev/bxe/ecore_sp.h
320
(_list)->head = (_elem); \
sys/dev/bxe/ecore_sp.h
321
(_list)->cnt++; \
sys/dev/bxe/ecore_sp.h
325
#define ECORE_LIST_PUSH_TAIL(_elem, _list) \
sys/dev/bxe/ecore_sp.h
328
(_elem)->prev = (_list)->tail; \
sys/dev/bxe/ecore_sp.h
329
if ((_list)->tail) { \
sys/dev/bxe/ecore_sp.h
330
(_list)->tail->next = (_elem); \
sys/dev/bxe/ecore_sp.h
332
(_list)->head = (_elem); \
sys/dev/bxe/ecore_sp.h
334
(_list)->tail = (_elem); \
sys/dev/bxe/ecore_sp.h
335
(_list)->cnt++; \
sys/dev/bxe/ecore_sp.h
355
#define ECORE_LIST_REMOVE_ENTRY(_elem, _list) \
sys/dev/bxe/ecore_sp.h
357
if ((_list)->head == (_elem)) { \
sys/dev/bxe/ecore_sp.h
358
if ((_list)->head) { \
sys/dev/bxe/ecore_sp.h
359
(_list)->head = (_list)->head->next; \
sys/dev/bxe/ecore_sp.h
360
if ((_list)->head) { \
sys/dev/bxe/ecore_sp.h
361
(_list)->head->prev = (ecore_list_entry_t *)0; \
sys/dev/bxe/ecore_sp.h
363
(_list)->tail = (ecore_list_entry_t *)0; \
sys/dev/bxe/ecore_sp.h
365
(_list)->cnt--; \
sys/dev/bxe/ecore_sp.h
367
} else if ((_list)->tail == (_elem)) { \
sys/dev/bxe/ecore_sp.h
368
if ((_list)->tail) { \
sys/dev/bxe/ecore_sp.h
369
(_list)->tail = (_list)->tail->prev; \
sys/dev/bxe/ecore_sp.h
370
if ((_list)->tail) { \
sys/dev/bxe/ecore_sp.h
371
(_list)->tail->next = (ecore_list_entry_t *)0; \
sys/dev/bxe/ecore_sp.h
373
(_list)->head = (ecore_list_entry_t *)0; \
sys/dev/bxe/ecore_sp.h
375
(_list)->cnt--; \
sys/dev/bxe/ecore_sp.h
380
(_list)->cnt--; \
sys/dev/bxe/ecore_sp.h
385
#define ECORE_LIST_FOR_EACH_ENTRY(pos, _list, _link, cast) \
sys/dev/bxe/ecore_sp.h
386
for (pos = ECORE_LIST_FIRST_ENTRY(_list, cast, _link); \
sys/dev/bxe/ecore_sp.h
391
#define ECORE_LIST_FOR_EACH_ENTRY_SAFE(pos, n, _list, _link, cast) \
sys/dev/bxe/ecore_sp.h
392
for (pos = ECORE_LIST_FIRST_ENTRY(_list, cast, _lint), \
usr.bin/paste/paste.c
126
STAILQ_ENTRY(_list) entries;
usr.bin/paste/paste.c
132
static STAILQ_HEAD(head, _list) lh;