Lines Matching refs:rproc
326 struct rproc;
336 int (*start)(struct rproc *rproc);
337 int (*stop)(struct rproc *rproc);
338 void (*kick)(struct rproc *rproc, int vqid);
339 void * (*da_to_va)(struct rproc *rproc, u64 da, int len);
411 struct rproc { struct
480 struct rproc *rproc; member
486 struct rproc *rproc_get_by_phandle(phandle phandle);
487 struct rproc *rproc_alloc(struct device *dev, const char *name,
490 void rproc_put(struct rproc *rproc);
491 int rproc_add(struct rproc *rproc);
492 int rproc_del(struct rproc *rproc);
494 int rproc_boot(struct rproc *rproc);
495 void rproc_shutdown(struct rproc *rproc);
496 void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type);
503 static inline struct rproc *vdev_to_rproc(struct virtio_device *vdev) in vdev_to_rproc()
507 return rvdev->rproc; in vdev_to_rproc()