Home
last modified time | relevance | path

Searched refs:stataddr (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/sys/compat/common/
H A Dkern_mod_80.c69 bool stataddr; in compat_80_modstat() local
83 stataddr = (error == 0); in compat_80_modstat()
111 if (mod->mod_kobj != NULL && stataddr) { in compat_80_modstat()
135 if (mod->mod_kobj != NULL && stataddr) { in compat_80_modstat()
/netbsd-src/sys/compat/netbsd32/
H A Dnetbsd32_compat_80.c64 bool stataddr; in modctl32_handle_ostat() local
73 stataddr = (error == 0); in modctl32_handle_ostat()
101 if (mod->mod_kobj != NULL && stataddr) { in modctl32_handle_ostat()
125 if (mod->mod_kobj != NULL && stataddr) { in modctl32_handle_ostat()
H A Dnetbsd32_module.c63 bool stataddr; in modctl32_handle_stat() local
68 stataddr = (error == 0); in modctl32_handle_stat()
117 if (mod->mod_kobj != NULL && stataddr) { in modctl32_handle_stat()
139 if (mod->mod_kobj != NULL && stataddr) { in modctl32_handle_stat()
/netbsd-src/sys/kern/
H A Dsys_module.c132 bool stataddr; in handle_modctl_stat() local
137 stataddr = (error == 0); in handle_modctl_stat()
186 if (mod->mod_kobj != NULL && stataddr) { in handle_modctl_stat()
208 if (mod->mod_kobj != NULL && stataddr) { in handle_modctl_stat()
/netbsd-src/external/cddl/osnet/dist/uts/common/sys/
H A Dcpuvar.h594 uint64_t *stataddr = &((cp)->cpu_stats.class.stat); \
596 stataddr, cp); \
597 *(stataddr) += (amount); \
/netbsd-src/games/hunt/huntd/
H A Ddriver.c109 static struct sockaddr_storage stataddr; variable
453 makeaddr(localmode ? statsockpath : NULL, 0, &stataddr, &stataddrlen); in init()
454 statsock = socket(stataddr.ss_family, SOCK_STREAM, 0); in init()
455 if (bind(statsock, (struct sockaddr *)&stataddr, stataddrlen) < 0) { in init()