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

/freebsd-10.1-release/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-10.1-release/contrib/file/python/
H A Dmagic.py96 _list = _libraries['magic'].magic_list variable
97 _list.restype = c_int
98 _list.argtypes = [magic_t, c_char_p]
204 return _list(self._magic_t, dbs)
/freebsd-10.1-release/tools/tools/nanobsd/
H A Dfill_pkg.sh77 PL=$NANO_PACKAGE_DIR/_list
/freebsd-10.1-release/usr.bin/tee/
H A Dtee.c54 typedef struct _list { struct
55 struct _list *next;
/freebsd-10.1-release/etc/
H A Dnetwork.subr1265 local _list ifn ifopt _iflist _n tmpargs
1266 _list=
1291 _list="$_list ${ifn}a ${ifn}b"
1302 _list="$_list $ifn"
1330 _list="$_list $ifn"
1335 if [ -n "${_list# }" ]; then
1336 echo "Created clone interfaces: ${_list# }
[all...]
/freebsd-10.1-release/contrib/bsnmp/lib/
H A Dsnmpclient.h185 typedef void (*snmp_table_cb_f)(void *_list, void *_arg, int _res);
/freebsd-10.1-release/crypto/openssh/
H A Daddrmatch.c366 * Match "addr" against list pattern list "_list", which may contain a
369 * If addr is NULL, then no matching is performed, but _list is parsed
378 addr_match_list(const char *addr, const char *_list) argument
389 if ((o = list = strdup(_list)) == NULL)
429 * Match "addr" against list CIDR list "_list". Lexical wildcards and
431 * of "_list".
438 addr_match_cidr_list(const char *addr, const char *_list) argument
449 if ((o = list = strdup(_list)) == NULL)
/freebsd-10.1-release/lib/libutil/
H A Dlibutil.h120 void properties_free(properties _list);
121 char *property_find(properties _list, const char *_name);
/freebsd-10.1-release/usr.bin/paste/
H A Dpaste.c121 typedef struct _list { struct
122 struct _list *next;
/freebsd-10.1-release/sbin/hastd/
H A Dsecondary.c114 if (TAILQ_EMPTY(&hio_##name##_list)) \
116 TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_next); \
122 while (((hio) = TAILQ_FIRST(&hio_##name##_list)) == NULL) { \
128 TAILQ_REMOVE(&hio_##name##_list, (hio), hio_next); \
H A Dprimary.c184 if (TAILQ_EMPTY(&hio_##name##_list[(ncomp)])) \
186 TAILQ_INSERT_TAIL(&hio_##name##_list[(ncomp)], (hio), \
193 if (TAILQ_EMPTY(&hio_##name##_list)) \
195 TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_##name##_next);\
204 while (((hio) = TAILQ_FIRST(&hio_##name##_list[(ncomp)])) == NULL && !_last) { \
213 TAILQ_REMOVE(&hio_##name##_list[(ncomp)], (hio), \
220 while (((hio) = TAILQ_FIRST(&hio_##name##_list)) == NULL) { \
226 TAILQ_REMOVE(&hio_##name##_list, (hio), hio_##name##_next); \

Completed in 173 milliseconds