Home
last modified time | relevance | path

Searched refs:alqp (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/sys/
H A Dalq.h80 int alq_open_flags(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
82 int alq_open(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
/f-stack/freebsd/kern/
H A Dkern_alq.c431 alq_open_flags(struct alq **alqp, const char *file, struct ucred *cred, int cmode, in alq_open_flags() argument
442 *alqp = NULL; in alq_open_flags()
477 *alqp = alq; in alq_open_flags()
483 alq_open(struct alq **alqp, const char *file, struct ucred *cred, int cmode, in alq_open() argument
491 if ((ret = alq_open_flags(alqp, file, cred, cmode, in alq_open()
493 (*alqp)->aq_flags |= AQ_LEGACY; in alq_open()
494 (*alqp)->aq_entmax = count; in alq_open()
495 (*alqp)->aq_entlen = size; in alq_open()
498 ret = alq_open_flags(alqp, file, cred, cmode, size, 0); in alq_open()