Lines Matching defs:viter
1026 extern void vmw_piter_start(struct vmw_piter *viter,
1033 * @viter: Pointer to the iterator to advance.
1037 static inline bool vmw_piter_next(struct vmw_piter *viter)
1039 return viter->next(viter);
1045 * @viter: Pointer to the iterator
1047 * Returns the DMA address of the page pointed to by @viter.
1049 static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter)
1051 return viter->dma_address(viter);
1057 * @viter: Pointer to the iterator
1059 * Returns the DMA address of the page pointed to by @viter.
1061 static inline struct page *vmw_piter_page(struct vmw_piter *viter)
1063 return viter->page(viter);