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

123

/freebsd-11-stable/sys/contrib/libnv/
H A Dcnvlist.c70 #define CNVLIST_GET(ftype, type, NVTYPE) \
71 ftype \
92 #define CNVLIST_GET_ARRAY(ftype, type, NVTYPE) \
93 ftype \
123 #define CNVLIST_TAKE(ftype, type, NVTYPE) \
124 ftype \
127 ftype value; \
135 value = (ftype)(intptr_t)nvpair_get_##type(cookie); \
151 #define CNVLIST_TAKE_ARRAY(ftype, type, NVTYPE) \
152 ftype \
[all...]
H A Ddnvlist.c55 #define DNVLIST_GET(ftype, type) \
56 ftype \
57 dnvlist_get_##type(const nvlist_t *nvl, const char *name, ftype defval) \
92 #define DNVLIST_TAKE(ftype, type) \
93 ftype \
94 dnvlist_take_##type(nvlist_t *nvl, const char *name, ftype defval) \
/freebsd-11-stable/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-11-stable/sys/fs/cd9660/
H A Dcd9660_node.c113 cd9660_defattr(isodir, inop, bp, ftype)
117 enum ISO_FTYPE ftype;
125 if (isonum_711(ftype == ISO_FTYPE_HIGH_SIERRA?
178 cd9660_deftstamp(isodir,inop,bp,ftype)
182 enum ISO_FTYPE ftype;
199 if (ftype != ISO_FTYPE_HIGH_SIERRA
211 cd9660_tstamp_conv7(isodir->date,&inop->inode.iso_ctime,ftype);
220 cd9660_tstamp_conv7(pi,pu,ftype)
223 enum ISO_FTYPE ftype;
234 if(ftype !
[all...]
/freebsd-11-stable/contrib/binutils/gas/
H A Ditbl-parse.y139 field -> [','] ftype frange flags
143 ftype -> [ type | 'immed' | 'addr' ]
291 %type <num> number NUM ftype regtype pnum PNUM
333 ftype: label
336 DBGL2 (("ftype\n"));
352 ftype range flags
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_bang.c52 enum filtertype ftype; local
146 ftype = FILTER_BANG;
152 ftype = FILTER_RBANG;
156 &cmdp->addr1, &cmdp->addr2, &rm, ap->bp, ftype);
H A Dex_filter.c42 ex_filter(SCR *sp, EXCMD *cmdp, MARK *fm, MARK *tm, MARK *rp, CHAR_T *cmd, enum filtertype ftype) argument
82 if (ftype != FILTER_READ && pipe(input) < 0) {
173 if (ftype == FILTER_RBANG || ftype == FILTER_READ) {
174 if (ftype == FILTER_RBANG)
180 if (ftype == FILTER_READ)
239 if (ftype == FILTER_WRITE) {
263 if (rval == 0 && ftype == FILTER_BANG &&
288 ftype == FILTER_READ && F_ISSET(sp, SC_VI) ? 1 : 0, 0) || rval);
/freebsd-11-stable/usr.sbin/fmtree/
H A Dextern.h51 const char * ftype(u_int type);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dinfcall.c164 struct type *ftype = check_typedef (VALUE_TYPE (function)); local
165 enum type_code code = TYPE_CODE (ftype);
176 value_type = TYPE_TARGET_TYPE (ftype);
181 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
182 if (TYPE_CODE (ftype) == TYPE_CODE_FUNC
183 || TYPE_CODE (ftype) == TYPE_CODE_METHOD)
188 value_type = TYPE_TARGET_TYPE (ftype);
197 if (TYPE_LENGTH (ftype) == 1)
396 struct type *ftype local
[all...]
H A Dhpacc-abi.c95 struct type *ftype = TYPE_FN_FIELD_TYPE (f, j); /* method type */ local
168 vp = allocate_value (ftype);
169 VALUE_TYPE (vp) = ftype;
H A Dbuildsym.c261 struct type *ftype = SYMBOL_TYPE (symbol);
266 if (TYPE_NFIELDS (ftype) <= 0)
306 TYPE_NFIELDS (ftype) = nparams;
307 TYPE_FIELDS (ftype) = (struct field *)
308 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
325 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
326 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
258 struct type *ftype = SYMBOL_TYPE (symbol); local
H A Djv-lang.c475 struct type *ftype; local
478 ftype = type_from_class (temp);
479 if (TYPE_CODE (ftype) == TYPE_CODE_STRUCT)
480 ftype = lookup_pointer_type (ftype);
481 TYPE_FIELD_TYPE (type, i) = ftype;
/freebsd-11-stable/sys/riscv/riscv/
H A Dtrap.c173 vm_prot_t ftype; local
216 ftype = (VM_PROT_READ | VM_PROT_WRITE);
218 ftype = (VM_PROT_READ);
231 error = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
241 error = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
/freebsd-11-stable/sys/arm/arm/
H A Dtrap-v4.c181 vm_prot_t ftype; local
319 ftype = VM_PROT_WRITE;
326 ftype = VM_PROT_WRITE;
329 ftype = VM_PROT_READ | VM_PROT_WRITE;
331 ftype = VM_PROT_READ;
346 if (pmap_fault_fixup(vmspace_pmap(td->td_proc->p_vmspace), va, ftype,
353 error = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
365 printf("\nvm_fault(%p, %x, %x, 0) -> %x\n", map, va, ftype,
H A Dtrap-v6.c288 vm_prot_t ftype; local
486 ftype = (fsr & FSR_WNR) ? VM_PROT_WRITE : VM_PROT_READ;
488 ftype |= VM_PROT_EXECUTE;
500 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
/freebsd-11-stable/sys/i386/i386/
H A Dtrap.c775 vm_prot_t ftype; local
872 ftype = VM_PROT_WRITE;
875 ftype = VM_PROT_EXECUTE;
878 ftype = VM_PROT_READ;
881 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
884 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) {
886 if (ftype == VM_PROT_READ)
/freebsd-11-stable/sys/amd64/amd64/
H A Dtrap.c700 vm_prot_t ftype; local
798 ftype = VM_PROT_WRITE;
800 ftype = VM_PROT_EXECUTE;
802 ftype = VM_PROT_READ;
805 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
808 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) {
810 if (ftype == VM_PROT_READ)
/freebsd-11-stable/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd2.h116 typedef ftype nfsftype;
H A Dnfs_prot_freebsd3.h154 typedef ftype nfsftype;
/freebsd-11-stable/crypto/openssh/
H A Dmux.c521 format_forward(u_int ftype, struct Forward *fwd) argument
525 switch (ftype) {
551 fatal("%s: unknown forward type %u", __func__, ftype);
668 u_int ftype; local
675 if (buffer_get_int_ret(&ftype, m) != 0 ||
708 (fwd_desc = format_forward(ftype, &fwd)));
710 if (ftype != MUX_FWD_LOCAL && ftype != MUX_FWD_REMOTE &&
711 ftype != MUX_FWD_DYNAMIC) {
712 logit("%s: invalid forwarding type %u", __func__, ftype);
837 u_int ftype; local
1707 mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd) argument
[all...]
/freebsd-11-stable/sys/fs/fdescfs/
H A Dfdesc_vnops.c152 fdesc_allocvp(fdntype ftype, unsigned fd_fd, int ix, struct mount *mp, argument
200 fd->fd_type = ftype;
203 if (ftype == Fdesc && fmp->flags & FMNT_LINRDLNKF)
252 fdntype ftype; member in struct:fdesc_get_ino_args
267 error = fdesc_allocvp(a->ftype, a->fd_fd, a->ix, mp, rvp);
360 arg.ftype = Fdesc;
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dtrap.c690 vm_prot_t ftype; local
700 ftype = VM_PROT_EXECUTE;
702 ftype |= VM_PROT_READ;
710 ftype = VM_PROT_WRITE;
712 ftype = VM_PROT_READ;
738 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
/freebsd-11-stable/sys/arm64/arm64/
H A Dtrap.c155 vm_prot_t ftype; local
212 ftype = ((esr >> 6) & 1) ? VM_PROT_READ | VM_PROT_WRITE : VM_PROT_READ;
215 error = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
/freebsd-11-stable/contrib/unbound/services/
H A Dlisten_dnsport.h115 enum listen_type ftype; member in struct:listen_port
H A Dlisten_dnsport.c1004 * @param ftype: if fd is UDP.
1008 port_insert(struct listen_port** list, int s, enum listen_type ftype) argument
1016 item->ftype = ftype;
1280 if(ports->ftype == listen_type_udp ||
1281 ports->ftype == listen_type_udp_dnscrypt)
1284 else if(ports->ftype == listen_type_tcp ||
1285 ports->ftype == listen_type_tcp_dnscrypt)
1290 ports->ftype, cb, cb_arg);
1291 else if(ports->ftype
[all...]

Completed in 306 milliseconds

123