Searched defs:func (Results 1 - 25 of 447) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/sgs/test/ld/x64/tls/ie/orig/
H A Dstyle1-func.c21 func() function
/illumos-gate/usr/src/cmd/sgs/test/ld/x64/tls/ie/
H A Dstyle1-func-with-r12.s20 .globl func
21 .type func, @function
22 func: label
39 .size func, .-func
H A Dstyle1-func-with-r13.s19 .globl func
20 .type func, @function
21 func: label
38 .size func, .-func
H A Dstyle1-func.s20 .globl func
21 .type func, @function
22 func: label
38 .size func, .-func
/illumos-gate/usr/src/lib/libeti/form/common/
H A Dfield_init.c39 set_field_init(FORM *f, PTF_void func) argument
41 Form(f)->fieldinit = func;
H A Dfield_term.c39 set_field_term(FORM *f, PTF_void func) argument
41 Form(f)->fieldterm = func;
H A Dform_init.c39 set_form_init(FORM *f, PTF_void func) argument
41 Form(f)->forminit = func;
H A Dform_term.c43 set_form_term(FORM *f, PTF_void func) argument
45 Form(f)->formterm = func;
/illumos-gate/usr/src/boot/lib/libstand/
H A Dassert.c35 __assert(const char *func, const char *file, int line, const char *expression) argument
37 if (func == NULL)
43 expression, func, file, line);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/
H A Dtst.FunctionLookup.c40 f2(f func, int i) argument
42 func(i);
H A Dtst.ProbeData.c57 fN(f func, char *a, int i) argument
59 func(a);
63 fN2(f func, char *a, int i) argument
65 func(a);
/illumos-gate/usr/src/uts/sun4v/promif/
H A Dpromif_test.c36 cif_func_t func; local
43 func = promif_find_cif_callback(opname);
46 rv = (func != NULL) ? 0 : 1;
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dcleanup.h8 void (*func)(void *); member in struct:cleanup
17 cleanup_data[cleanup_count].func = y; \
21 if ((--cleanup_count) && x && (cleanup_data[cleanup_count].func)) \
22 cleanup_data[cleanup_count].func(cleanup_data[cleanup_count].arg);
26 if (cleanup_data[cleanup_count].func) \
27 cleanup_data[cleanup_count].func(cleanup_data[cleanup_count].arg);
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_context.c56 mdb_context_create(int (*func)(void)) argument
64 c->ctx_func = func;
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_context.c62 mdb_context_create(int (*func)(void)) argument
75 c->ctx_func = func;
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/profile-n/
H A Dtst.ufuncsort.c57 fN(f func, int i) argument
59 func(i);
/illumos-gate/usr/src/uts/sun4/os/
H A Dmp_call.c72 cpu_call(cpu_t *cp, cpu_call_func_t func, uintptr_t arg1, uintptr_t arg2) argument
89 xc_one(cp->cpu_id, (xcfunc_t *)func, (uint64_t)arg1,
96 func(arg1, arg2);
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmp_call.c64 cpu_call(cpu_t *cp, cpu_call_func_t func, uintptr_t arg1, uintptr_t arg2) argument
85 (*func)(arg1, arg2);
90 (xc_func_t)func);
/illumos-gate/usr/src/lib/print/libpapi-dynamic/common/
H A Dpsm.c83 void *func = NULL; local
86 if ((func = dlsym(svc->so_handle, name)) == NULL)
90 if (func == NULL)
94 return (func);
/illumos-gate/usr/src/lib/print/libprint/common/
H A Dns.c171 char func[32]; local
177 if (snprintf(func, sizeof (func), "%s_put_printer",
178 normalize_ns_name(printer->source)) >= sizeof (func)) {
183 if ((fpt = (int (*)())dlsym(RTLD_DEFAULT, func)) != NULL)
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dcomvar.sh257 function func function
264 func
/illumos-gate/usr/src/lib/libc/amd64/gen/
H A Dmakectxt.c52 makecontext(ucontext_t *ucp, void (*func)(), int argc, ...) argument
62 ucp->uc_mcontext.gregs[REG_PC] = (greg_t)func;
/illumos-gate/usr/src/cmd/powertop/common/
H A Dsuggestions.c66 pt_sugg_add(char *text, int weight, char key, char *sb_msg, sugg_func_t *func) argument
91 new->func = func;
118 new->func = func;
158 pt_sugg_remove(sugg_func_t *func) argument
164 if (n->func == func) {
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_thread.c73 fmd_thread_create_cmn(fmd_module_t *mp, fmd_thread_f *func, void *arg, argument
81 tp->thr_func = func;
110 fmd_thread_create(fmd_module_t *mp, fmd_thread_f *func, void *arg) argument
112 return (fmd_thread_create_cmn(mp, func, arg, 0));
116 fmd_doorthread_create(fmd_module_t *mp, fmd_thread_f *func, void *arg) argument
118 return (fmd_thread_create_cmn(mp, func, arg, 1));
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dlinkage.c113 generate_linkage_function(char *lib, char *func) argument
116 "void *__abi_%s_%s(void *real, int vflag) { \n", lib, func);
117 (void) fprintf(Bodyfp, " ABI_REAL(%s, %s) = real;\n", lib, func);
118 (void) fprintf(Bodyfp, " ABI_VFLAG(%s, %s) = vflag;\n", lib, func);
120 " return ((void *) %s_%s);\n}\n", lib, func);

Completed in 122 milliseconds

1234567891011>>