Searched refs:ftype (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-current/sys/contrib/libnv/
H A Dcnvlist.c72 #define CNVLIST_GET(ftype, type, NVTYPE) \
73 ftype \
94 #define CNVLIST_GET_ARRAY(ftype, type, NVTYPE) \
95 ftype \
125 #define CNVLIST_TAKE(ftype, type, NVTYPE) \
126 ftype \
129 ftype value; \
137 value = (ftype)(intptr_t)nvpair_get_##type(cookie); \
153 #define CNVLIST_TAKE_ARRAY(ftype, type, NVTYPE) \
154 ftype \
[all...]
H A Ddnvlist.c56 #define DNVLIST_GET(ftype, type) \
57 ftype \
58 dnvlist_get_##type(const nvlist_t *nvl, const char *name, ftype defval) \
93 #define DNVLIST_TAKE(ftype, type) \
94 ftype \
95 dnvlist_take_##type(nvlist_t *nvl, const char *name, ftype defval) \
H A Dnvlist.c1882 #define NVLIST_GET(ftype, type, TYPE) \
1883 ftype \
1916 #define NVLIST_GET_ARRAY(ftype, type, TYPE) \
1917 ftype \
1939 #define NVLIST_TAKE(ftype, type, TYPE) \
1940 ftype \
1944 ftype value; \
1949 value = (ftype)(intptr_t)nvpair_get_##type(nvp); \
1981 #define NVLIST_TAKE_ARRAY(ftype, type, TYPE) \
1982 ftype \
[all...]
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dfile.c36 * @param ftype file existence type flags
41 check_existence(teOptFileType ftype, tOptions * pOpts, tOptDesc * pOD) argument
48 switch (ftype & FTYPE_MODE_EXIST_MASK) {
148 * arg: + teOptFileType + ftype + File handling type +
160 teOptFileType ftype, tuFileMode mode)
166 switch (ftype & FTYPE_MODE_EXIST_MASK) {
184 check_existence(ftype, pOpts, pOD);
186 switch (ftype & FTYPE_MODE_OPEN_MASK) {
159 optionFileCheck(tOptions * pOpts, tOptDesc * pOD, teOptFileType ftype, tuFileMode mode) argument
/freebsd-current/contrib/nvi/ex/
H A Dex_bang.c48 enum filtertype ftype; local
142 ftype = FILTER_BANG;
148 ftype = FILTER_RBANG;
152 &cmdp->addr1, &cmdp->addr2, &rm, ap->bp, ftype);
H A Dex_filter.c39 ex_filter(SCR *sp, EXCMD *cmdp, MARK *fm, MARK *tm, MARK *rp, CHAR_T *cmd, enum filtertype ftype) argument
79 if (ftype != FILTER_READ && pipe(input) < 0) {
170 if (ftype == FILTER_RBANG || ftype == FILTER_READ) {
171 if (ftype == FILTER_RBANG)
177 if (ftype == FILTER_READ) {
237 if (ftype == FILTER_WRITE) {
261 if (rval == 0 && ftype == FILTER_BANG &&
286 ftype == FILTER_READ && F_ISSET(sp, SC_VI) ? 1 : 0, 0) || rval);
/freebsd-current/sys/fs/cd9660/
H A Dcd9660_node.c99 struct buf *bp, enum ISO_FTYPE ftype)
107 if (isonum_711(ftype == ISO_FTYPE_HIGH_SIERRA?
161 struct buf *bp, enum ISO_FTYPE ftype)
178 if (ftype != ISO_FTYPE_HIGH_SIERRA
190 cd9660_tstamp_conv7(isodir->date,&inop->inode.iso_ctime,ftype);
199 cd9660_tstamp_conv7(u_char *pi, struct timespec *pu, enum ISO_FTYPE ftype) argument
210 if(ftype != ISO_FTYPE_HIGH_SIERRA)
98 cd9660_defattr(struct iso_directory_record *isodir, struct iso_node *inop, struct buf *bp, enum ISO_FTYPE ftype) argument
160 cd9660_deftstamp(struct iso_directory_record *isodir, struct iso_node *inop, struct buf *bp, enum ISO_FTYPE ftype) argument
/freebsd-current/sys/riscv/riscv/
H A Dtrap.c212 vm_prot_t ftype; local
263 ftype = VM_PROT_WRITE;
265 ftype = VM_PROT_EXECUTE;
267 ftype = VM_PROT_READ;
270 if (VIRT_IS_VALID(va) && pmap_fault(map->pmap, va, ftype))
273 error = vm_fault_trap(map, va, ftype, VM_FAULT_NORMAL, &sig, &ucode);
/freebsd-current/crypto/openssh/
H A Dmux.c530 format_forward(u_int ftype, struct Forward *fwd) argument
534 switch (ftype) {
560 fatal_f("unknown forward type %u", ftype);
689 u_int ftype; local
696 if ((r = sshbuf_get_u32(m, &ftype)) != 0 ||
729 (fwd_desc = format_forward(ftype, &fwd)));
731 if (ftype != MUX_FWD_LOCAL && ftype != MUX_FWD_REMOTE &&
732 ftype != MUX_FWD_DYNAMIC) {
733 logit_f("invalid forwarding type %u", ftype);
855 u_int ftype; local
1763 mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd) argument
[all...]
/freebsd-current/sys/fs/fdescfs/
H A Dfdesc_vnops.c139 fdesc_allocvp(fdntype ftype, unsigned fd_fd, int ix, struct mount *mp, argument
186 fd->fd_type = ftype;
189 if (ftype == Fdesc) {
245 fdntype ftype; member in struct:fdesc_get_ino_args
270 error = fdesc_allocvp(a->ftype, a->fd_fd, a->ix, mp, rvp);
347 arg.ftype = Fdesc;
/freebsd-current/contrib/unbound/services/
H A Dlisten_dnsport.c1116 * @param ftype: if fd is UDP.
1122 port_insert(struct listen_port** list, int s, enum listen_type ftype, argument
1131 item->ftype = ftype;
1469 if(ports->ftype == listen_type_udp ||
1470 ports->ftype == listen_type_udp_dnscrypt) {
1474 } else if(ports->ftype == listen_type_tcp ||
1475 ports->ftype == listen_type_tcp_dnscrypt) {
1480 ports->ftype, ports->pp2_enabled, cb, cb_arg,
1482 } else if(ports->ftype
[all...]
H A Dlisten_dnsport.h132 enum listen_type ftype; member in struct:listen_port
/freebsd-current/sys/arm/arm/
H A Dtrap-v6.c283 vm_prot_t ftype; local
487 ftype = (fsr & FSR_WNR) ? VM_PROT_WRITE : VM_PROT_READ;
489 ftype |= VM_PROT_EXECUTE;
497 rv = vm_fault_trap(map, va, ftype, VM_FAULT_NORMAL, &ksig.sig,
/freebsd-current/sys/i386/i386/
H A Dtrap.c764 vm_prot_t ftype; local
865 ftype = VM_PROT_WRITE;
867 ftype = VM_PROT_EXECUTE;
869 ftype = VM_PROT_READ;
872 rv = vm_fault_trap(map, eva, ftype, VM_FAULT_NORMAL, signo, ucode);
875 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) {
877 if (ftype == VM_PROT_READ)
/freebsd-current/sys/amd64/amd64/
H A Dtrap.c713 vm_prot_t ftype; local
836 ftype = VM_PROT_WRITE;
838 ftype = VM_PROT_EXECUTE;
840 ftype = VM_PROT_READ;
843 rv = vm_fault_trap(map, eva, ftype, VM_FAULT_NORMAL, signo, ucode);
846 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) {
848 if (ftype == VM_PROT_READ)
/freebsd-current/sys/arm64/arm64/
H A Dtrap.c261 vm_prot_t ftype; local
352 ftype = VM_PROT_EXECUTE;
362 ftype = VM_PROT_READ;
364 ftype = VM_PROT_WRITE;
369 error = vm_fault_trap(map, far, ftype, VM_FAULT_NORMAL, &sig, &ucode);
/freebsd-current/sys/powerpc/powerpc/
H A Dtrap.c768 vm_prot_t ftype; local
775 ftype = VM_PROT_EXECUTE;
777 ftype |= VM_PROT_READ;
785 ftype = VM_PROT_WRITE;
787 ftype = VM_PROT_READ;
790 if (radix_mmu && pmap_nofault(&p->p_vmspace->vm_pmap, eva, ftype) == 0)
831 rv = vm_fault_trap(map, eva, ftype, VM_FAULT_NORMAL, signo, ucode);
/freebsd-current/contrib/libxo/libxo/
H A Dlibxo.c5314 xo_class_name (int ftype) argument
5316 switch (ftype) {
5329 xo_tag_name (int ftype) argument
5331 switch (ftype) {
5340 xo_role_wants_default_format (int ftype) argument
5342 switch (ftype) {
5470 unsigned ftype = 0; local
5501 ftype = value;
5530 if (ftype != 0) {
5535 ftype
5900 unsigned ftype; local
6291 unsigned ftype; local
[all...]
/freebsd-current/usr.sbin/config/
H A Dmkmakefile.cc772 const char *ftype = NULL; local
776 ftype = "NORMAL";
784 "${%s_%c%s}", ftype,
/freebsd-current/sys/amd64/vmm/
H A Dvmm.c1586 int rv, ftype; local
1595 ftype = vme->u.paging.fault_type;
1596 KASSERT(ftype == VM_PROT_READ ||
1597 ftype == VM_PROT_WRITE || ftype == VM_PROT_EXECUTE,
1598 ("vm_handle_paging: invalid fault_type %d", ftype));
1600 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) {
1602 vme->u.paging.gpa, ftype);
1605 ftype
[all...]
/freebsd-current/contrib/lib9p/
H A Drequest.c367 const char *ftype; local
394 ftype = "";
397 ftype = "FLUSH requested pre-dispatch: ";
400 ftype = "FLUSH requested while running: ";
403 ftype = "FLUSH requested too late: ";
407 drop ? "DROP: " : "", ftype, sbuf_data(sb));
/freebsd-current/stand/lua/
H A Dcore.lua242 for file, ftype in lfs.dir("/boot") do
249 if ftype then
250 if ftype ~= lfs.DT_DIR then
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dexpand_path.c333 int ftype; member in struct:token
/freebsd-current/include/rpcsvc/
H A Dnfs_prot.x79 enum ftype {
111 ftype type; /* file type */
/freebsd-current/stand/libsa/
H A Dnfs.c748 uint32_t ftype, mode; local
750 ftype = ntohl(fp->fa.fa_type);
752 mode |= nfs_stat_types[ftype & 7];

Completed in 293 milliseconds

12