Home
last modified time | relevance | path

Searched refs:eof (Results 1 – 79 of 79) sorted by relevance

/linux-4.4.14/drivers/staging/rtl8188eu/include/
Drtw_debug.h122 int *eof, void *data);
126 int *eof, void *data);
132 int *eof, void *data);
139 int *eof, void *data);
142 int *eof, void *data);
145 int *eof, void *data);
149 int *eof, void *data);
152 int *eof, void *data);
155 int *eof, void *data);
158 int *eof, void *data);
[all …]
/linux-4.4.14/drivers/staging/rtl8188eu/core/
Drtw_debug.c27 int *eof, void *data) in proc_get_drv_version() argument
33 *eof = 1; in proc_get_drv_version()
39 int *eof, void *data) in proc_get_write_reg() argument
41 *eof = 1; in proc_get_write_reg()
88 int *eof, void *data) in proc_get_read_reg() argument
96 *eof = 1; in proc_get_read_reg()
115 *eof = 1; in proc_get_read_reg()
148 int *eof, void *data) in proc_get_fwstate() argument
158 *eof = 1; in proc_get_fwstate()
164 int *eof, void *data) in proc_get_sec_info() argument
[all …]
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_fcoe.c45 u8 eof = 0; in cxgb_fcoe_sof_eof_supported() local
52 skb_copy_bits(skb, skb->len - 4, &eof, 1); in cxgb_fcoe_sof_eof_supported()
54 if ((eof != FC_EOF_N) && (eof != FC_EOF_T)) { in cxgb_fcoe_sof_eof_supported()
55 dev_err(adap->pdev_dev, "Unsupported EOF 0x%x\n", eof); in cxgb_fcoe_sof_eof_supported()
/linux-4.4.14/drivers/scsi/fnic/
Dcq_exch_desc.h66 u8 eof; member
98 u8 *eof, in cq_fcp_rq_desc_dec() argument
130 *eof = desc_ptr->eof; in cq_fcp_rq_desc_dec()
Dfnic_fcs.c810 u8 eof = 0; in fnic_rq_cmpl_frame_recv() local
825 &tmpl, &fcp_bytes_written, &sof, &eof, in fnic_rq_cmpl_frame_recv()
832 fr_eof(fp) = eof; in fnic_rq_cmpl_frame_recv()
/linux-4.4.14/drivers/staging/lustre/lustre/include/
Dlprocfs_status.h709 int *eof, void *data);
714 int *eof, void *data);
719 int *eof, void *data);
724 int *eof, void *data);
728 int *eof, void *data);
732 int count, int *eof, void *data);
737 int count, int *eof, void *data);
741 int count, int *eof, void *data);
746 int count, int *eof, void *data);
751 int count, int *eof, void *data);
[all …]
/linux-4.4.14/drivers/scsi/
Dst.c859 if (STps->eof == ST_FM_HIT) { in flush_buffer()
862 STps->eof = ST_NOEOF; in flush_buffer()
871 } else if (STps->eof == ST_FM_HIT) { in flush_buffer()
875 STps->eof = ST_NOEOF; in flush_buffer()
942 STps->eof = ST_NOEOF; in reset_state()
1078 STps->eof = ST_NOEOF; in check_tape()
1407 STps->eof = ST_FM; in st_flush()
1424 else if (STps->eof == ST_FM_HIT) { in st_flush()
1430 STps->eof = ST_FM; in st_flush()
1432 STps->eof = ST_NOEOF; in st_flush()
[all …]
Dosst.c698 STps->eof = ST_FM_HIT; in osst_verify_frame()
714 STps->eof = ST_EOD_1; in osst_verify_frame()
734 STps->eof = ST_NOEOF; in osst_verify_frame()
1156 return (STps->eof); in osst_get_logical_frame()
1257 if (debugging || STps->eof) in osst_get_logical_frame()
1260 name, frame_seq_number, STp->frame_seq_number, STps->eof); in osst_get_logical_frame()
1264 return (STps->eof); in osst_get_logical_frame()
1306 if (STps->eof == ST_FM_HIT) in osst_seek_logical_blk()
1335 if (STps->eof == ST_FM_HIT) { in osst_seek_logical_blk()
1344 STps->eof = (STp->first_frame_position >= STp->eod_frame_ppos)?ST_EOD:ST_NOEOF; in osst_seek_logical_blk()
[all …]
Dst.h87 unsigned char eof; member
/linux-4.4.14/fs/nfs/objlayout/
Dobjlayout.c255 status, hdr->res.eof, sync); in objlayout_read_done()
275 loff_t eof; in objlayout_read_pagelist() local
277 eof = i_size_read(inode); in objlayout_read_pagelist()
278 if (unlikely(offset + count > eof)) { in objlayout_read_pagelist()
279 if (offset >= eof) { in objlayout_read_pagelist()
282 hdr->res.eof = 1; in objlayout_read_pagelist()
286 count = eof - offset; in objlayout_read_pagelist()
289 hdr->res.eof = (offset + count) >= eof; in objlayout_read_pagelist()
295 __func__, inode->i_ino, offset, count, hdr->res.eof); in objlayout_read_pagelist()
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
Di40e_fcoe.c95 static inline bool i40e_fcoe_eof_is_supported(u8 eof) in i40e_fcoe_eof_is_supported() argument
97 return (eof == FC_EOF_N) || (eof == FC_EOF_T) || in i40e_fcoe_eof_is_supported()
98 (eof == FC_EOF_NI) || (eof == FC_EOF_A); in i40e_fcoe_eof_is_supported()
105 static inline int i40e_fcoe_fc_eof(struct sk_buff *skb, u8 *eof) in i40e_fcoe_fc_eof() argument
108 skb_copy_bits(skb, skb->len - 4, eof, 1); in i40e_fcoe_fc_eof()
110 if (!i40e_fcoe_eof_is_supported(*eof)) in i40e_fcoe_fc_eof()
123 static inline u32 i40e_fcoe_ctxt_eof(u8 eof) in i40e_fcoe_ctxt_eof() argument
125 switch (eof) { in i40e_fcoe_ctxt_eof()
1278 u32 tx_flags, u8 hdr_len, u8 eof) in i40e_fcoe_tx_map() argument
1296 td_cmd |= (I40E_TX_DESC_CMD_FCOET | i40e_fcoe_ctxt_eof(eof)); in i40e_fcoe_tx_map()
[all …]
/linux-4.4.14/fs/xfs/
Dxfs_bmap_util.h33 int whichfork, int *eof);
50 int rt, int eof, int delay, int convert,
Dxfs_iomap.c53 int eof, error; in xfs_iomap_eof_align_last_fsb() local
86 error = xfs_bmap_eof(ip, new_last_fsb, XFS_DATA_FORK, &eof); in xfs_iomap_eof_align_last_fsb()
89 if (eof) in xfs_iomap_eof_align_last_fsb()
Dxfs_bmap_util.c180 align, 1, ap->eof, 0, in xfs_bmap_rtalloc()
217 if (ap->eof && ap->offset == 0) { in xfs_bmap_rtalloc()
284 int *eof) in xfs_bmap_eof() argument
289 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, eof); in xfs_bmap_eof()
290 if (error || *eof) in xfs_bmap_eof()
293 *eof = endoff >= rec.br_startoff + rec.br_blockcount; in xfs_bmap_eof()
/linux-4.4.14/arch/mips/alchemy/common/
Ddma.c101 int length, int *eof, void *data) in au1000_dma_read_proc() argument
115 *eof = 1; in au1000_dma_read_proc()
122 *eof = 1; in au1000_dma_read_proc()
/linux-4.4.14/fs/cachefiles/
Drdwr.c879 loff_t pos, eof; in cachefiles_write_page() local
907 eof = object->fscache.store_limit_l; in cachefiles_write_page()
908 if (pos >= eof) in cachefiles_write_page()
922 if (eof & ~PAGE_MASK) { in cachefiles_write_page()
923 if (eof - pos < PAGE_SIZE) { in cachefiles_write_page()
925 pos, eof); in cachefiles_write_page()
926 len = eof - pos; in cachefiles_write_page()
927 ASSERTCMP(pos + len, ==, eof); in cachefiles_write_page()
/linux-4.4.14/lib/zlib_deflate/
Ddeftree.c796 int eof /* true if this is the last block for a file */ in zlib_tr_stored_block() argument
799 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ in zlib_tr_stored_block()
860 int eof /* true if this is the last block for a file */ argument
910 if (eof && s->compressed_len == 0L) { /* force stored file */
912 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
935 zlib_tr_stored_block(s, buf, stored_len, eof);
942 send_bits(s, (STATIC_TREES<<1)+eof, 3);
946 send_bits(s, (DYN_TREES<<1)+eof, 3);
955 if (eof) {
960 s->compressed_len-7*eof));
Ddefutil.h279 int eof);
282 int eof);
Ddeflate.c827 #define FLUSH_BLOCK_ONLY(s, eof) { \ argument
832 (eof)); \
839 #define FLUSH_BLOCK(s, eof) { \ argument
840 FLUSH_BLOCK_ONLY(s, eof); \
841 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
/linux-4.4.14/security/tomoyo/
Dcommon.c734 if (head->r.eof) in tomoyo_read_profile()
752 head->r.eof = true; in tomoyo_read_profile()
894 if (head->r.eof) in tomoyo_read_manager()
907 head->r.eof = true; in tomoyo_read_manager()
1006 head->r.eof = 1; in tomoyo_select_domain()
1580 if (head->r.eof) in tomoyo_read_domain()
1618 head->r.eof = true; in tomoyo_read_domain()
1630 head->r.eof = false; in tomoyo_write_pid()
1654 head->r.eof = true; in tomoyo_read_pid()
1657 if (head->r.w_pos || head->r.eof) in tomoyo_read_pid()
[all …]
Dcommon.h810 bool eof; member
/linux-4.4.14/fs/cifs/
Dcache.c226 u64 eof; member
261 auxdata.eof = cifsi->server_eof; in cifs_fscache_inode_get_aux()
285 auxdata.eof = cifsi->server_eof; in cifs_fscache_inode_check_aux()
Dsmb2inode.c255 __le64 eof = cpu_to_le64(size); in smb2_set_path_size() local
257 FILE_WRITE_DATA, FILE_OPEN, 0, &eof, in smb2_set_path_size()
Dsmb2proto.h150 __le64 *eof, bool is_fallocate);
Dcifsproto.h108 extern bool is_size_safe_to_change(struct cifsInodeInfo *, __u64 eof);
Dfile.c3303 u64 eof; in cifs_readpages_read_into_pages() local
3309 eof = CIFS_I(rdata->mapping->host)->server_eof; in cifs_readpages_read_into_pages()
3310 eof_index = eof ? (eof - 1) >> PAGE_CACHE_SHIFT : 0; in cifs_readpages_read_into_pages()
3311 cifs_dbg(FYI, "eof=%llu eof_index=%lu\n", eof, eof_index); in cifs_readpages_read_into_pages()
Dsmb2ops.c793 __le64 eof = cpu_to_le64(size); in smb2_set_file_size() local
810 cfile->fid.volatile_fid, cfile->pid, &eof, false); in smb2_set_file_size()
Dsmb2pdu.c2628 u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc) in SMB2_set_eof() argument
2634 info.EndOfFile = *eof; in SMB2_set_eof()
/linux-4.4.14/drivers/thunderbolt/
Dnhi_regs.h36 u32 eof:4; member
Dctl.c159 if (WARN(type != pkg->frame.eof, "wrong eof (expected %#x, got %#x)\n", in check_header()
160 type, pkg->frame.eof)) in check_header()
228 if (pkg->frame.eof == TB_CFG_PKG_ERROR) in parse_header()
356 pkg->frame.eof = type; in tb_ctl_tx()
423 if (frame->eof == TB_CFG_PKG_EVENT) { in tb_ctl_rx_callback()
Dnhi.h61 u32 eof:4; /* TX:in, RX: out */ member
Dnhi.c147 descriptor->eof = frame->eof; in ring_write_descriptors()
189 frame->eof = ring->descriptors[ring->tail].eof; in ring_work()
/linux-4.4.14/drivers/media/pci/cx18/
Dcx18-fileops.c617 int eof = test_bit(CX18_F_S_STREAMOFF, &s->s_flags); in cx18_v4l2_enc_poll() local
621 if (!eof && !test_bit(CX18_F_S_STREAMING, &s->s_flags) && in cx18_v4l2_enc_poll()
642 if (eof && videobuf_poll == POLLERR) in cx18_v4l2_enc_poll()
656 if (eof) in cx18_v4l2_enc_poll()
666 int eof = test_bit(CX18_F_S_STREAMOFF, &s->s_flags); in cx18_v4l2_mmap() local
672 if (!eof && !test_bit(CX18_F_S_STREAMING, &s->s_flags)) { in cx18_v4l2_mmap()
/linux-4.4.14/drivers/isdn/hisax/
Dhfc_usb.c689 static __u8 eof[8]; in rx_iso_complete() local
729 eof[5]); in rx_iso_complete()
744 eof[fifon] = buf[0] & 1; in rx_iso_complete()
749 eof[fifon] : 0); in rx_iso_complete()
753 maxlen) ? eof[fifon] : in rx_iso_complete()
857 static __u8 eof[8]; in rx_int_complete() local
882 eof[5]); in rx_int_complete()
891 eof[fifon] = buf[0] & 1; in rx_int_complete()
896 (len < maxlen) ? eof[fifon] : 0); in rx_int_complete()
899 (len < maxlen) ? eof[fifon] : 0); in rx_int_complete()
/linux-4.4.14/kernel/power/
Dswap.c1145 int eof = 0; in load_image_lzo() local
1278 for (i = 0; !eof && i < want; i++) { in load_image_lzo()
1289 eof = 1; in load_image_lzo()
1311 if (eof) in load_image_lzo()
1312 eof = 2; in load_image_lzo()
1335 if (eof > 1) { in load_image_lzo()
1366 if (eof) in load_image_lzo()
1367 eof = 2; in load_image_lzo()
/linux-4.4.14/fs/xfs/libxfs/
Dxfs_bmap.c1531 int eof; /* hit end of file */ in xfs_bmap_last_before() local
1552 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got, in xfs_bmap_last_before()
1554 if (eof || xfs_bmbt_get_startoff(ep) > bno) { in xfs_bmap_last_before()
3182 int eof, /* is extent at end-of-file? */ in xfs_bmap_extsize_align() argument
3208 if (!delay && !eof && in xfs_bmap_extsize_align()
3265 if (!eof && gotp->br_startoff != NULLFILEOFF) { in xfs_bmap_extsize_align()
3273 if (!eof && in xfs_bmap_extsize_align()
3338 if (!eof && gotp->br_startoff != NULLFILEOFF) in xfs_bmap_extsize_align()
3376 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF && in xfs_bmap_adjacent()
3395 else if (!ap->eof) { in xfs_bmap_adjacent()
[all …]
Dxfs_dir2_sf.c446 int eof; /* reached end of old dir */ in xfs_dir2_sf_addname_hard() local
474 eof = (char *)oldsfep == &buf[old_isize]; in xfs_dir2_sf_addname_hard()
475 !eof; in xfs_dir2_sf_addname_hard()
478 eof = (char *)oldsfep == &buf[old_isize]) { in xfs_dir2_sf_addname_hard()
514 if (!eof) { in xfs_dir2_sf_addname_hard()
Dxfs_bmap.h53 bool eof; /* set if allocating past last extent */ member
/linux-4.4.14/fs/nfs/
Ddir.c169 unsigned int eof:1; member
254 if (entry->eof != 0) in nfs_readdir_add_to_array()
280 desc->eof = 1; in nfs_readdir_search_for_pos()
334 desc->eof = 1; in nfs_readdir_search_for_cookie()
568 } while (!entry->eof); in nfs_readdir_page_filler()
571 if (count == 0 || (status == -EBADCOOKIE && entry->eof != 0)) { in nfs_readdir_page_filler()
627 entry.eof = 0; in nfs_readdir_xdr_to_array()
779 desc->eof = 1; in nfs_do_filldir()
791 desc->eof = 1; in nfs_do_filldir()
904 if (*desc->dir_cookie && desc->eof == 0) { in nfs_readdir()
[all …]
Dnfs3xdr.c1595 u32 eof, count, ocount, recvd; in decode_read3resok() local
1602 eof = be32_to_cpup(p++); in decode_read3resok()
1610 result->eof = eof; in decode_read3resok()
1621 eof = 0; in decode_read3resok()
1964 entry->eof = 1; in nfs3_decode_dirent()
Dnfs2xdr.c119 result->eof = 0; /* NFSv2 does not pass EOF flag on the wire. */ in decode_nfsdata()
930 entry->eof = 1; in nfs2_decode_dirent()
Dread.c267 if (hdr->res.eof) { in nfs_readpage_result()
Dpnfs.h218 unsigned int eof; member
Dproc.c592 hdr->res.eof = 1; in nfs_read_done()
Dpagelist.c597 hdr->res.eof = 0; in nfs_pgio_rpcsetup()
Dnfs4xdr.c5169 uint32_t count, eof, recvd; in decode_read() local
5178 eof = be32_to_cpup(p++); in decode_read()
5185 eof = 0; in decode_read()
5187 res->eof = eof; in decode_read()
7322 entry->eof = 1; in nfs4_decode_dirent()
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
Dnvm.c356 const u8 *eof, *temp; in iwl_mvm_read_external_nvm() local
399 eof = fw_entry->data + fw_entry->size; in iwl_mvm_read_external_nvm()
430 if (file_sec->data > eof) { in iwl_mvm_read_external_nvm()
467 if (file_sec->data + section_size > eof) { in iwl_mvm_read_external_nvm()
/linux-4.4.14/net/sunrpc/
Drpc_pipe.c668 int start, int eof) in __rpc_depopulate() argument
675 for (i = start; i < eof; i++) { in __rpc_depopulate()
700 int start, int eof) in rpc_depopulate() argument
705 __rpc_depopulate(parent, files, start, eof); in rpc_depopulate()
711 int start, int eof, in rpc_populate() argument
719 for (i = start; i < eof; i++) { in rpc_populate()
745 __rpc_depopulate(parent, files, start, eof); in rpc_populate()
/linux-4.4.14/drivers/net/ethernet/emulex/benet/
Dbe_ethtool.c241 u32 data_read = 0, eof; in lancer_cmd_get_file_len() local
249 file_name, &data_read, &eof, in lancer_cmd_get_file_len()
260 u32 eof = 0; in lancer_cmd_read_file() local
274 while ((total_read_len < buf_len) && !eof) { in lancer_cmd_read_file()
280 &read_len, &eof, &addn_status); in lancer_cmd_read_file()
284 eof &= LANCER_READ_FILE_EOF_MASK; in lancer_cmd_read_file()
Dbe_cmds.h1400 u8 eof; member
1459 u32 eof; member
2333 u32 *data_read, u32 *eof, u8 *addn_status);
Dbe_cmds.c2327 eof, ctxt, 1); in lancer_cmd_write_object()
2330 eof, ctxt, 0); in lancer_cmd_write_object()
2443 u32 *data_read, u32 *eof, u8 *addn_status) in lancer_cmd_read_object() argument
2478 *eof = le32_to_cpu(resp->eof); in lancer_cmd_read_object()
/linux-4.4.14/drivers/media/usb/gspca/
Dkinect.c401 uint8_t eof = sd->stream_flag | 5; in sd_pkt_scan() local
418 else if (hdr->flag == eof) in sd_pkt_scan()
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/
Dixgbe_fcoe.c520 u8 sof, eof; in ixgbe_fso() local
554 skb_copy_bits(skb, skb->len - 4, &eof, 1); in ixgbe_fso()
556 switch (eof) { in ixgbe_fso()
575 dev_warn(tx_ring->dev, "unknown eof = 0x%x\n", eof); in ixgbe_fso()
/linux-4.4.14/fs/
Dread_write.c86 loff_t maxsize, loff_t eof) in generic_file_llseek_size() argument
90 offset += eof; in generic_file_llseek_size()
115 if (offset >= eof) in generic_file_llseek_size()
123 if (offset >= eof) in generic_file_llseek_size()
125 offset = eof; in generic_file_llseek_size()
/linux-4.4.14/drivers/staging/lustre/lustre/mgc/
Dmgc_request.c1295 bool eof = true; in mgc_process_recover_log() local
1378 eof = res->mcr_offset == res->mcr_size; in mgc_process_recover_log()
1381 res->mcr_offset, eof == false); in mgc_process_recover_log()
1395 if (!eof) in mgc_process_recover_log()
1432 if (rc == 0 && !eof) in mgc_process_recover_log()
/linux-4.4.14/drivers/isdn/hardware/mISDN/
Dhfcsusb.c980 static __u8 eof[8]; in rx_iso_complete() local
1051 eof[fifon] = buf[0] & 1; in rx_iso_complete()
1055 ? eof[fifon] : 0); in rx_iso_complete()
1059 eof[fifon] : 0); in rx_iso_complete()
1098 static __u8 eof[8]; in rx_int_complete() local
1142 eof[fifon] = buf[0] & 1; in rx_int_complete()
1147 (len < maxlen) ? eof[fifon] : 0); in rx_int_complete()
1150 (len < maxlen) ? eof[fifon] : 0); in rx_int_complete()
/linux-4.4.14/drivers/net/wireless/hostap/
Dhostap_proc.c304 int count, int *eof, void *data) in prism2_io_debug_proc_read() argument
311 *eof = 1; in prism2_io_debug_proc_read()
/linux-4.4.14/fs/ncpfs/
Dncplib_kernel.h191 int eof; member
Ddir.c450 if (!PageUptodate(page) || !ctl.head.eof) in ncp_readdir()
535 ctl.head.eof = 0; in ncp_readdir()
551 ctl.head.eof = ctl.valid; in ncp_readdir()
/linux-4.4.14/fs/nfsd/
Dxdr3.h152 int eof; member
Dnfs4xdr.c3347 u32 eof; in nfsd4_encode_splice_read() local
3368 eof = (read->rd_offset + maxcount >= in nfsd4_encode_splice_read()
3371 *(p++) = htonl(eof); in nfsd4_encode_splice_read()
3406 u32 eof; in nfsd4_encode_readv() local
3445 eof = (read->rd_offset + maxcount >= in nfsd4_encode_readv()
3448 tmp = htonl(eof); in nfsd4_encode_readv()
Dnfs3proc.c171 resp->eof = (argp->offset + resp->count) >= inode->i_size; in nfsd3_proc_read()
Dnfs3xdr.c700 *p++ = htonl(resp->eof); in nfs3svc_encode_readres()
/linux-4.4.14/arch/mips/include/asm/mach-au1x00/
Dau1000_dma.h126 int length, int *eof, void *data);
/linux-4.4.14/drivers/media/pci/ivtv/
Divtv-fileops.c773 int eof = test_bit(IVTV_F_S_STREAMOFF, &s->s_flags); in ivtv_v4l2_enc_poll() local
777 if (!eof && !test_bit(IVTV_F_S_STREAMING, &s->s_flags) && in ivtv_v4l2_enc_poll()
803 if (eof) in ivtv_v4l2_enc_poll()
/linux-4.4.14/drivers/hwtracing/intel_th/
Dmsu.c85 unsigned int eof; member
323 iter->eof++; in msc_iter_win_advance()
384 if (iter->eof) in msc_buffer_iterate()
/linux-4.4.14/drivers/char/xillybus/
Dxillybus_core.c1568 int eof; in xillybus_release() local
1617 eof = channel->wr_eof; in xillybus_release()
1632 if (buf_idx == eof) in xillybus_release()
/linux-4.4.14/include/linux/
Dnfs_xdr.h589 int eof; /* used by read */ member
666 int eof; member
Dfs.h2670 int whence, loff_t maxsize, loff_t eof);
/linux-4.4.14/Documentation/dvb/
Dfaq.txt159 eof
/linux-4.4.14/drivers/scsi/fcoe/
Dfcoe.c1600 u8 sof, eof; in fcoe_xmit() local
1619 eof = fr_eof(fp); in fcoe_xmit()
1652 cp->fcoe_eof = eof; in fcoe_xmit()
/linux-4.4.14/drivers/scsi/bnx2fc/
Dbnx2fc_fcoe.c256 u8 sof, eof; in bnx2fc_xmit() local
286 eof = fr_eof(fp); in bnx2fc_xmit()
336 cp->fcoe_eof = eof; in bnx2fc_xmit()
/linux-4.4.14/fs/ubifs/
Dtnc.c1512 bu->eof = 0; in ubifs_tnc_get_bu_keys()
1589 bu->eof = 1; in ubifs_tnc_get_bu_keys()
1609 if (bu->eof) { in ubifs_tnc_get_bu_keys()
Dubifs.h811 int eof; member
Dfile.c728 if (bu->eof) { in ubifs_do_bulk_read()
/linux-4.4.14/drivers/net/ethernet/cadence/
Dmacb.c1170 unsigned int eof = 1; in macb_tx_map() local
1257 if (eof) { in macb_tx_map()
1259 eof = 0; in macb_tx_map()
/linux-4.4.14/fs/nfs/blocklayout/
Dblocklayout.c303 header->res.eof = 1; in bl_read_pagelist()
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
Dfile.c2508 loff_t retval, eof = 0; in ll_file_seek() local
2521 eof = i_size_read(inode); in ll_file_seek()
2525 ll_file_maxbytes(inode), eof); in ll_file_seek()
/linux-4.4.14/drivers/media/dvb-frontends/drx39xyj/
Ddrxj.c11647 goto eof; in drx_check_firmware()
11668 goto eof; in drx_check_firmware()
11675 goto eof; in drx_check_firmware()
11694 goto eof; in drx_check_firmware()
11699 eof: in drx_check_firmware()