Home
last modified time | relevance | path

Searched refs:an_name (Results 1 – 5 of 5) sorted by last modified time

/dragonfly/sys/dev/netif/ath/ath/
H A Dif_ath.c3872 ksnprintf(an->an_name, sizeof(an->an_name), "%s: node %p",
3875 lockinit(&an->an_mtx, an->an_name, 0, 0);
3877 mtx_init(&an->an_mtx, an->an_name, NULL, MTX_DEF);
H A Dif_athvar.h203 char an_name[32]; /* eg "wlan0_a1" */ member
/dragonfly/sys/vfs/autofs/
H A Dautofs.h98 char *an_name; member
H A Dautofs_vnops.c372 reclens += autofs_dirent_reclen(child->an_name); in autofs_readdir()
384 error = autofs_write_dirent(uio, child->an_name, child->an_ino); in autofs_readdir()
385 reclens += autofs_dirent_reclen(child->an_name); in autofs_readdir()
460 anp, (intmax_t)anp->an_ino, anp->an_name, anp->an_cached, in autofs_print()
497 anp->an_name = kstrndup(name, namelen, M_AUTOFS); in autofs_node_new()
499 anp->an_name = kstrdup(name, M_AUTOFS); in autofs_node_new()
529 find.an_name = kstrndup(name, namelen, M_AUTOFS); in autofs_node_find()
531 find.an_name = kstrdup(name, M_AUTOFS); in autofs_node_find()
542 kfree(find.an_name, M_AUTOFS); in autofs_node_find()
559 kfree(anp->an_name, M_AUTOFS); in autofs_node_delete()
H A Dautofs.c148 return (strcmp(a->an_name, b->an_name)); in autofs_node_cmp()
180 len = strlen(anp->an_name) + strlen(path) + 2; in autofs_path()
182 ksnprintf(tmp, len, "%s/%s", anp->an_name, path); in autofs_path()
319 key = kstrdup(firstanp->an_name, M_AUTOFS); in autofs_trigger_one()