Home
last modified time | relevance | path

Searched refs:fh (Results 1 – 20 of 20) sorted by relevance

/f-stack/freebsd/arm/arm/
H A Dfiq.c88 fiq_claim(struct fiqhandler *fh) in fiq_claim() argument
94 if (fh->fh_size > 0x100) in fiq_claim()
111 if (fh->fh_regs != NULL) in fiq_claim()
112 fiq_setregs(fh->fh_regs); in fiq_claim()
117 fiq_installhandler(fh->fh_func, fh->fh_size); in fiq_claim()
133 fiq_release(struct fiqhandler *fh) in fiq_release() argument
145 if (fh == TAILQ_FIRST(&fiqhandler_stack)) { in fiq_release()
146 if (fh->fh_regs != NULL) in fiq_release()
147 fiq_getregs(fh->fh_regs); in fiq_release()
148 TAILQ_REMOVE(&fiqhandler_stack, fh, fh_list); in fiq_release()
[all …]
/f-stack/dpdk/lib/librte_ip_frag/
H A Drte_ipv6_fragmentation.c25 struct ipv6_extension_fragment *fh; in __fill_ipv6hdr_frag() local
31 fh = (struct ipv6_extension_fragment *) ++dst; in __fill_ipv6hdr_frag()
32 fh->next_header = src->proto; in __fill_ipv6hdr_frag()
33 fh->reserved = 0; in __fill_ipv6hdr_frag()
34 fh->frag_data = rte_cpu_to_be_16(RTE_IPV6_SET_FRAG_DATA(fofs, mf)); in __fill_ipv6hdr_frag()
35 fh->id = 0; in __fill_ipv6hdr_frag()
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_export.c35 zpl_encode_fh(struct inode *ip, __u32 *fh, int *max_len, struct inode *parent) argument
38 zpl_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len, int connectable)
44 fid_t *fid = (fid_t *)fh;
68 zpl_fh_to_dentry(struct super_block *sb, struct fid *fh, argument
71 fid_t *fid = (fid_t *)fh;
/f-stack/freebsd/tools/
H A Dmakesyscalls.lua203 fh:close()
225 if fh == nil then
292 io.close(fh)
306 if fh == nil then
321 io.close(fh)
399 fh:seek("set")
400 return fh:read("a")
497 if fh == nil then
535 io.close(fh)
1384 if fh == nil then
[all …]
/f-stack/freebsd/contrib/openzfs/scripts/
H A Dcstyle.pl180 my $fh = new IO::File $arg, "r";
181 if (!defined($fh)) {
184 &cstyle($arg, $fh);
185 close $fh;
/f-stack/freebsd/kern/
H A Dvfs_syscalls.c696 fhandle_t fh; in freebsd4_fhstatfs() local
827 fhandle_t fh; in freebsd11_fhstatfs() local
4330 fhandle_t fh; in kern_getfhat() local
4345 bzero(&fh, sizeof(fh)); in kern_getfhat()
4351 error = copyout(&fh, fhp, sizeof (fh)); in kern_getfhat()
4353 memcpy(fhp, &fh, sizeof(fh)); in kern_getfhat()
4389 fhandle_t fh; in kern_fhlinkat() local
4397 error = copyin(fhp, &fh, sizeof(fh)); in kern_fhlinkat()
4424 fhandle_t fh; in sys_fhreadlink() local
4434 error = copyin(uap->fhp, &fh, sizeof(fh)); in sys_fhreadlink()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_010_pos.ksh56 dd if=/dev/zero of=${mntpnt}/fh$objnum bs=512 count=5 seek=4 conv=notrunc
58 dd if=/dev/zero of=${mntpnt}/fh$objnum bs=512 count=4 seek=5 conv=notrunc
/f-stack/dpdk/examples/flow_classify/
H A Dflow_classify.c661 FILE *fh; in add_rules() local
668 fh = fopen(rule_path, "rb"); in add_rules()
669 if (fh == NULL) in add_rules()
673 ret = fseek(fh, 0, SEEK_SET); in add_rules()
679 while (fgets(buff, LINE_MAX, fh) != NULL) { in add_rules()
702 fclose(fh); in add_rules()
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-encode-fh-inode.m410 int encode_fh(struct inode *inode, __u32 *fh, int *max_len,
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dflow_classify.rst364 FILE *fh;
370 fh = fopen(rule_path, "rb");
371 if (fh == NULL)
375 fseek(fh, 0, SEEK_SET);
378 while (fgets(buff, LINE_MAX, fh) != NULL) {
401 fclose(fh);
/f-stack/freebsd/netinet6/
H A Dip6_input.c1632 struct ip6_frag fh; in ip6_nexthdr() local
1655 if (m->m_pkthdr.len < off + sizeof(fh)) in ip6_nexthdr()
1657 m_copydata(m, off, sizeof(fh), (caddr_t)&fh); in ip6_nexthdr()
1659 if (fh.ip6f_offlg & IP6F_OFF_MASK) in ip6_nexthdr()
1662 *nxtp = fh.ip6f_nxt; in ip6_nexthdr()
H A Dicmp6.c930 struct ip6_frag *fh; in icmp6_notify_error() local
1021 fh = (struct ip6_frag *)(mtod(m, caddr_t) + in icmp6_notify_error()
1029 if (fh->ip6f_offlg & IP6F_OFF_MASK) in icmp6_notify_error()
1033 nxt = fh->ip6f_nxt; in icmp6_notify_error()
/f-stack/app/nginx-1.16.1/auto/cc/
H A Dowc71 #NGX_USE_PCH="-fh=$NGX_OBJS/ngx_config.pch"
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_fastcgi_module.c1801 ngx_http_fastcgi_header_t *fh; in ngx_http_fastcgi_process_header() local
1816 fh = (ngx_http_fastcgi_header_t *) start; in ngx_http_fastcgi_process_header()
1817 fh->version = 1; in ngx_http_fastcgi_process_header()
1818 fh->type = NGX_HTTP_FASTCGI_STDERR; in ngx_http_fastcgi_process_header()
1819 fh->request_id_hi = 0; in ngx_http_fastcgi_process_header()
1820 fh->request_id_lo = 1; in ngx_http_fastcgi_process_header()
1821 fh->content_length_hi = (u_char) ((len >> 8) & 0xff); in ngx_http_fastcgi_process_header()
1822 fh->content_length_lo = (u_char) (len & 0xff); in ngx_http_fastcgi_process_header()
1823 fh->padding_length = 0; in ngx_http_fastcgi_process_header()
1824 fh->reserved = 0; in ngx_http_fastcgi_process_header()
/f-stack/dpdk/examples/l3fwd-acl/
H A Dmain.c1034 FILE *fh = fopen(rule_path, "rb"); in add_rules() local
1038 if (fh == NULL) in add_rules()
1042 while ((fgets(buff, LINE_MAX, fh) != NULL)) { in add_rules()
1053 val = fseek(fh, 0, SEEK_SET); in add_rules()
1072 while (fgets(buff, LINE_MAX, fh) != NULL) { in add_rules()
1121 fclose(fh); in add_rules()
/f-stack/dpdk/examples/ipsec-secgw/
H A Dipsec-secgw.c2529 struct ipv6_extension_fragment *fh; in rx_callback() local
2532 fh = rte_ipv6_frag_get_ipv6_fragment_header(iph); in rx_callback()
2533 if (fh != NULL) { in rx_callback()
2535 mb->l3_len = (uintptr_t)fh - (uintptr_t)iph + in rx_callback()
2536 sizeof(*fh); in rx_callback()
2540 mb, tm, iph, fh); in rx_callback()
2543 mb->l3_len = mb->l3_len - sizeof(*fh); in rx_callback()
/f-stack/freebsd/sys/
H A Dsyscallsubr.h142 int kern_fhstat(struct thread *td, fhandle_t fh, struct stat *buf);
143 int kern_fhstatfs(struct thread *td, fhandle_t fh, struct statfs *buf);
/f-stack/dpdk/app/test-acl/
H A Dmain.c344 #define dump_verbose(lvl, fh, fmt, args...) do { \ argument
346 fprintf(fh, fmt, ##args); \
/f-stack/dpdk/app/test-pmd/
H A Dconfig.c5225 FILE *fh = fopen(file_path, "wb"); in save_file() local
5227 if (fh == NULL) { in save_file()
5232 if (fwrite(buf, 1, size, fh) != size) { in save_file()
5233 fclose(fh); in save_file()
5238 fclose(fh); in save_file()
/f-stack/app/redis-5.0.5/deps/jemalloc/bin/
H A Djeprof.in4030 my $fh = shift;
4033 while (<$fh>) {
4041 my $fh = shift;