Searched refs:funcs (Results 1 - 25 of 78) sorted by relevance

1234

/freebsd-11-stable/sys/contrib/ngatm/netnatm/saal/
H A Dsscfupriv.h52 const struct sscfu_funcs *funcs; /* func vector */ member in struct:sscfu
63 #define VERBOSE(S,M,F) if ((S)->debug & (M)) (S)->funcs->verbose F
H A Dsaal_sscfu.c61 ((S)->funcs->send_upper((S), (S)->aarg, (G), (M)))
64 ((S)->funcs->send_lower((S), (S)->aarg, (G), (M), (P)))
79 sscfu_create(void *a, const struct sscfu_funcs *funcs) argument
87 sscf->funcs = funcs;
294 sscf->funcs->window(sscf, sscf->aarg, 1);
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dkadm5-pwcheck.h70 const struct kadm5_pw_policy_check_func *funcs; member in struct:kadm5_pw_policy_verifier
H A Dprivate.h62 struct kadm_func funcs; member in struct:kadm5_common_context
88 struct kadm_func funcs; member in struct:kadm5_server_context
100 struct kadm_func funcs; member in struct:kadm5_client_context
118 struct kadm_func funcs; member in struct:kadm5_ad_context
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_crtc_helper.h142 const struct drm_crtc_helper_funcs *funcs)
144 crtc->helper_private = __DECONST(void *, funcs);
148 const struct drm_encoder_helper_funcs *funcs)
150 encoder->helper_private = __DECONST(void *, funcs);
154 const struct drm_connector_helper_funcs *funcs)
156 connector->helper_private = __DECONST(void *, funcs);
141 drm_crtc_helper_add(struct drm_crtc *crtc, const struct drm_crtc_helper_funcs *funcs) argument
147 drm_encoder_helper_add(struct drm_encoder *encoder, const struct drm_encoder_helper_funcs *funcs) argument
153 drm_connector_helper_add(struct drm_connector *connector, const struct drm_connector_helper_funcs *funcs) argument
H A Ddrm_fb_helper.c244 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
251 if (crtc->funcs->gamma_set == NULL)
258 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
264 struct drm_crtc_helper_funcs *funcs;
278 funcs = mode_set->crtc->helper_private;
280 funcs->mode_set_base_atomic(mode_set->crtc,
310 struct drm_crtc_helper_funcs *funcs;
317 funcs = crtc->helper_private;
329 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
345 ret = mode_set->crtc->funcs
[all...]
H A Ddrm_crtc.c282 const struct drm_framebuffer_funcs *funcs)
293 fb->funcs = funcs;
303 fb->funcs->destroy(fb);
384 ret = crtc->funcs->set_config(&set);
393 ret = plane->funcs->disable_plane(plane);
412 * @funcs: callbacks for the new CRTC
423 const struct drm_crtc_funcs *funcs)
428 crtc->funcs = funcs;
281 drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb, const struct drm_framebuffer_funcs *funcs) argument
422 drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc, const struct drm_crtc_funcs *funcs) argument
523 drm_connector_init(struct drm_device *dev, struct drm_connector *connector, const struct drm_connector_funcs *funcs, int connector_type) argument
610 drm_encoder_init(struct drm_device *dev, struct drm_encoder *encoder, const struct drm_encoder_funcs *funcs, int encoder_type) argument
648 drm_plane_init(struct drm_device *dev, struct drm_plane *plane, unsigned long possible_crtcs, const struct drm_plane_funcs *funcs, const uint32_t *formats, uint32_t format_count, bool priv) argument
[all...]
/freebsd-11-stable/sys/netinet/cc/
H A Dcc.c94 struct cc_algo *funcs; local
112 STAILQ_FOREACH(funcs, &cc_list, entries) {
113 if (strncmp(default_cc, funcs->name, sizeof(default_cc)))
115 V_default_cc_ptr = funcs;
214 struct cc_algo *funcs, *tmpfuncs; local
225 STAILQ_FOREACH_SAFE(funcs, &cc_list, entries, tmpfuncs) {
226 if (funcs == remove_cc) {
228 STAILQ_REMOVE(&cc_list, funcs, cc_algo, entries);
253 struct cc_algo *funcs; local
263 STAILQ_FOREACH(funcs,
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dpex-common.c54 const struct pex_funcs *funcs)
74 obj->funcs = funcs;
127 /* This isn't obj->funcs->close because we got the
129 obj->funcs. Calling close here is just like what
189 in = obj->funcs->open_read (obj, obj->next_input_name,
254 if (obj->funcs->pipe (obj, p, (flags & PEX_BINARY_OUTPUT) != 0) < 0)
267 out = obj->funcs->open_write (obj, outname,
292 errdes = obj->funcs->open_write (obj, errname, 0);
311 pid = obj->funcs
53 pex_init_common(int flags, const char *pname, const char *tempbase, const struct pex_funcs *funcs) argument
[all...]
H A Dpex-common.h82 const struct pex_funcs *funcs; member in struct:pex_obj
H A Dpex-djgpp.c57 const struct pex_funcs funcs = variable in typeref:struct:pex_funcs
77 return pex_init_common (flags, pname, tempbase, &funcs);
H A Dpex-msdos.c68 const struct pex_funcs funcs = variable in typeref:struct:pex_funcs
92 ret = pex_init_common (flags, pname, tempbase, funcs);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Deditor.c62 svn_editor_cb_many_t funcs; member in struct:svn_editor_t
298 editor->funcs.cb_add_directory = callback;
308 editor->funcs.cb_add_file = callback;
318 editor->funcs.cb_add_symlink = callback;
328 editor->funcs.cb_add_absent = callback;
338 editor->funcs.cb_alter_directory = callback;
348 editor->funcs.cb_alter_file = callback;
358 editor->funcs.cb_alter_symlink = callback;
368 editor->funcs.cb_delete = callback;
378 editor->funcs
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dtasn_new.c95 const ASN1_AUX *aux = it->funcs;
112 ef = it->funcs;
120 cf = it->funcs;
231 ef = it->funcs;
322 if (it->funcs) {
323 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
369 if (it && it->funcs) {
370 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
H A Dtasn_fre.c83 const ASN1_AUX *aux = it->funcs;
130 cf = it->funcs;
136 ef = it->funcs;
197 pf = it->funcs;
H A Dtasn_utl.c110 aux = it->funcs;
134 aux = it->funcs;
H A Dbio_ndef.c102 const ASN1_AUX *aux = it->funcs;
224 aux = ndef_aux->it->funcs;
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/decls/
H A DMakefile21 tst.funcs.d \
/freebsd-11-stable/sys/contrib/ngatm/netnatm/api/
H A Dccpriv.h70 const struct cc_funcs *funcs; member in struct:ccdata
83 (CC)->funcs->log("%s (data=%p): " FMT, __FUNCTION__, \
88 (CC)->funcs->log("%s (data=%p): " FMT, __func__, \
137 (P)->cc->funcs->log("%s (port=%p/%u): " FMT, __FUNCTION__, \
142 (P)->cc->funcs->log("%s (port=%p/%u): " FMT, __func__, \
324 (C)->cc->funcs->log("%s (conn=%p): " FMT, __FUNCTION__, \
329 (C)->cc->funcs->log("%s (conn=%p): " FMT, __func__, \
389 (P)->conn->cc->funcs->log("%s (conn=%p, party=%p): " FMT, \
394 (P)->conn->cc->funcs->log("%s (conn=%p, party=%p): " FMT, \
511 (U)->cc->funcs
[all...]
/freebsd-11-stable/sbin/nvmecontrol/
H A Dnvmecontrol.c51 static struct nvme_function funcs[] = { variable in typeref:struct:nvme_function
238 gen_usage(funcs);
240 dispatch(argc, argv, funcs);
/freebsd-11-stable/contrib/ngatm/libngatm/
H A Dunicust.h79 (U)->funcs->stop_timer(U, U->arg, F.c); \
84 (void)(FIELD.c = (UNI)->funcs->start_timer(UNI, \
/freebsd-11-stable/lib/libmagic/
H A DMakefile18 compress.c der.c encoding.c fsmagic.c funcs.c is_json.c \
60 mkmagic: apprentice.c cdf_time.c encoding.c funcs.c magic.c print.c ${INCS} ${BUILD_TOOLS_META}
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/
H A DMakefile26 funcs \
/freebsd-11-stable/sys/contrib/ngatm/netnatm/sig/
H A Dsig_coord.c121 uni->funcs->uni_output(uni, uni->arg,
131 uni->funcs->uni_output(uni, uni->arg,
159 uni->funcs->uni_output(uni, uni->arg,
211 uni->funcs->saal_output(uni, uni->arg,
241 uni->funcs->uni_output(uni, uni->arg,
269 uni->funcs->saal_output(uni, uni->arg,
297 uni->funcs->uni_output(uni, uni->arg,
680 uni->funcs->saal_output(uni, uni->arg,
728 uni->funcs->saal_output(uni, uni->arg,
753 uni->funcs
[all...]
/freebsd-11-stable/contrib/file/src/
H A DMakefile.am12 fsmagic.c funcs.c file.h readelf.h tar.h apptype.c der.c der.h \

Completed in 156 milliseconds

1234