Searched refs:func (Results 201 - 225 of 999) sorted by relevance

1234567891011>>

/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dinput.c87 read_file(Elf *elf, char *file, char *label, read_cb_f *func, void *arg, argument
121 if (func(td, file, arg) < 0)
130 read_archive(int fd, Elf *elf, char *file, char *label, read_cb_f *func, argument
157 func, arg, require_ctf);
161 func, arg, require_ctf);
185 read_ctf_common(char *file, char *label, read_cb_f *func, void *arg, argument
204 func, arg, require_ctf);
209 func, arg, require_ctf);
234 read_ctf(char **files, int n, char *label, read_cb_f *func, void *private, argument
241 if ((rc = read_ctf_common(files[i], label, func,
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/sl/
H A Dsl.c74 /* if (c->func == NULL)
87 if (c->func) {
118 if (c->func)
147 if (c->func) {
169 if((++c)->name && c->func == NULL) {
171 while (c->name && c->func == NULL)
212 return (*c->func)(argc, argv);
377 if(c->func) {
380 (*c->func)(2, fake);
385 if((++c)->name && c->func
[all...]
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Dradeon_ioc32.c44 int func; member in struct:drm_radeon_init32
74 init.func = init32->func;
123 return radeon_ioctls[DRM_IOCTL_RADEON_CLEAR].func(dev, &clr, file_priv);
138 return radeon_ioctls[DRM_IOCTL_RADEON_STIPPLE].func(dev, &request, file_priv);
181 return radeon_ioctls[DRM_IOCTL_RADEON_TEXTURE].func(dev, &request, file_priv);
208 return radeon_ioctls[DRM_IOCTL_RADEON_VERTEX2].func(dev, &request, file_priv);
231 return radeon_ioctls[DRM_IOCTL_RADEON_CMDBUF].func(dev, &request, file_priv);
250 return radeon_ioctls[DRM_IOCTL_RADEON_GETPARAM].func(dev, &request, file_priv);
310 return radeon_ioctls[DRM_IOCTL_RADEON_SETPARAM].func(de
[all...]
/freebsd-9.3-release/sys/dev/sound/pci/
H A Dcsa.c247 struct sndcard_func *func; local
301 func = malloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
302 if (func == NULL) {
306 func->varinfo = &scp->binfo;
307 func->func = SCF_PCM;
309 device_set_ivars(scp->pcm, func);
312 func = malloc(sizeof(struct sndcard_func), M_DEVBUF, M_NOWAIT | M_ZERO);
313 if (func == NULL) {
317 func
342 struct sndcard_func *func; local
460 struct sndcard_func *func; local
506 struct sndcard_func *func; local
[all...]
/freebsd-9.3-release/sys/arm/xscale/i8134x/
H A Di81342_pci.c84 int func; local
95 func = 5;
97 func = 0;
100 func = 0;
102 func = 5;
137 (IOP34X_PCIX_OIOBAR >> 4) | func);
140 (IOP34X_PCIE_OIOBAR >> 4) | func);
146 (IOP34X_PCIX_OMBAR >> 32) | (func << ATU_OUMBAR_FUNC) |
150 (IOP34X_PCIE_OMBAR >> 32) | (func << ATU_OUMBAR_FUNC) |
225 i81342_pci_conf_setup(struct i81342_pci_softc *sc, int bus, int slot, int func, argument
255 i81342_pci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, int bytes) argument
300 i81342_pci_write_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, u_int32_t data, int bytes) argument
[all...]
/freebsd-9.3-release/contrib/wpa/src/utils/
H A Dtrace.c272 const char *func = wpa_trace_bfd_addr2func(btrace[i]); local
273 if (state == TRACE_HEAD && func &&
274 (os_strcmp(func, "wpa_trace_add_ref_func") == 0 ||
275 os_strcmp(func, "wpa_trace_check_ref") == 0 ||
276 os_strcmp(func, "wpa_trace_show") == 0))
288 if (state == TRACE_RELEVANT && func &&
289 os_strcmp(func, "main") == 0)
/freebsd-9.3-release/crypto/openssl/crypto/sha/asm/
H A Dsha1-x86_64.pl63 my $func=shift;
65 .globl $func
66 .type $func,\@function,3
68 $func:
89 my $func=shift;
96 .size $func,.-$func
/freebsd-9.3-release/sys/powerpc/powermac/
H A Duninorthpci.c164 uninorth_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, argument
173 if (uninorth_enable_config(sc, bus, slot, func, reg) != 0) {
191 uninorth_write_config(device_t dev, u_int bus, u_int slot, u_int func, argument
200 if (uninorth_enable_config(sc, bus, slot, func, reg)) {
217 u_int func, u_int reg)
242 cfgval = (1 << slot) | (func << 8) | (reg & 0xfc);
244 cfgval = (bus << 16) | (slot << 11) | (func << 8) |
216 uninorth_enable_config(struct uninorth_softc *sc, u_int bus, u_int slot, u_int func, u_int reg) argument
/freebsd-9.3-release/sys/sys/
H A Deventhandler.h46 void (* func)(void); /* Original function registered. */ member in struct:eventhandler_entry_vimage
115 #define EVENTHANDLER_DEFINE(name, func, arg, priority) \
119 name ## _tag = EVENTHANDLER_REGISTER(name, func, ctx, \
134 #define EVENTHANDLER_REGISTER(name, func, arg, priority) \
135 eventhandler_register(NULL, #name, func, arg, priority)
147 const char *name, void *func, void *arg, int priority);
157 const char *name, void *func, void *arg, int priority,
/freebsd-9.3-release/contrib/gcc/
H A Dunwind-dw2-fde-glibc.c74 void *func; member in struct:unw_eh_callback_data
375 data->func = (void *) (table[mid].initial_loc + data_base);
392 _Unwind_Ptr func; local
397 data->ret->pc_begin, &func);
398 data->func = (void *) func;
416 data.func = NULL;
427 bases->func = data.func;
H A Dgcc.h31 const char *(*func) (int, const char **); member in struct:spec_function
H A Dgthr-nks.h91 __gthread_objc_thread_detach (void (*func)(void *), void *arg)
98 if ((context = NXContextAlloc (func, arg, NX_PRIO_MED, 0, 0, 0, &err)) == NULL)
284 __gthread_once (__gthread_once_t *once, void (*func) (void))
288 func();
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dkeyset.c325 * @param func function to call for each certificate. The function
338 int (*func)(hx509_context, void *, hx509_cert),
357 ret = (*func)(context, ctx, c);
596 * @param func function that will get each line of the information, if
599 * @param ctx parameter to func.
609 int (*func)(void *, const char *),
612 if (func == NULL) {
613 func = certs_info_stdio;
618 (*func)(ctx, "No info function for certs");
622 func, ct
336 hx509_certs_iter(hx509_context context, hx509_certs certs, int (*func)(hx509_context, void *, hx509_cert), void *ctx) argument
[all...]
/freebsd-9.3-release/sys/kern/
H A Dkern_kthread.c63 error = kproc_create((void (*)(void *))kp->func, NULL,
73 * func is the function to start.
80 kproc_create(void (*func)(void *), void *arg,
123 cpu_set_fork_handler(td, func, arg);
233 error = kthread_add((void (*)(void *))kp->func, NULL,
243 * func is the function to start.
250 kthread_add(void (*func)(void *), void *arg, struct proc *p,
289 cpu_set_fork_handler(newtd, func, arg);
437 kproc_kthread_add(void (*func)(void *), void *arg,
447 error = kproc_create(func, ar
[all...]
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dgthr-win32.c74 __gthr_win32_once (__gthread_once_t *once, void (*func) (void))
76 if (once == NULL || func == NULL)
83 (*func) ();
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dsend_to_kdc.c39 krb5_send_to_kdc_func func; member in struct:send_to_kdc
345 ret = (*s->func)(context, s->data,
431 krb5_send_to_kdc_func func,
435 if (func == NULL) {
446 context->send_to_kdc->func = func;
454 krb5_sendto_ctx_func func; member in struct:krb5_sendto_ctx_data
490 krb5_sendto_ctx_func func,
493 ctx->func = func;
430 krb5_set_send_to_kdc_func(krb5_context context, krb5_send_to_kdc_func func, void *data) argument
489 krb5_sendto_ctx_set_func(krb5_sendto_ctx ctx, krb5_sendto_ctx_func func, void *data) argument
[all...]
/freebsd-9.3-release/lib/libc/xdr/
H A Dxdr_sizeof.c136 xdr_sizeof(func, data)
137 xdrproc_t func;
164 stat = func(&x, data);
/freebsd-9.3-release/lib/libedit/
H A Dparse.c60 int (*func)(EditLine *, int, const char **); member in struct:__anon5191
125 i = (*cmds[i].func) (el, argc, argv);
259 return (b->func);
/freebsd-9.3-release/tools/regression/lib/msun/
H A Dtest-exponential.c62 #define test(func, x, result, exceptmask, excepts) do { \
65 assert(fpequal((func)(_d), (result))); \
66 assert(((func), fetestexcept(exceptmask) == (excepts))); \
H A Dtest-logarithm.c62 #define test(func, x, result, exceptmask, excepts) do { \
65 assert(fpequal((func)(_d), (result))); \
66 assert(((func), fetestexcept(exceptmask) == (excepts))); \
/freebsd-9.3-release/usr.bin/tip/libacu/
H A Dv3451.c59 sig_t func; local
100 func = signal(SIGINT,SIG_IGN);
118 signal(SIGINT, func);
/freebsd-9.3-release/usr.sbin/rtsold/
H A Drtsock.c73 int (*func)(int, struct rt_msghdr *, char *); member in struct:__anon11069
119 for (idx = 0; rtsock_dispatch[idx].func; idx++) {
128 ret = (*rtsock_dispatch[idx].func)(s, rtm, lim);
/freebsd-9.3-release/contrib/openbsm/libbsm/
H A Dbsm_wrappers.c295 char *func = "audit_write()"; local
301 syslog(LOG_ERR, "%s: au_open() failed", func);
310 syslog(LOG_ERR, "%s: write of subject failed", func);
318 syslog(LOG_ERR, "%s: write of caller token failed", func);
325 syslog(LOG_ERR, "%s: au_to_return32() failed", func);
332 syslog(LOG_ERR, "%s: write of return code failed", func);
341 syslog(LOG_ERR, "%s: au_close() failed", func);
357 char *func = "audit_write_success()"; local
364 syslog(LOG_ERR, "%s: au_to_subject32() failed", func);
379 char *func local
401 char *func = "audit_write_failure()"; local
430 char *func = "audit_write_failure_self()"; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Ddst_api.c297 if (key->func->createctx == NULL)
308 result = key->func->createctx(key, dctx);
325 INSIST(dctx->key->func->destroyctx != NULL);
326 dctx->key->func->destroyctx(dctx);
336 INSIST(dctx->key->func->adddata != NULL);
338 return (dctx->key->func->adddata(dctx, data));
353 if (key->func->sign == NULL)
355 if (key->func->isprivate == NULL ||
356 key->func->isprivate(key) == ISC_FALSE)
359 return (key->func
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_iter.c163 pool_list_iter(zpool_list_t *zlp, int unavail, zpool_iter_f func, argument
173 ret |= func(node->zn_handle, data);
239 zprop_list_t **proplist, zpool_iter_f func, void *data)
247 if (pool_list_iter(list, unavail, func, data) != 0)
238 for_each_pool(int argc, char **argv, boolean_t unavail, zprop_list_t **proplist, zpool_iter_f func, void *data) argument

Completed in 403 milliseconds

1234567891011>>