Home
last modified time | relevance | path

Searched refs:sti_next_so (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocktpi.h225 struct sonode *sti_next_so; /* next sonode on socklist */ member
H A Dsocktpi.c6262 sti->sti_next_so = socklist.sl_list; in socktpi_unix_constructor()
6264 if (sti->sti_next_so != NULL) in socktpi_unix_constructor()
6265 SOTOTPI(sti->sti_next_so)->sti_prev_so = so; in socktpi_unix_constructor()
6282 if (sti->sti_next_so != NULL) in socktpi_unix_destructor()
6283 SOTOTPI(sti->sti_next_so)->sti_prev_so = sti->sti_prev_so; in socktpi_unix_destructor()
6285 SOTOTPI(sti->sti_prev_so)->sti_next_so = sti->sti_next_so; in socktpi_unix_destructor()
6287 socklist.sl_list = sti->sti_next_so; in socktpi_unix_destructor()
H A Dsocksubr.c1802 for (so = socklist.sl_list; so != NULL; so = SOTOTPI(so)->sti_next_so) { in sockfs_update()
1837 for (so = socklist.sl_list; so != NULL; so = SOTOTPI(so)->sti_next_so) { in sockfs_snapshot()
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dnet.c256 wsp->walk_addr = (uintptr_t)stp->st_info.sti_next_so; in sonode_walk_step()