Lines Matching defs:viter
1004 extern void vmw_piter_start(struct vmw_piter *viter,
1011 * @viter: Pointer to the iterator to advance.
1015 static inline bool vmw_piter_next(struct vmw_piter *viter)
1017 return viter->next(viter);
1023 * @viter: Pointer to the iterator
1025 * Returns the DMA address of the page pointed to by @viter.
1027 static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter)
1029 return viter->dma_address(viter);
1035 * @viter: Pointer to the iterator
1037 * Returns the DMA address of the page pointed to by @viter.
1039 static inline struct page *vmw_piter_page(struct vmw_piter *viter)
1041 return viter->page(viter);