| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | configure.ac | 301 funcs="$funcs atexit" 303 funcs="$funcs bcmp" 304 funcs="$funcs bcopy" 306 funcs="$funcs bzero" 307 funcs="$funcs calloc" 308 funcs="$funcs clock" 309 funcs="$funcs ffs" 310 funcs="$funcs getcwd" 313 funcs="$funcs index" 314 funcs="$funcs insque" [all …]
|
| H A D | pex-common.c | 54 const struct pex_funcs *funcs) in pex_init_common() argument 74 obj->funcs = funcs; in pex_init_common() 267 out = obj->funcs->open_write (obj, outname, in pex_run_in_environment() 324 obj->funcs->close (obj, in); in pex_run_in_environment() 326 obj->funcs->close (obj, out); in pex_run_in_environment() 328 obj->funcs->close (obj, errdes); in pex_run_in_environment() 411 obj->funcs->close (obj, p[READ_PORT]); in pex_input_pipe() 412 obj->funcs->close (obj, p[WRITE_PORT]); in pex_input_pipe() 558 obj->funcs->close (obj, obj->next_input); in pex_free() 594 if (obj->funcs->cleanup != NULL) in pex_free() [all …]
|
| H A D | configure | 4912 funcs="$funcs atexit" 4914 funcs="$funcs bcmp" 4915 funcs="$funcs bcopy" 4917 funcs="$funcs bzero" 4918 funcs="$funcs calloc" 4919 funcs="$funcs clock" 4920 funcs="$funcs ffs" 4921 funcs="$funcs getcwd" 4924 funcs="$funcs index" 4925 funcs="$funcs insque" [all …]
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_delta/ |
| H A D | editor.c | 62 svn_editor_cb_many_t funcs; member 378 editor->funcs.cb_copy = callback; in svn_editor_setcb_copy() 388 editor->funcs.cb_move = callback; in svn_editor_setcb_move() 529 if (editor->funcs.cb_add_file) in svn_editor_add_file() 598 if (editor->funcs.cb_add_absent) in svn_editor_add_absent() 693 if (editor->funcs.cb_alter_file) in svn_editor_alter_file() 761 if (editor->funcs.cb_delete) in svn_editor_delete() 795 if (editor->funcs.cb_copy) in svn_editor_copy() 833 if (editor->funcs.cb_move) in svn_editor_move() 863 if (editor->funcs.cb_complete) in svn_editor_complete() [all …]
|
| /freebsd-12.1/sys/netinet/cc/ |
| H A D | cc.c | 96 struct cc_algo *funcs; in cc_default_algo() local 114 STAILQ_FOREACH(funcs, &cc_list, entries) { in cc_default_algo() 115 if (strncmp(default_cc, funcs->name, sizeof(default_cc))) in cc_default_algo() 117 V_default_cc_ptr = funcs; in cc_default_algo() 216 struct cc_algo *funcs, *tmpfuncs; in cc_deregister_algo() local 227 STAILQ_FOREACH_SAFE(funcs, &cc_list, entries, tmpfuncs) { in cc_deregister_algo() 228 if (funcs == remove_cc) { in cc_deregister_algo() 230 STAILQ_REMOVE(&cc_list, funcs, cc_algo, entries); in cc_deregister_algo() 255 struct cc_algo *funcs; in cc_register_algo() local 265 STAILQ_FOREACH(funcs, &cc_list, entries) { in cc_register_algo() [all …]
|
| /freebsd-12.1/sys/dev/drm2/ |
| H A D | drm_crtc_helper.h | 142 const struct drm_crtc_helper_funcs *funcs) in drm_crtc_helper_add() argument 144 crtc->helper_private = __DECONST(void *, funcs); in drm_crtc_helper_add() 148 const struct drm_encoder_helper_funcs *funcs) in drm_encoder_helper_add() argument 150 encoder->helper_private = __DECONST(void *, funcs); in drm_encoder_helper_add() 154 const struct drm_connector_helper_funcs *funcs) in drm_connector_helper_add() argument 156 connector->helper_private = __DECONST(void *, funcs); in drm_connector_helper_add()
|
| H A D | drm_crtc.c | 293 fb->funcs = funcs; in drm_framebuffer_init() 303 fb->funcs->destroy(fb); in drm_framebuffer_free() 428 crtc->funcs = funcs; in drm_crtc_init() 538 connector->funcs = funcs; in drm_connector_init() 625 encoder->funcs = funcs; in drm_encoder_init() 664 plane->funcs = funcs; in drm_plane_init() 1107 crtc->funcs->destroy(crtc); in drm_mode_config_cleanup() 2540 if (fb->funcs->dirty) { in drm_mode_dirtyfb_ioctl() 3674 if (crtc->funcs->reset) in drm_mode_config_reset() 3675 crtc->funcs->reset(crtc); in drm_mode_config_reset() [all …]
|
| H A D | drm_fb_helper.c | 251 if (crtc->funcs->gamma_set == NULL) 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; 452 connector->funcs->dpms(connector, dpms_mode); 617 fb_helper->funcs->gamma_set(crtc, red, 621 fb_helper->funcs->gamma_get(crtc, &r, 626 fb_helper->funcs->gamma_set(crtc, r, [all …]
|
| H A D | drm_crtc.h | 256 const struct drm_framebuffer_funcs *funcs; member 408 const struct drm_crtc_funcs *funcs; member 502 const struct drm_encoder_funcs *funcs; member 584 const struct drm_connector_funcs *funcs; member 670 const struct drm_plane_funcs *funcs; member 789 const struct drm_mode_config_funcs *funcs; member 846 const struct drm_crtc_funcs *funcs); 851 const struct drm_connector_funcs *funcs, 860 const struct drm_encoder_funcs *funcs, 866 const struct drm_plane_funcs *funcs, [all …]
|
| /freebsd-12.1/sys/contrib/ngatm/netnatm/api/ |
| H A D | ccpriv.h | 70 const struct cc_funcs *funcs; member 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->log("%s (user=%p): " FMT, __FUNCTION__, \ [all …]
|
| /freebsd-12.1/crypto/heimdal/lib/kadm5/ |
| H A D | private.h | 62 struct kadm_func funcs; member 88 struct kadm_func funcs; member 100 struct kadm_func funcs; member 118 struct kadm_func funcs; member
|
| /freebsd-12.1/crypto/openssl/crypto/asn1/ |
| H A D | tasn_new.c | 46 const ASN1_AUX *aux = it->funcs; in asn1_item_embed_new() 62 ef = it->funcs; in asn1_item_embed_new() 176 ef = it->funcs; in asn1_item_clear() 272 if (it->funcs) { in asn1_primitive_new() 273 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs; in asn1_primitive_new() 333 if (it && it->funcs) { in asn1_primitive_clear() 334 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs; in asn1_primitive_clear()
|
| H A D | tasn_fre.c | 32 const ASN1_AUX *aux = it->funcs; in asn1_item_embed_free() 81 ef = it->funcs; in asn1_item_embed_free() 152 const ASN1_PRIMITIVE_FUNCS *pf = it->funcs; in asn1_primitive_free()
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | configure | 5009 funcs="$funcs atexit" 5011 funcs="$funcs bcmp" 5012 funcs="$funcs bcopy" 5014 funcs="$funcs bzero" 5015 funcs="$funcs calloc" 5016 funcs="$funcs clock" 5017 funcs="$funcs ffs" 5018 funcs="$funcs getcwd" 5021 funcs="$funcs index" 5022 funcs="$funcs insque" [all …]
|
| /freebsd-12.1/sys/contrib/ngatm/netnatm/saal/ |
| H A D | saal_sscfu.c | 61 ((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) in sscfu_create() argument 87 sscf->funcs = funcs; in sscfu_create() 294 sscf->funcs->window(sscf, sscf->aarg, 1); in sscfu_input()
|
| H A D | sscfupriv.h | 52 const struct sscfu_funcs *funcs; /* func vector */ member 63 #define VERBOSE(S,M,F) if ((S)->debug & (M)) (S)->funcs->verbose F
|
| H A D | sscoppriv.h | 208 const struct sscop_funcs *funcs; member 311 #define VERBOSE(S,M,F) if ((S)->debug & (M)) (S)->funcs->verbose F 312 #define VERBERR(S,M,F) if ((S)->debug & (M)) (S)->funcs->verbose F
|
| /freebsd-12.1/sys/contrib/ngatm/netnatm/sig/ |
| H A D | sig_coord.c | 121 uni->funcs->uni_output(uni, uni->arg, in coord_saal_establish_confirm() 131 uni->funcs->uni_output(uni, uni->arg, in coord_saal_establish_confirm() 159 uni->funcs->uni_output(uni, uni->arg, in coord_saal_release_confirm() 211 uni->funcs->saal_output(uni, uni->arg, in coord_link_establish_request() 241 uni->funcs->uni_output(uni, uni->arg, in coord_link_establish_request() 269 uni->funcs->saal_output(uni, uni->arg, in coord_link_release_request() 297 uni->funcs->uni_output(uni, uni->arg, in coord_t309() 680 uni->funcs->saal_output(uni, uni->arg, in uni_sig_coord() 728 uni->funcs->saal_output(uni, uni->arg, in uni_sig_coord() 1038 uni->funcs->uni_output(uni, uni->arg, in uni_sig_coord() [all …]
|
| H A D | sig_uni.c | 175 uni_create(void *arg, const struct uni_funcs *funcs) in uni_create() argument 184 uni->funcs = funcs; in uni_create() 523 uni->funcs->uni_output(uni, uni->arg, UNIAPI_ERROR, cookie, resp); in uniapi_uni_error() 542 uni->funcs->status(uni, uni->arg, arg, in uni_status() 544 uni->funcs->status(uni, uni->arg, arg, in uni_status() 546 uni->funcs->status(uni, uni->arg, arg, in uni_status() 549 uni->funcs->status(uni, uni->arg, arg, in uni_status() 551 uni->funcs->status(uni, uni->arg, arg, in uni_status() 553 uni->funcs->status(uni, uni->arg, arg, in uni_status()
|
| H A D | sig_reset.c | 216 uni->funcs->uni_output(uni, uni->arg, in start_t316() 339 uni->funcs->uni_output(uni, uni->arg, UNIAPI_RESET_confirm, 0, app); in start_restart_ack() 415 uni->funcs->uni_output(uni, uni->arg, in start_status() 427 uni->funcs->uni_output(uni, uni->arg, in start_status() 632 uni->funcs->uni_output(uni, uni->arg, in response_t317() 802 uni->funcs->uni_output(uni, uni->arg, in response_status() 814 uni->funcs->uni_output(uni, uni->arg, in response_status()
|
| /freebsd-12.1/contrib/ngatm/libngatm/ |
| H A D | sscopcust.h | 79 (S)->funcs->stop_timer((S), (S)->aarg, (S)->t_##T); \ 85 (S)->funcs->stop_timer((S), (S)->aarg, (S)->t_##T); \ 86 (S)->t_##T = (S)->funcs->start_timer((S), (S)->aarg, \
|
| H A D | unicust.h | 79 (U)->funcs->stop_timer(U, U->arg, F.c); \ 84 (void)(FIELD.c = (UNI)->funcs->start_timer(UNI, \
|
| /freebsd-12.1/contrib/ncurses/ |
| H A D | MANIFEST | 240 ./doc/html/ada/funcs.htm 241 ./doc/html/ada/funcs/A.htm 242 ./doc/html/ada/funcs/B.htm 243 ./doc/html/ada/funcs/C.htm 244 ./doc/html/ada/funcs/D.htm 245 ./doc/html/ada/funcs/E.htm 246 ./doc/html/ada/funcs/F.htm 247 ./doc/html/ada/funcs/G.htm 248 ./doc/html/ada/funcs/H.htm 249 ./doc/html/ada/funcs/I.htm [all …]
|
| /freebsd-12.1/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/ |
| H A D | exception.lst | 74 common/funcs/tst.badfreopen.ksh 75 common/funcs/tst.freopen.ksh 76 common/funcs/tst.ftruncate.ksh
|
| /freebsd-12.1/lib/libmagic/ |
| H A D | Makefile | 17 compress.c der.c encoding.c fsmagic.c funcs.c \ 45 mkmagic: apprentice.c cdf_time.c encoding.c funcs.c magic.c print.c ${INCS} ${BUILD_TOOLS_META}
|