/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-wrapper.swig | 31 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( 35 if (auto arg_info = pfunc.GetArgInfo()) 45 ? pfunc.Call(frame_arg, bp_loc_arg, dict) 46 : pfunc.Call(frame_arg, bp_loc_arg, SWIGBridge::ToSWIGWrapper(args_impl), dict); 78 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( 81 if (!pfunc.IsAllocated()) 85 pfunc(SWIGBridge::ToSWIGWrapper(frame_sp), SWIGBridge::ToSWIGWrapper(wp_sp), dict); 105 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( 108 if (!pfunc.IsAllocated()) 112 pfunc(SWIGBridge::ToSWIGWrapper(type_impl_sp), dict); [all …]
|
/freebsd/sys/powerpc/powermac/ |
H A D | tbgpio.c | 71 pcell_t pfunc[32]; in tbgpio_probe() local 80 res = OF_getencprop(node, "platform-do-cpu-timebase", pfunc, in tbgpio_probe() 81 sizeof(pfunc)); in tbgpio_probe() 89 if (res != 20 || pfunc[2] != 0x01) { in tbgpio_probe() 94 hexdump(pfunc, res, NULL, HD_OMIT_CHARS); in tbgpio_probe() 117 pcell_t pfunc[5]; in tbgpio_attach() local 122 OF_getencprop(node, "platform-do-cpu-timebase", pfunc, sizeof(pfunc)); in tbgpio_attach() 124 sc->sc_value = pfunc[3]; in tbgpio_attach() 125 sc->sc_mask = pfunc[4]; in tbgpio_attach()
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg.c | 786 const OSSL_DISPATCH *pfunc; in ossl_rand_drbg_new() local 806 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_ENABLE_LOCKING)) != NULL) in ossl_rand_drbg_new() 807 drbg->parent_enable_locking = OSSL_FUNC_rand_enable_locking(pfunc); in ossl_rand_drbg_new() 808 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_LOCK)) != NULL) in ossl_rand_drbg_new() 809 drbg->parent_lock = OSSL_FUNC_rand_lock(pfunc); in ossl_rand_drbg_new() 810 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_UNLOCK)) != NULL) in ossl_rand_drbg_new() 811 drbg->parent_unlock = OSSL_FUNC_rand_unlock(pfunc); in ossl_rand_drbg_new() 812 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_CTX_PARAMS)) != NULL) in ossl_rand_drbg_new() 813 drbg->parent_get_ctx_params = OSSL_FUNC_rand_get_ctx_params(pfunc); in ossl_rand_drbg_new() 814 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_NONCE)) != NULL) in ossl_rand_drbg_new() [all …]
|
/freebsd/contrib/tcpdump/ |
H A D | print-ppp.c | 419 u_int (*pfunc)(netdissect_options *, const u_char *, u_int); in handle_ctrl_proto() local 487 pfunc = print_lcp_config_options; in handle_ctrl_proto() 490 pfunc = print_ipcp_config_options; in handle_ctrl_proto() 493 pfunc = print_ip6cp_config_options; in handle_ctrl_proto() 496 pfunc = print_ccp_config_options; in handle_ctrl_proto() 499 pfunc = print_bacp_config_options; in handle_ctrl_proto() 506 pfunc = NULL; in handle_ctrl_proto() 510 if (pfunc == NULL) /* catch the above null pointer if unknown CP */ in handle_ctrl_proto() 513 if ((advance = (*pfunc)(ndo, tptr, len)) == 0) in handle_ctrl_proto()
|
H A D | print-lldp.c | 1343 const char * (*pfunc)(netdissect_options *, const u_char *); in lldp_network_addr_print() local 1353 pfunc = ipaddr_string; in lldp_network_addr_print() 1358 pfunc = ip6addr_string; in lldp_network_addr_print() 1363 pfunc = etheraddr_string; in lldp_network_addr_print() 1366 pfunc = NULL; in lldp_network_addr_print() 1370 if (!pfunc) { in lldp_network_addr_print() 1375 tok2str(af_values, "Unknown", af), af, (*pfunc)(ndo, tptr+1)); in lldp_network_addr_print()
|
/freebsd/usr.bin/netstat/ |
H A D | if.c | 385 intpr(void (*pfunc)(char *), int af) in intpr() 434 if (!pfunc) { in intpr() 462 if (pfunc) { in intpr() 464 (*pfunc)(name); in intpr()
|
/freebsd/contrib/netbsd-tests/fs/puffs/h_dtfs/ |
H A D | dtfs_vfsops.c | 109 int (*pfunc)(struct puffs_usermount *, const char *, enum vtype); member 153 if (rtypes[i].pfunc(pu, typestr, in dtfs_domount()
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_work.c | 272 dtrace_consume_probe_f *pfunc, dtrace_consume_rec_f *rfunc, void *arg) in dtrace_work() argument 316 if (dtrace_consume(dtp, fp, pfunc, rfunc, arg) == -1) in dtrace_work()
|
/freebsd/sys/contrib/device-tree/Bindings/i2c/ |
H A D | i2c-davinci.txt | 25 - ti,has-pfunc: boolean; if defined, it indicates that SoC supports PFUNC
|
/freebsd/contrib/sendmail/src/ |
H A D | usersmtp.c | 3177 reply(m, mci, e, timeout, pfunc, enhstat, rtype, rtext) in reply() argument 3182 void (*pfunc) __P((char *, bool, MAILER *, MCI *, ENVELOPE *)); 3387 if (pfunc != NULL) 3388 (*pfunc)(bufp, firstline, m, mci, e);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPython.cpp | 779 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( in GetMaxPositionalArgumentsForCallable() local 781 if (!pfunc.IsAllocated()) { in GetMaxPositionalArgumentsForCallable() 786 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()
|