Searched refs:_list (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/bmake/mk/
H A Dmkopt.sh88 _list=no
93 --no|no) _list="$_list no"; shift;;
94 --yes|yes) _list="$_list yes"; shift;;
96 [A-Z]*) _list="$_list $1"; shift;;
100 _mk_opts $_list
/freebsd-11-stable/sys/dev/bxe/
H A Decore_sp.h290 #define ECORE_LIST_INIT(_list) \
292 (_list)->head = NULL; \
293 (_list)->tail = NULL; \
294 (_list)->cnt = 0; \
298 #define ECORE_LIST_IS_LAST(_elem, _list) \
299 (_elem == (_list)->tail)
302 #define ECORE_LIST_IS_EMPTY(_list) \
303 ((_list)->cnt == 0)
306 #define ECORE_LIST_FIRST_ENTRY(_list, cast, _link) \
307 (cast *)((_list)
[all...]
/freebsd-11-stable/tools/tools/nanobsd/
H A Dfill_pkg.sh77 PL=$NANO_PACKAGE_DIR/_list
/freebsd-11-stable/contrib/file/python/
H A Dmagic.py101 _list = _libraries['magic'].magic_list variable
102 _list.restype = c_int
103 _list.argtypes = [magic_t, c_char_p]
223 return _list(self._magic_t, Magic.__tobytes(dbs))
/freebsd-11-stable/usr.bin/tee/
H A Dtee.c58 typedef struct _list { struct
59 struct _list *next;
/freebsd-11-stable/contrib/bsnmp/lib/
H A Dsnmpclient.h185 typedef void (*snmp_table_cb_f)(void *_list, void *_arg, int _res);
/freebsd-11-stable/crypto/openssh/
H A Daddrmatch.c365 * Match "addr" against list pattern list "_list", which may contain a
368 * If addr is NULL, then no matching is performed, but _list is parsed
377 addr_match_list(const char *addr, const char *_list) argument
388 if ((o = list = strdup(_list)) == NULL)
428 * Match "addr" against list CIDR list "_list". Lexical wildcards and
430 * of "_list".
437 addr_match_cidr_list(const char *addr, const char *_list) argument
448 if ((o = list = strdup(_list)) == NULL)
/freebsd-11-stable/usr.bin/paste/
H A Dpaste.c121 typedef struct _list { struct
122 struct _list *next;
/freebsd-11-stable/lib/libutil/
H A Dlibutil.h122 void properties_free(properties _list);
123 char *property_find(properties _list, const char *_name);
/freebsd-11-stable/sbin/hastd/
H A Dsecondary.c116 if (TAILQ_EMPTY(&hio_##name##_list)) \
118 TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_next); \
124 while (((hio) = TAILQ_FIRST(&hio_##name##_list)) == NULL) { \
130 TAILQ_REMOVE(&hio_##name##_list, (hio), hio_next); \
H A Dprimary.c186 if (TAILQ_EMPTY(&hio_##name##_list[(ncomp)])) \
188 TAILQ_INSERT_TAIL(&hio_##name##_list[(ncomp)], (hio), \
195 if (TAILQ_EMPTY(&hio_##name##_list)) \
197 TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_##name##_next);\
206 while (((hio) = TAILQ_FIRST(&hio_##name##_list[(ncomp)])) == NULL && !_last) { \
215 TAILQ_REMOVE(&hio_##name##_list[(ncomp)], (hio), \
222 while (((hio) = TAILQ_FIRST(&hio_##name##_list)) == NULL) { \
228 TAILQ_REMOVE(&hio_##name##_list, (hio), hio_##name##_next); \

Completed in 166 milliseconds