Home
last modified time | relevance | path

Searched refs:pfunc (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig81 if (!pfunc.IsAllocated())
108 if (!pfunc.IsAllocated())
150 if (!pfunc.IsAllocated()) {
195 if (!pfunc.IsAllocated())
226 if (!pfunc.IsAllocated())
298 if (!pfunc.IsAllocated())
306 result = pfunc();
375 if (!pfunc.IsAllocated())
399 if (!pfunc.IsAllocated())
500 if (!pfunc.IsAllocated())
[all …]
/freebsd/sys/powerpc/powermac/
H A Dtbgpio.c71 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 Ddrbg.c781 const OSSL_DISPATCH *pfunc; in ossl_rand_drbg_new() local
802 drbg->parent_enable_locking = OSSL_FUNC_rand_enable_locking(pfunc); in ossl_rand_drbg_new()
803 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_LOCK)) != NULL) in ossl_rand_drbg_new()
804 drbg->parent_lock = OSSL_FUNC_rand_lock(pfunc); in ossl_rand_drbg_new()
805 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_UNLOCK)) != NULL) in ossl_rand_drbg_new()
806 drbg->parent_unlock = OSSL_FUNC_rand_unlock(pfunc); in ossl_rand_drbg_new()
809 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_NONCE)) != NULL) in ossl_rand_drbg_new()
810 drbg->parent_nonce = OSSL_FUNC_rand_nonce(pfunc); in ossl_rand_drbg_new()
811 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_SEED)) != NULL) in ossl_rand_drbg_new()
812 drbg->parent_get_seed = OSSL_FUNC_rand_get_seed(pfunc); in ossl_rand_drbg_new()
[all …]
/freebsd/contrib/tcpdump/
H A Dprint-ppp.c417 u_int (*pfunc)(netdissect_options *, const u_char *, u_int); in handle_ctrl_proto() local
485 pfunc = print_lcp_config_options; in handle_ctrl_proto()
488 pfunc = print_ipcp_config_options; in handle_ctrl_proto()
491 pfunc = print_ip6cp_config_options; in handle_ctrl_proto()
494 pfunc = print_ccp_config_options; in handle_ctrl_proto()
497 pfunc = print_bacp_config_options; in handle_ctrl_proto()
504 pfunc = NULL; in handle_ctrl_proto()
508 if (pfunc == NULL) /* catch the above null pointer if unknown CP */ in handle_ctrl_proto()
511 if ((advance = (*pfunc)(ndo, tptr, len)) == 0) in handle_ctrl_proto()
H A Dprint-lldp.c1345 const char * (*pfunc)(netdissect_options *, const u_char *); in lldp_network_addr_print() local
1355 pfunc = ipaddr_string; in lldp_network_addr_print()
1360 pfunc = ip6addr_string; in lldp_network_addr_print()
1365 pfunc = etheraddr_string; in lldp_network_addr_print()
1368 pfunc = NULL; in lldp_network_addr_print()
1372 if (!pfunc) { in lldp_network_addr_print()
1377 tok2str(af_values, "Unknown", af), af, (*pfunc)(ndo, tptr+1)); in lldp_network_addr_print()
/freebsd/usr.bin/netstat/
H A Dif.c386 intpr(void (*pfunc)(char *), int af) in intpr()
435 if (!pfunc) { in intpr()
463 if (pfunc) { in intpr()
465 (*pfunc)(name); in intpr()
/freebsd/contrib/netbsd-tests/fs/puffs/h_dtfs/
H A Ddtfs_vfsops.c109 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 Ddt_work.c272 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 Di2c-davinci.txt25 - ti,has-pfunc: boolean; if defined, it indicates that SoC supports PFUNC
/freebsd/contrib/sendmail/src/
H A Dusersmtp.c3177 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 DScriptInterpreterPython.cpp774 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( in GetMaxPositionalArgumentsForCallable() local
776 if (!pfunc.IsAllocated()) { in GetMaxPositionalArgumentsForCallable()
781 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()