Searched refs:fpp (Results 1 - 23 of 23) sorted by relevance

/freebsd-10.1-release/usr.bin/mail/
H A Dpopen.c163 struct fp *fpp; local
165 if ((fpp = malloc(sizeof(*fpp))) == NULL)
167 fpp->fp = fp;
168 fpp->pipe = pipe;
169 fpp->pid = pid;
170 fpp->link = fp_head;
171 fp_head = fpp;
/freebsd-10.1-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_lookup.c216 ctf_lookup_by_id(ctf_file_t **fpp, ctf_id_t type) argument
218 ctf_file_t *fp = *fpp; /* caller passes in starting CTF container */
222 (void) ctf_set_errno(*fpp, ECTF_NOPARENT);
228 *fpp = fp; /* function returns ending CTF container */
/freebsd-10.1-release/sys/boot/ia64/ski/
H A Defi_stub.c162 uint64_t **fpp = addr; local
164 *fpp[0] += delta;
165 *fpp[1] += delta;
166 *fpp += delta >> 3;
/freebsd-10.1-release/sys/sys/
H A Dfiledesc.h168 struct file **fpp);
174 int needfcntl, struct file **fpp, cap_rights_t *haverightsp);
H A Dfile.h221 int fget(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp);
223 u_char *maxprotp, struct file **fpp);
225 struct file **fpp);
227 struct file **fpp);
/freebsd-10.1-release/sys/dev/xen/control/
H A Dcontrol.c203 int i, j, k, fpp, suspend_cancelled; local
277 fpp = PAGE_SIZE/sizeof(unsigned long);
278 for (i = 0, j = 0, k = -1; i < max_pfn; i += fpp, j++) {
279 if ((j % fpp) == 0) {
/freebsd-10.1-release/lib/libedit/
H A Del.c446 FILE **fpp; local
449 fpp = va_arg(ap, FILE **);
453 *fpp = el->el_infile;
456 *fpp = el->el_outfile;
459 *fpp = el->el_errfile;
/freebsd-10.1-release/crypto/openssl/crypto/bio/
H A Dbss_file.c277 FILE **fpp; local
405 fpp = (FILE **)ptr;
406 *fpp = (FILE *)b->ptr;
H A Dbio.h521 # define BIO_get_fp(b,fpp) BIO_ctrl(b,BIO_C_GET_FILE_PTR,0,(char *)fpp)
/freebsd-10.1-release/contrib/ipfilter/tools/
H A Dipfcomp.c171 frentry_t *f, **fpp; local
205 for (fpp = &g->fg_start; *fpp != NULL; )
206 fpp = &((*fpp)->fr_next);
207 *fpp = f;
/freebsd-10.1-release/usr.sbin/rrenumd/
H A Drrenumd.c222 config(FILE **fpp) argument
229 if (parse(fpp) < 0) {
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Dfasttrap.c446 fasttrap_provider_t **fpp, *fp; local
467 fpp = (fasttrap_provider_t **)&bucket->ftb_data;
469 while ((fp = *fpp) != NULL) {
471 fpp = &fp->ftp_next;
515 fpp = &fp->ftp_next;
517 *fpp = fp->ftp_next;
2596 fasttrap_provider_t **fpp, *fp; local
2600 fpp = (fasttrap_provider_t **)&bucket->ftb_data;
2601 while ((fp = *fpp) != NULL) {
2614 fpp
[all...]
/freebsd-10.1-release/sys/kern/
H A Duipc_mqueue.c2096 struct file **fpp, struct mqfs_node **ppn, struct mqueue **pmq)
2101 error = func(td, fd, rightsp, fpp);
2104 if (&mqueueops != (*fpp)->f_ops) {
2105 fdrop(*fpp, td);
2108 pn = (*fpp)->f_data;
2117 getmq(struct thread *td, int fd, struct file **fpp, struct mqfs_node **ppn, argument
2123 fpp, ppn, pmq);
2127 getmq_read(struct thread *td, int fd, struct file **fpp, argument
2133 fpp, ppn, pmq);
2137 getmq_write(struct thread *td, int fd, struct file **fpp, argument
2095 _getmq(struct thread *td, int fd, cap_rights_t *rightsp, _fgetf func, struct file **fpp, struct mqfs_node **ppn, struct mqueue **pmq) argument
[all...]
H A Dkern_descrip.c2356 int needfcntl, struct file **fpp, cap_rights_t *haverightsp)
2427 *fpp = fp;
2447 * If an error occured the non-zero error is returned and *fpp is set to
2448 * NULL. Otherwise *fpp is held and set and zero is returned. Caller is
2452 _fget(struct thread *td, int fd, struct file **fpp, int flags, argument
2460 *fpp = NULL;
2514 *fpp = fp;
2519 fget(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) argument
2522 return(_fget(td, fd, fpp, 0, rightsp, NULL));
2527 struct file **fpp)
2355 fget_unlocked(struct filedesc *fdp, int fd, cap_rights_t *needrightsp, int needfcntl, struct file **fpp, cap_rights_t *haverightsp) argument
2526 fget_mmap(struct thread *td, int fd, cap_rights_t *rightsp, u_char *maxprotp, struct file **fpp) argument
2534 fget_read(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) argument
2541 fget_write(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) argument
[all...]
H A Duipc_sem.c120 struct file **fpp);
604 struct file **fpp)
622 *fpp = fp;
603 ksem_get(struct thread *td, semid_t id, cap_rights_t *rightsp, struct file **fpp) argument
H A Dsys_generic.c1194 getselfd_cap(struct filedesc *fdp, int fd, struct file **fpp) argument
1200 return (fget_unlocked(fdp, fd, &rights, 0, fpp, NULL));
H A Duipc_syscalls.c162 struct file **fpp, u_int *fflagp)
176 *fpp = fp;
161 getsock_cap(struct filedesc *fdp, int fd, cap_rights_t *rightsp, struct file **fpp, u_int *fflagp) argument
H A Dvfs_syscalls.c4197 getvnode(struct filedesc *fdp, int fd, cap_rights_t *rightsp, struct file **fpp) argument
4222 *fpp = fp;
/freebsd-10.1-release/sys/netinet/
H A Dip_input.c1167 struct ipq *fpp; local
1169 fpp = fp;
1171 if(--fpp->ipq_ttl == 0) {
1173 fpp->ipq_nfrags);
1174 ip_freef(&V_ipq[i], fpp);
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dlynx-nat.c32 #include <sys/fpp.h>
H A Drs6000-tdep.c1764 CORE_ADDR fp, fpp, lr; local
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.c1047 ctf_file_t **fpp, ctf_id_t *tp)
1143 if (fpp != NULL)
1144 *fpp = rp_is_void ? lfp : rfp;
1046 dt_node_is_ptrcompat(const dt_node_t *lp, const dt_node_t *rp, ctf_file_t **fpp, ctf_id_t *tp) argument
/freebsd-10.1-release/sys/fs/nfsserver/
H A Dnfs_nfsdport.c2828 fp_getfvp(struct thread *p, int fd, struct file **fpp, struct vnode **vpp) argument
2840 *fpp = fp;

Completed in 205 milliseconds