Searched refs:func (Results 151 - 175 of 999) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/pci/
H A Dpci_subr.c50 host_pcib_get_busno(pci_read_config_fn read_config, int bus, int slot, int func, argument
55 id = read_config(bus, slot, func, PCIR_DEVVENDOR, 4);
63 /* *busnum = read_config(bus, slot, func, 0x41, 1); */
68 *busnum = read_config(bus, slot, func, 0x4a, 1);
87 *busnum = read_config(bus, 0x10, func, 0xd0, 1);
91 *busnum = read_config(bus, 0x10, func, 0xd1, 1) + 1;
95 *busnum = read_config(bus, 0x10, func, 0xd3, 1);
99 *busnum = read_config(bus, 0x10, func, 0xd4, 1) + 1;
118 *busnum = read_config(bus, slot, func, 0x44, 1);
123 *busnum = read_config(bus, slot, func,
[all...]
/freebsd-9.3-release/sys/net/
H A Dpfil.c165 pfil_add_hook(int (*func)(void *, struct mbuf **, struct ifnet *, int,
190 pfh1->pfil_func = func;
198 pfh2->pfil_func = func;
203 pfil_list_remove(&ph->ph_in, func, arg);
225 pfil_remove_hook(int (*func)(void *, struct mbuf **, struct ifnet *, int,
232 err = pfil_list_remove(&ph->ph_in, func, arg);
237 err = pfil_list_remove(&ph->ph_out, func, arg);
275 int (*func)(void *, struct mbuf **, struct ifnet *, int, struct inpcb *),
281 if (pfh->pfil_func == func && pfh->pfil_arg == arg) {
/freebsd-9.3-release/sys/netinet/
H A Dip_encap.h46 int (*func)(const struct mbuf *, int, int, void *); member in struct:encaptab
/freebsd-9.3-release/sys/nfs/
H A Dkrpc.h12 u_int prog, u_int vers, u_int func,
/freebsd-9.3-release/sys/sparc64/include/
H A Dsmp.h164 ipi_dcache_page_inval(void *func, vm_paddr_t pa) argument
176 cpu_ipi_selected(ica->ica_mask, 0, (u_long)func, (u_long)ica);
181 ipi_icache_page_inval(void *func, vm_paddr_t pa) argument
193 cpu_ipi_selected(ica->ica_mask, 0, (u_long)func, (u_long)ica);
198 ipi_rd(u_int cpu, void *func, u_long *val) argument
209 cpu_ipi_single(cpu, 0, (u_long)func, (u_long)ira);
312 ipi_dcache_page_inval(void *func __unused, vm_paddr_t pa __unused)
319 ipi_icache_page_inval(void *func __unused, vm_paddr_t pa __unused)
326 ipi_rd(u_int cpu __unused, void *func __unused, u_long *val __unused)
/freebsd-9.3-release/sys/sys/
H A Dkernel.h214 sysinit_cfunc_t func; /* function */ member in struct:sysinit
230 #define C_SYSINIT(uniquifier, subsystem, order, func, ident) \
234 func, \
239 #define SYSINIT(uniquifier, subsystem, order, func, ident) \
241 (sysinit_cfunc_t)(sysinit_nfunc_t)func, (void *)(ident))
246 #define C_SYSUNINIT(uniquifier, subsystem, order, func, ident) \
250 func, \
255 #define SYSUNINIT(uniquifier, subsystem, order, func, ident) \
257 (sysinit_cfunc_t)(sysinit_nfunc_t)func, (void *)(ident))
/freebsd-9.3-release/tools/regression/lib/msun/
H A Dtest-fmaxmin.c58 * Test whether func(x, y) has the expected result, and make sure no
61 #define TEST(func, type, x, y, expected) do { \
65 long double __result = func((__x), (__y)); \
67 fprintf(stderr, #func "(%.20Lg, %.20Lg) raised 0x%x\n", \
72 fprintf(stderr, #func "(%.20Lg, %.20Lg) = %.20Lg, " \
/freebsd-9.3-release/usr.sbin/ngctl/
H A Dngctl.h44 int (*func)(int ac, char **av); /* command function */ member in struct:ngcmd
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-error-init-cn52xxp1.c179 info.func = __cvmx_error_decode;
195 info.func = __cvmx_error_display;
231 info.func = __cvmx_error_display;
271 info.func = __cvmx_error_display;
292 info.func = __cvmx_error_display;
316 info.func = __cvmx_error_display;
341 info.func = __cvmx_error_decode;
357 info.func = __cvmx_error_display;
393 info.func = __cvmx_error_display;
433 info.func
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dacache.c395 error = (*cache->func->get_name)(cache, &name);
400 (*name->func->release)(name);
466 error = (*a->context->func->open_ccache)(a->context, res,
520 error = (*a->context->func->create_new_ccache)(a->context,
536 (*a->ccache->func->release)(a->ccache);
543 (*a->context->func->release)(a->context);
557 error = (*a->ccache->func->destroy)(a->ccache);
561 error = (a->context->func->release)(a->context);
592 error = (*a->ccache->func->store_credentials)(a->ccache, &cred);
616 error = (*a->ccache->func
[all...]
/freebsd-9.3-release/lib/libpam/modules/pam_exec/
H A Dpam_exec.c70 parse_options(const char *func, int *argc, const char **argv[], argument
88 func);
108 const char *func, int flags __unused, int argc, const char *argv[],
125 func);
165 asprintf(&envstr, "PAM_SM_FUNC=%s", func);
226 openpam_log(PAM_LOG_ERROR, "%s: vfork(): %m", func);
232 openpam_log(PAM_LOG_ERROR, "%s: waitpid(): %m", func);
236 openpam_log(PAM_LOG_ERROR, "%s: execve(): %m", func);
241 func, argv[0], WTERMSIG(status),
247 func, statu
107 _pam_exec(pam_handle_t *pamh __unused, const char *func, int flags __unused, int argc, const char *argv[], struct pe_opts *options) argument
[all...]
/freebsd-9.3-release/sys/dev/led/
H A Dled.c32 led_t *func; member in struct:ledsc
69 sc->func(sc->private, *sc->ptr == 'U');
71 sc->func(sc->private, 0);
74 sc->func(sc->private, 1);
99 sc->func(sc->private, state);
266 led_create(led_t *func, void *priv, char const *name) argument
269 return (led_create_state(func, priv, name, 0));
272 led_create_state(led_t *func, void *priv, char const *name, int state) argument
282 sc->func = func;
[all...]
/freebsd-9.3-release/sys/geom/
H A Dgeom_event.c70 g_event_t *func; member in struct:g_event
257 ep->func(ep->arg, 0);
319 ep->func(ep->arg, EV_CANCEL);
336 g_post_event_x(g_event_t *func, void *arg, int flag, int wuflag, struct g_event **epp, va_list ap) argument
343 func, arg, flag, wuflag);
358 ep->func = func;
371 g_post_event(g_event_t *func, void *arg, int flag, ...) argument
379 i = g_post_event_x(func, arg, flag, 0, NULL, ap);
402 g_waitfor_event(g_event_t *func, voi argument
[all...]
/freebsd-9.3-release/contrib/libbegemot/
H A Drpoll.c163 poll_f func; /* handler */ member in struct:__anon1648
176 timer_f func; /* handler, 0 means disfunct */ member in struct:__anon1649
246 * mask arrives func is called with arg.
247 * If fd is already registered with that func and arg, only the mask
253 poll_register(int fd, poll_f func, void *arg, int mask) argument
261 if(p->fd == fd && p->func == func && p->arg == arg) {
290 p->func = func;
300 fd, (void *)func, (voi
374 poll_start_timer(u_int msecs, int repeat, timer_f func, void *arg) argument
381 poll_start_utimer(unsigned long long usecs, int repeat, timer_f func, void *arg) argument
[all...]
/freebsd-9.3-release/sys/compat/ndis/
H A Dkern_windrv.c583 windrv_wrap(func, wrap, argcnt, ftype)
584 funcptr func;
610 *calladdr = (vm_offset_t)func;
755 windrv_wrap_fastcall(func, wrap, argcnt)
756 funcptr func;
783 *calladdr = (vm_offset_t)func;
803 windrv_wrap_stdcall(func, wrap, argcnt)
804 funcptr func;
831 *calladdr = (vm_offset_t)func;
846 windrv_wrap_regparm(func, wra
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dhttpd.h67 isc_httpdaction_t *func, void *arg);
72 isc_httpdaction_t *func, void *arg);
/freebsd-9.3-release/contrib/gcc/
H A Derrors.c131 fancy_abort (const char *file, int line, const char *func) argument
133 internal_error ("abort in %s, at %s:%d", func, trim_filename (file), line);
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_log.c98 _openpam_log(int level, const char *func, const char *fmt, ...) argument
125 if (asprintf(&format, "in %s(): %s", func, fmt) > 0) {
/freebsd-9.3-release/lib/libc/arm/gen/
H A Dmakecontext.c59 __makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...) argument
78 gr[_REG_R4] = (__greg_t)func;
H A Dsignalcontext.c49 __signalcontext(ucontext_t *ucp, int sig, __sighandler_t *func) argument
68 gr[_REG_R4] = (__greg_t)func;
/freebsd-9.3-release/lib/libc/iconv/
H A Dcitrus_prop.h47 _citrus_prop_##_func_##_cb_func_t func; \
57 _citrus_prop_##_func_##_cb_func_t func; \
/freebsd-9.3-release/lib/libc/locale/
H A Dsetlocale.c236 int (*func)(const char *);
254 func = __wrap_setrunelocale;
257 func = __collate_load_tables;
260 func = __time_load_locale;
263 func = __numeric_load_locale;
266 func = __monetary_load_locale;
269 func = __messages_load_locale;
279 if (func(new) != _LDP_ERROR) {
/freebsd-9.3-release/lib/libc/sparc64/gen/
H A Dsignalcontext.c48 __signalcontext(ucontext_t *ucp, int sig, __sighandler_t *func) argument
64 mc->mc_global[1] = (uint64_t)func;
/freebsd-9.3-release/sys/amd64/include/
H A Dlegacyvar.h51 u_int func, u_int reg, int bytes);
55 u_int func, u_int reg, uint32_t data, int bytes);
/freebsd-9.3-release/sys/arm/xscale/ixp425/
H A Dixp425_npevar.h74 #define NPEIMAGE_MAKEID(dev, npe, func, maj, min) \
76 (((func) & 0xff) << 16) (((maj) & 0xff) << 8) | (((min) & 0xff) << 0))

Completed in 230 milliseconds

1234567891011>>