Searched refs:pf (Results 1 - 25 of 148) sorted by relevance

123456

/freebsd-10.1-release/contrib/file/src/
H A Dfmtcheck.c57 #define RETURN(pf,f,r) do { \
58 *(pf) = (f); \
63 get_next_format_from_precision(const char **pf) argument
70 f = *pf;
78 if (!*f) RETURN(pf,f,FMTCHECK_UNKNOWN);
97 if (!*f) RETURN(pf,f,FMTCHECK_UNKNOWN);
100 RETURN(pf,f,FMTCHECK_UNKNOWN);
102 RETURN(pf,f,FMTCHECK_LONG);
104 RETURN(pf,f,FMTCHECK_QUAD);
105 RETURN(pf,
150 get_next_format_from_width(const char **pf) argument
169 get_next_format(const char **pf, EFT eft) argument
[all...]
/freebsd-10.1-release/lib/libc/gen/
H A Dfmtcheck.c83 #define RETURN(pf,f,r) do { \
84 *(pf) = (f); \
89 get_next_format_from_precision(const char **pf) argument
94 f = *pf;
98 if (!*f) RETURN(pf,f,FMTCHECK_UNKNOWN);
112 if (!*f) RETURN(pf,f,FMTCHECK_UNKNOWN);
140 if (!*f) RETURN(pf,f,FMTCHECK_UNKNOWN);
144 RETURN(pf,f,FMTCHECK_LONG);
146 RETURN(pf,f,FMTCHECK_QUAD);
148 RETURN(pf,
241 get_next_format_from_width(const char **pf) argument
260 get_next_format(const char **pf, EFT eft) argument
[all...]
/freebsd-10.1-release/lib/libutil/tests/
H A Dpidfile_test.c63 struct pidfh *pf; local
67 pf = pidfile_open(fn, 0600, &other);
68 if (pf == NULL && other != 0)
70 if (pf == NULL)
72 if (pidfile_write(pf) != 0) {
73 pidfile_close(pf);
77 pidfile_close(pf);
129 struct pidfh *pf = NULL; local
139 pf = pidfile_open(fn, 0600, &other);
140 if (pf
[all...]
/freebsd-10.1-release/sys/dev/pccard/
H A Dpccard.c87 static int pccard_ccr_read(struct pccard_function *pf, int ccr);
88 static void pccard_ccr_write(struct pccard_function *pf, int ccr, int val);
91 static void pccard_function_init(struct pccard_function *pf, int entry);
92 static void pccard_function_free(struct pccard_function *pf);
93 static int pccard_function_enable(struct pccard_function *pf);
94 static void pccard_function_disable(struct pccard_function *pf);
112 struct pccard_function *pf);
138 pccard_ccr_read(struct pccard_function *pf, int ccr) argument
140 return (bus_space_read_1(pf->pf_ccrt, pf
145 pccard_ccr_write(struct pccard_function *pf, int ccr, int val) argument
187 struct pccard_function *pf; local
255 pccard_probe_and_attach_child(device_t dev, device_t child, struct pccard_function *pf) argument
328 struct pccard_function *pf; local
452 struct pccard_function *pf = devi->pf; local
469 pccard_function_init(struct pccard_function *pf, int entry) argument
591 pccard_function_free(struct pccard_function *pf) argument
619 pccard_mfc_adjust_iobase(struct pccard_function *pf, bus_addr_t addr, bus_addr_t offset, bus_size_t size) argument
656 pccard_function_enable(struct pccard_function *pf) argument
771 pccard_function_disable(struct pccard_function *pf) argument
1004 struct pccard_function *pf = devi->pf; local
1024 struct pccard_function *pf = devi->pf; local
1055 struct pccard_function *pf = devi->pf; local
1071 struct pccard_function *pf = devi->pf; local
1121 struct pccard_function *pf; local
1223 struct pccard_function *pf = ivar->pf; local
1231 struct pccard_function *pf = (struct pccard_function*) arg; local
1270 struct pccard_function *pf = (struct pccard_function*) arg; local
1282 struct pccard_function *pf = ivar->pf; local
1309 struct pccard_function *pf = ivar->pf; local
1332 struct pccard_function *pf = ivar->pf; local
1363 struct pccard_function *pf = devi->pf; local
1389 struct pccard_function *pf = devi->pf; local
1428 struct pccard_function *pf = devi->pf; local
[all...]
H A Dpccard_cis_quirks.c285 struct pccard_function *pf, *pf_next, *pf_last; local
289 pf = NULL;
309 for (pf = STAILQ_FIRST(&sc->card.pf_head); pf != NULL;
310 pf = pf_next) {
311 for (cfe = STAILQ_FIRST(&pf->cfe_head); cfe != NULL;
316 pf_next = STAILQ_NEXT(pf, pf_list);
317 free(pf, M_DEVBUF);
324 if (pf_last == q->pf) {
331 STAILQ_INSERT_TAIL(&pf
[all...]
H A Dpccard_cis.c72 struct pccard_function *pf; member in struct:cis_state
95 state.pf = NULL;
481 struct pccard_function *pf; local
510 STAILQ_FOREACH(pf, &card->pf_head, pf_list) {
511 device_printf(dev, "function %d: ", pf->number);
513 switch (pf->function) {
551 printf("unknown (%d)", pf->function);
555 printf(", ccr addr %#x mask %#x\n", pf->ccr_base, pf->ccr_mask);
557 STAILQ_FOREACH(cfe, &pf
664 struct pccard_function *pf, *pfnext; local
1273 decode_funce(const struct pccard_tuple *tuple, struct pccard_function *pf) argument
[all...]
/freebsd-10.1-release/share/examples/pf/
H A DMakefile7 pf.conf \
10 FILESDIR= ${SHAREDIR}/examples/pf
/freebsd-10.1-release/usr.sbin/ftp-proxy/ftp-proxy/
H A DMakefile3 .PATH: ${.CURDIR}/../../../contrib/pf/ftp-proxy
10 CFLAGS+= -I${.CURDIR}/../../../contrib/pf/libevent
/freebsd-10.1-release/sys/dev/ixl/
H A Dif_ixl.c363 struct ixl_pf *pf; local
372 pf = device_get_softc(dev);
373 pf->dev = pf->osdep.dev = dev;
374 hw = &pf->hw;
380 vsi = &pf->vsi;
381 vsi->dev = pf->dev;
384 IXL_PF_LOCK_INIT(pf, device_get_nameunit(dev));
387 callout_init_mtx(&pf->timer, &pf
706 struct ixl_pf *pf = device_get_softc(dev); local
771 struct ixl_pf *pf = device_get_softc(dev); local
786 ixl_get_hw_capabilities(struct ixl_pf *pf) argument
922 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
1066 ixl_init_locked(struct ixl_pf *pf) argument
1171 struct ixl_pf *pf = arg; local
1221 struct ixl_pf *pf = arg; local
1329 struct ixl_pf *pf = arg; local
1370 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
1682 struct ixl_pf *pf = arg; local
1748 ixl_update_link_status(struct ixl_pf *pf) argument
1790 ixl_stop(struct ixl_pf *pf) argument
1817 ixl_assign_vsi_legacy(struct ixl_pf *pf) argument
1866 ixl_assign_vsi_msix(struct ixl_pf *pf) argument
1942 ixl_init_msix(struct ixl_pf *pf) argument
2040 ixl_configure_msix(struct ixl_pf *pf) argument
2097 ixl_configure_legacy(struct ixl_pf *pf) argument
2157 ixl_configure_itr(struct ixl_pf *pf) argument
2187 ixl_allocate_pci_resources(struct ixl_pf *pf) argument
2221 ixl_free_pci_resources(struct ixl_pf * pf) argument
2625 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
2672 ixl_setup_stations(struct ixl_pf *pf) argument
2941 ixl_add_hw_stats(struct ixl_pf *pf) argument
3126 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
3188 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
3212 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
3580 ixl_handle_mdd_event(struct ixl_pf *pf) argument
3742 ixl_update_stats_counters(struct ixl_pf *pf) argument
3944 struct ixl_pf *pf = context; local
3999 struct ixl_pf *pf; local
4016 ixl_print_debug_info(struct ixl_pf *pf) argument
4066 struct ixl_pf *pf = (struct ixl_pf *)vsi->back; local
4148 ixl_pf_reset_stats(struct ixl_pf *pf) argument
4234 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4295 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4338 ixl_set_advertised_speeds(struct ixl_pf *pf, int speeds) argument
4395 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4507 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4528 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4557 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4588 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4635 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4733 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
4814 struct ixl_pf *pf = (struct ixl_pf *)arg1; local
[all...]
/freebsd-10.1-release/sbin/pfctl/
H A Dpfctl.c117 char *pf_device = "/dev/pf";
253 errx(1, "pf already enabled");
262 fprintf(stderr, "pf enabled\n");
276 errx(1, "pf not enabled");
281 fprintf(stderr, "pf disabled\n");
296 fprintf(stderr, "pf: statistics cleared\n");
312 fprintf(stderr, "pf: interface flags reset\n");
1167 pfctl_add_pool(struct pfctl *pf, struct pf_pool *p, sa_family_t af) argument
1171 if ((pf->opts & PF_OPT_NOACTION) == 0) {
1172 if (ioctl(pf
1188 pfctl_add_rule(struct pfctl *pf, struct pf_rule *r, const char *anchor_call) argument
1235 pfctl_ruleset_trans(struct pfctl *pf, char *path, struct pf_anchor *a) argument
1265 pfctl_load_ruleset(struct pfctl *pf, char *path, struct pf_ruleset *rs, int rs_num, int depth) argument
1325 pfctl_load_rule(struct pfctl *pf, char *path, struct pf_rule *r, int depth) argument
1377 pfctl_add_altq(struct pfctl *pf, struct pf_altq *a) argument
1407 struct pfctl pf; local
1554 pfctl_init_options(struct pfctl *pf) argument
1587 pfctl_load_options(struct pfctl *pf) argument
1644 pfctl_set_limit(struct pfctl *pf, const char *opt, unsigned int limit) argument
1668 pfctl_load_limit(struct pfctl *pf, unsigned int index, unsigned int limit) argument
1686 pfctl_set_timeout(struct pfctl *pf, const char *opt, int seconds, int quiet) argument
1714 pfctl_load_timeout(struct pfctl *pf, unsigned int timeout, unsigned int seconds) argument
1729 pfctl_set_optimization(struct pfctl *pf, const char *opt) argument
1759 pfctl_set_logif(struct pfctl *pf, char *ifname) argument
1782 pfctl_load_logif(struct pfctl *pf, char *ifname) argument
1800 pfctl_set_hostid(struct pfctl *pf, u_int32_t hostid) argument
1817 pfctl_load_hostid(struct pfctl *pf, u_int32_t hostid) argument
1827 pfctl_set_debug(struct pfctl *pf, char *d) argument
1860 pfctl_load_debug(struct pfctl *pf, unsigned int level) argument
1870 pfctl_set_interface_flags(struct pfctl *pf, char *ifname, int flags, int how) argument
[all...]
/freebsd-10.1-release/sys/modules/pf/
H A DMakefile5 .PATH: ${.CURDIR}/../../netpfil/pf
7 KMOD= pf
8 SRCS= pf.c pf_if.c pf_lb.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \
/freebsd-10.1-release/tools/regression/pjdfstest/tests/truncate/
H A D11.t15 cp -pf `which sleep` ${n0}
/freebsd-10.1-release/libexec/tftp-proxy/
H A DMakefile3 .PATH: ${.CURDIR}/../../contrib/pf/tftp-proxy
/freebsd-10.1-release/usr.sbin/bsnmpd/modules/snmp_pf/
H A DMakefile5 MOD= pf
/freebsd-10.1-release/contrib/ntp/libntp/
H A Drecvbuff.c311 gen_fifo *pf; local
315 pf = fifo;
316 REQUIRE((NULL == pf->phead && NULL == pf->pptail) ||
317 (NULL != pf->phead && NULL != pf->pptail));
319 pptail = &pf->phead;
320 for (pthis = pf->phead;
326 REQUIRE(NULL == pf->pptail || pptail == pf
[all...]
/freebsd-10.1-release/tools/regression/pjdfstest/tests/open/
H A D20.t15 cp -pf `which sleep` ${n0}
/freebsd-10.1-release/sbin/pflogd/
H A DMakefile3 .PATH: ${.CURDIR}/../../contrib/pf/pflogd
/freebsd-10.1-release/bin/sh/
H A Dinput.c461 struct parsefile *pf; local
467 pf = (struct parsefile *)ckmalloc(sizeof (struct parsefile));
468 pf->prev = parsefile;
469 pf->fd = -1;
470 pf->strpush = NULL;
471 pf->basestrpush.prev = NULL;
472 parsefile = pf;
479 struct parsefile *pf = parsefile; local
482 if (pf->fd >= 0)
483 close(pf
[all...]
/freebsd-10.1-release/sys/netinet/
H A Dtcp_debug.c193 #define pf(f) { \ macro
199 pf(SYN); pf(ACK); pf(FIN); pf(RST); pf(PUSH); pf(URG);
/freebsd-10.1-release/usr.sbin/authpf/
H A DMakefile3 .PATH: ${.CURDIR}/../../contrib/pf/authpf
/freebsd-10.1-release/usr.sbin/ftp-proxy/libevent/
H A DMakefile3 .PATH: ${.CURDIR}/../../../contrib/pf/libevent
/freebsd-10.1-release/sys/dev/usb/template/
H A Dusb_template.c529 usb_hw_ep_match(const struct usb_hw_ep_profile *pf, argument
534 return (pf->support_control);
536 if ((pf->support_in && ep_dir_in) ||
537 (pf->support_out && !ep_dir_in)) {
538 if ((pf->support_interrupt && (ep_type == UE_INTERRUPT)) ||
539 (pf->support_isochronous && (ep_type == UE_ISOCHRONOUS)) ||
540 (pf->support_bulk && (ep_type == UE_BULK))) {
561 const struct usb_hw_ep_profile *pf; local
592 (ues->methods->get_hw_ep_profile) (ues->udev, &pf, n);
593 if (pf
676 const struct usb_hw_ep_profile *pf; local
848 const struct usb_hw_ep_profile *pf; local
[all...]
/freebsd-10.1-release/etc/periodic/security/
H A D520.pfdenied48 check_diff new_only pf ${TMP} "${host} pf denied packets:"
/freebsd-10.1-release/sys/netipx/
H A Dspx_debug.c158 #define pf(f) { if (flags & SPX_ ## f) { printf("%s%s", cp, "f"); cp = ","; } } macro
159 pf(SP); pf(SA); pf(OB); pf(EM);
/freebsd-10.1-release/crypto/openssl/crypto/asn1/
H A Dtasn_fre.c199 const ASN1_PRIMITIVE_FUNCS *pf; local
200 pf = it->funcs;
201 if (pf && pf->prim_free) {
202 pf->prim_free(pval, it);

Completed in 366 milliseconds

123456