Upstream-commit: f29c500d8d480547874425ba98a9381fdc9df89e Component: engine
15 lines
393 B
Go
15 lines
393 B
Go
package docker
|
|
|
|
type DeviceSet interface {
|
|
AddDevice(hash, baseHash string) error
|
|
SetInitialized(hash string) error
|
|
DeactivateDevice(hash string) error
|
|
RemoveDevice(hash string) error
|
|
MountDevice(hash, path string) error
|
|
UnmountDevice(hash, path string) error
|
|
HasDevice(hash string) bool
|
|
HasInitializedDevice(hash string) bool
|
|
HasActivatedDevice(hash string) bool
|
|
Shutdown() error
|
|
}
|