Lines Matching refs:addr

97 void debug_dma_map_single(struct device *dev, const void *addr, unsigned long len);
102 static inline void debug_dma_map_single(struct device *dev, const void *addr, unsigned long len)
120 void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
128 void dma_unmap_resource(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
130 void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir);
131 void dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir);
156 static inline void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
174 static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
178 static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size,
182 static inline void dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_t size,
278 static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
281 return dma_unmap_page_attrs(dev, addr, size, dir, attrs);
284 static inline void dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t addr, unsigned long offset, size_t size,
287 return dma_sync_single_for_cpu(dev, addr + offset, size, dir);
290 static inline void dma_sync_single_range_for_device(struct device *dev, dma_addr_t addr, unsigned long offset,
293 return dma_sync_single_for_device(dev, addr + offset, size, dir);