virtual

package
v0.0.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2026 License: CC0-1.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DeviceService_DescribeContents_FullMethodName       = "/virtual.DeviceService/DescribeContents"
	DeviceService_GetDeviceId_FullMethodName            = "/virtual.DeviceService/GetDeviceId"
	DeviceService_GetDisplayIds_FullMethodName          = "/virtual.DeviceService/GetDisplayIds"
	DeviceService_GetDisplayName_FullMethodName         = "/virtual.DeviceService/GetDisplayName"
	DeviceService_GetName_FullMethodName                = "/virtual.DeviceService/GetName"
	DeviceService_GetPersistentDeviceId_FullMethodName  = "/virtual.DeviceService/GetPersistentDeviceId"
	DeviceService_HasCustomSensorSupport_FullMethodName = "/virtual.DeviceService/HasCustomSensorSupport"
	DeviceService_ToString_FullMethodName               = "/virtual.DeviceService/ToString"
	DeviceService_WriteToParcel_FullMethodName          = "/virtual.DeviceService/WriteToParcel"
)
View Source
const (
	DeviceManagerService_GetVirtualDevice_FullMethodName                = "/virtual.DeviceManagerService/GetVirtualDevice"
	DeviceManagerService_GetVirtualDevices_FullMethodName               = "/virtual.DeviceManagerService/GetVirtualDevices"
	DeviceManagerService_RegisterVirtualDeviceListener_FullMethodName   = "/virtual.DeviceManagerService/RegisterVirtualDeviceListener"
	DeviceManagerService_UnregisterVirtualDeviceListener_FullMethodName = "/virtual.DeviceManagerService/UnregisterVirtualDeviceListener"
)

Variables

View Source
var DeviceManagerService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "virtual.DeviceManagerService",
	HandlerType: (*DeviceManagerServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetVirtualDevice",
			Handler:    _DeviceManagerService_GetVirtualDevice_Handler,
		},
		{
			MethodName: "GetVirtualDevices",
			Handler:    _DeviceManagerService_GetVirtualDevices_Handler,
		},
		{
			MethodName: "RegisterVirtualDeviceListener",
			Handler:    _DeviceManagerService_RegisterVirtualDeviceListener_Handler,
		},
		{
			MethodName: "UnregisterVirtualDeviceListener",
			Handler:    _DeviceManagerService_UnregisterVirtualDeviceListener_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/virtual/virtual.proto",
}

DeviceManagerService_ServiceDesc is the grpc.ServiceDesc for DeviceManagerService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var DeviceService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "virtual.DeviceService",
	HandlerType: (*DeviceServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "DescribeContents",
			Handler:    _DeviceService_DescribeContents_Handler,
		},
		{
			MethodName: "GetDeviceId",
			Handler:    _DeviceService_GetDeviceId_Handler,
		},
		{
			MethodName: "GetDisplayIds",
			Handler:    _DeviceService_GetDisplayIds_Handler,
		},
		{
			MethodName: "GetDisplayName",
			Handler:    _DeviceService_GetDisplayName_Handler,
		},
		{
			MethodName: "GetName",
			Handler:    _DeviceService_GetName_Handler,
		},
		{
			MethodName: "GetPersistentDeviceId",
			Handler:    _DeviceService_GetPersistentDeviceId_Handler,
		},
		{
			MethodName: "HasCustomSensorSupport",
			Handler:    _DeviceService_HasCustomSensorSupport_Handler,
		},
		{
			MethodName: "ToString",
			Handler:    _DeviceService_ToString_Handler,
		},
		{
			MethodName: "WriteToParcel",
			Handler:    _DeviceService_WriteToParcel_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "proto/virtual/virtual.proto",
}

DeviceService_ServiceDesc is the grpc.ServiceDesc for DeviceService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_proto_virtual_virtual_proto protoreflect.FileDescriptor

Functions

func RegisterDeviceManagerServiceServer

func RegisterDeviceManagerServiceServer(s grpc.ServiceRegistrar, srv DeviceManagerServiceServer)

func RegisterDeviceServiceServer

func RegisterDeviceServiceServer(s grpc.ServiceRegistrar, srv DeviceServiceServer)

Types

type DescribeContentsRequest

type DescribeContentsRequest struct {
	// contains filtered or unexported fields
}

func (*DescribeContentsRequest) Descriptor deprecated

func (*DescribeContentsRequest) Descriptor() ([]byte, []int)

Deprecated: Use DescribeContentsRequest.ProtoReflect.Descriptor instead.

func (*DescribeContentsRequest) ProtoMessage

func (*DescribeContentsRequest) ProtoMessage()

func (*DescribeContentsRequest) ProtoReflect

func (x *DescribeContentsRequest) ProtoReflect() protoreflect.Message

func (*DescribeContentsRequest) Reset

func (x *DescribeContentsRequest) Reset()

func (*DescribeContentsRequest) String

func (x *DescribeContentsRequest) String() string

type DescribeContentsResponse

type DescribeContentsResponse struct {
	Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*DescribeContentsResponse) Descriptor deprecated

func (*DescribeContentsResponse) Descriptor() ([]byte, []int)

Deprecated: Use DescribeContentsResponse.ProtoReflect.Descriptor instead.

func (*DescribeContentsResponse) GetResult

func (x *DescribeContentsResponse) GetResult() int32

func (*DescribeContentsResponse) ProtoMessage

func (*DescribeContentsResponse) ProtoMessage()

func (*DescribeContentsResponse) ProtoReflect

func (x *DescribeContentsResponse) ProtoReflect() protoreflect.Message

func (*DescribeContentsResponse) Reset

func (x *DescribeContentsResponse) Reset()

func (*DescribeContentsResponse) String

func (x *DescribeContentsResponse) String() string

type DeviceManagerServiceClient

type DeviceManagerServiceClient interface {
	GetVirtualDevice(ctx context.Context, in *GetVirtualDeviceRequest, opts ...grpc.CallOption) (*GetVirtualDeviceResponse, error)
	GetVirtualDevices(ctx context.Context, in *GetVirtualDevicesRequest, opts ...grpc.CallOption) (*GetVirtualDevicesResponse, error)
	RegisterVirtualDeviceListener(ctx context.Context, in *RegisterVirtualDeviceListenerRequest, opts ...grpc.CallOption) (*RegisterVirtualDeviceListenerResponse, error)
	UnregisterVirtualDeviceListener(ctx context.Context, in *UnregisterVirtualDeviceListenerRequest, opts ...grpc.CallOption) (*UnregisterVirtualDeviceListenerResponse, error)
}

DeviceManagerServiceClient is the client API for DeviceManagerService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type DeviceManagerServiceServer

type DeviceManagerServiceServer interface {
	GetVirtualDevice(context.Context, *GetVirtualDeviceRequest) (*GetVirtualDeviceResponse, error)
	GetVirtualDevices(context.Context, *GetVirtualDevicesRequest) (*GetVirtualDevicesResponse, error)
	RegisterVirtualDeviceListener(context.Context, *RegisterVirtualDeviceListenerRequest) (*RegisterVirtualDeviceListenerResponse, error)
	UnregisterVirtualDeviceListener(context.Context, *UnregisterVirtualDeviceListenerRequest) (*UnregisterVirtualDeviceListenerResponse, error)
	// contains filtered or unexported methods
}

DeviceManagerServiceServer is the server API for DeviceManagerService service. All implementations must embed UnimplementedDeviceManagerServiceServer for forward compatibility.

type DeviceServiceClient

DeviceServiceClient is the client API for DeviceService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type DeviceServiceServer

DeviceServiceServer is the server API for DeviceService service. All implementations must embed UnimplementedDeviceServiceServer for forward compatibility.

type GetDeviceIdRequest

type GetDeviceIdRequest struct {
	// contains filtered or unexported fields
}

func (*GetDeviceIdRequest) Descriptor deprecated

func (*GetDeviceIdRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetDeviceIdRequest.ProtoReflect.Descriptor instead.

func (*GetDeviceIdRequest) ProtoMessage

func (*GetDeviceIdRequest) ProtoMessage()

func (*GetDeviceIdRequest) ProtoReflect

func (x *GetDeviceIdRequest) ProtoReflect() protoreflect.Message

func (*GetDeviceIdRequest) Reset

func (x *GetDeviceIdRequest) Reset()

func (*GetDeviceIdRequest) String

func (x *GetDeviceIdRequest) String() string

type GetDeviceIdResponse

type GetDeviceIdResponse struct {
	Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeviceIdResponse) Descriptor deprecated

func (*GetDeviceIdResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetDeviceIdResponse.ProtoReflect.Descriptor instead.

func (*GetDeviceIdResponse) GetResult

func (x *GetDeviceIdResponse) GetResult() int32

func (*GetDeviceIdResponse) ProtoMessage

func (*GetDeviceIdResponse) ProtoMessage()

func (*GetDeviceIdResponse) ProtoReflect

func (x *GetDeviceIdResponse) ProtoReflect() protoreflect.Message

func (*GetDeviceIdResponse) Reset

func (x *GetDeviceIdResponse) Reset()

func (*GetDeviceIdResponse) String

func (x *GetDeviceIdResponse) String() string

type GetDisplayIdsRequest

type GetDisplayIdsRequest struct {
	// contains filtered or unexported fields
}

func (*GetDisplayIdsRequest) Descriptor deprecated

func (*GetDisplayIdsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetDisplayIdsRequest.ProtoReflect.Descriptor instead.

func (*GetDisplayIdsRequest) ProtoMessage

func (*GetDisplayIdsRequest) ProtoMessage()

func (*GetDisplayIdsRequest) ProtoReflect

func (x *GetDisplayIdsRequest) ProtoReflect() protoreflect.Message

func (*GetDisplayIdsRequest) Reset

func (x *GetDisplayIdsRequest) Reset()

func (*GetDisplayIdsRequest) String

func (x *GetDisplayIdsRequest) String() string

type GetDisplayIdsResponse

type GetDisplayIdsResponse struct {
	Result int64 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDisplayIdsResponse) Descriptor deprecated

func (*GetDisplayIdsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetDisplayIdsResponse.ProtoReflect.Descriptor instead.

func (*GetDisplayIdsResponse) GetResult

func (x *GetDisplayIdsResponse) GetResult() int64

func (*GetDisplayIdsResponse) ProtoMessage

func (*GetDisplayIdsResponse) ProtoMessage()

func (*GetDisplayIdsResponse) ProtoReflect

func (x *GetDisplayIdsResponse) ProtoReflect() protoreflect.Message

func (*GetDisplayIdsResponse) Reset

func (x *GetDisplayIdsResponse) Reset()

func (*GetDisplayIdsResponse) String

func (x *GetDisplayIdsResponse) String() string

type GetDisplayNameRequest

type GetDisplayNameRequest struct {
	// contains filtered or unexported fields
}

func (*GetDisplayNameRequest) Descriptor deprecated

func (*GetDisplayNameRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetDisplayNameRequest.ProtoReflect.Descriptor instead.

func (*GetDisplayNameRequest) ProtoMessage

func (*GetDisplayNameRequest) ProtoMessage()

func (*GetDisplayNameRequest) ProtoReflect

func (x *GetDisplayNameRequest) ProtoReflect() protoreflect.Message

func (*GetDisplayNameRequest) Reset

func (x *GetDisplayNameRequest) Reset()

func (*GetDisplayNameRequest) String

func (x *GetDisplayNameRequest) String() string

type GetDisplayNameResponse

type GetDisplayNameResponse struct {
	Result int64 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDisplayNameResponse) Descriptor deprecated

func (*GetDisplayNameResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetDisplayNameResponse.ProtoReflect.Descriptor instead.

func (*GetDisplayNameResponse) GetResult

func (x *GetDisplayNameResponse) GetResult() int64

func (*GetDisplayNameResponse) ProtoMessage

func (*GetDisplayNameResponse) ProtoMessage()

func (*GetDisplayNameResponse) ProtoReflect

func (x *GetDisplayNameResponse) ProtoReflect() protoreflect.Message

func (*GetDisplayNameResponse) Reset

func (x *GetDisplayNameResponse) Reset()

func (*GetDisplayNameResponse) String

func (x *GetDisplayNameResponse) String() string

type GetNameRequest

type GetNameRequest struct {
	// contains filtered or unexported fields
}

func (*GetNameRequest) Descriptor deprecated

func (*GetNameRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetNameRequest.ProtoReflect.Descriptor instead.

func (*GetNameRequest) ProtoMessage

func (*GetNameRequest) ProtoMessage()

func (*GetNameRequest) ProtoReflect

func (x *GetNameRequest) ProtoReflect() protoreflect.Message

func (*GetNameRequest) Reset

func (x *GetNameRequest) Reset()

func (*GetNameRequest) String

func (x *GetNameRequest) String() string

type GetNameResponse

type GetNameResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNameResponse) Descriptor deprecated

func (*GetNameResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetNameResponse.ProtoReflect.Descriptor instead.

func (*GetNameResponse) GetResult

func (x *GetNameResponse) GetResult() string

func (*GetNameResponse) ProtoMessage

func (*GetNameResponse) ProtoMessage()

func (*GetNameResponse) ProtoReflect

func (x *GetNameResponse) ProtoReflect() protoreflect.Message

func (*GetNameResponse) Reset

func (x *GetNameResponse) Reset()

func (*GetNameResponse) String

func (x *GetNameResponse) String() string

type GetPersistentDeviceIdRequest

type GetPersistentDeviceIdRequest struct {
	// contains filtered or unexported fields
}

func (*GetPersistentDeviceIdRequest) Descriptor deprecated

func (*GetPersistentDeviceIdRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPersistentDeviceIdRequest.ProtoReflect.Descriptor instead.

func (*GetPersistentDeviceIdRequest) ProtoMessage

func (*GetPersistentDeviceIdRequest) ProtoMessage()

func (*GetPersistentDeviceIdRequest) ProtoReflect

func (*GetPersistentDeviceIdRequest) Reset

func (x *GetPersistentDeviceIdRequest) Reset()

func (*GetPersistentDeviceIdRequest) String

type GetPersistentDeviceIdResponse

type GetPersistentDeviceIdResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPersistentDeviceIdResponse) Descriptor deprecated

func (*GetPersistentDeviceIdResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPersistentDeviceIdResponse.ProtoReflect.Descriptor instead.

func (*GetPersistentDeviceIdResponse) GetResult

func (x *GetPersistentDeviceIdResponse) GetResult() string

func (*GetPersistentDeviceIdResponse) ProtoMessage

func (*GetPersistentDeviceIdResponse) ProtoMessage()

func (*GetPersistentDeviceIdResponse) ProtoReflect

func (*GetPersistentDeviceIdResponse) Reset

func (x *GetPersistentDeviceIdResponse) Reset()

func (*GetPersistentDeviceIdResponse) String

type GetVirtualDeviceRequest

type GetVirtualDeviceRequest struct {
	Arg0 int32 `protobuf:"varint,1,opt,name=arg0,proto3" json:"arg0,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVirtualDeviceRequest) Descriptor deprecated

func (*GetVirtualDeviceRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetVirtualDeviceRequest.ProtoReflect.Descriptor instead.

func (*GetVirtualDeviceRequest) GetArg0

func (x *GetVirtualDeviceRequest) GetArg0() int32

func (*GetVirtualDeviceRequest) ProtoMessage

func (*GetVirtualDeviceRequest) ProtoMessage()

func (*GetVirtualDeviceRequest) ProtoReflect

func (x *GetVirtualDeviceRequest) ProtoReflect() protoreflect.Message

func (*GetVirtualDeviceRequest) Reset

func (x *GetVirtualDeviceRequest) Reset()

func (*GetVirtualDeviceRequest) String

func (x *GetVirtualDeviceRequest) String() string

type GetVirtualDeviceResponse

type GetVirtualDeviceResponse struct {
	Result int64 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVirtualDeviceResponse) Descriptor deprecated

func (*GetVirtualDeviceResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetVirtualDeviceResponse.ProtoReflect.Descriptor instead.

func (*GetVirtualDeviceResponse) GetResult

func (x *GetVirtualDeviceResponse) GetResult() int64

func (*GetVirtualDeviceResponse) ProtoMessage

func (*GetVirtualDeviceResponse) ProtoMessage()

func (*GetVirtualDeviceResponse) ProtoReflect

func (x *GetVirtualDeviceResponse) ProtoReflect() protoreflect.Message

func (*GetVirtualDeviceResponse) Reset

func (x *GetVirtualDeviceResponse) Reset()

func (*GetVirtualDeviceResponse) String

func (x *GetVirtualDeviceResponse) String() string

type GetVirtualDevicesRequest

type GetVirtualDevicesRequest struct {
	// contains filtered or unexported fields
}

func (*GetVirtualDevicesRequest) Descriptor deprecated

func (*GetVirtualDevicesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetVirtualDevicesRequest.ProtoReflect.Descriptor instead.

func (*GetVirtualDevicesRequest) ProtoMessage

func (*GetVirtualDevicesRequest) ProtoMessage()

func (*GetVirtualDevicesRequest) ProtoReflect

func (x *GetVirtualDevicesRequest) ProtoReflect() protoreflect.Message

func (*GetVirtualDevicesRequest) Reset

func (x *GetVirtualDevicesRequest) Reset()

func (*GetVirtualDevicesRequest) String

func (x *GetVirtualDevicesRequest) String() string

type GetVirtualDevicesResponse

type GetVirtualDevicesResponse struct {
	Result int64 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*GetVirtualDevicesResponse) Descriptor deprecated

func (*GetVirtualDevicesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetVirtualDevicesResponse.ProtoReflect.Descriptor instead.

func (*GetVirtualDevicesResponse) GetResult

func (x *GetVirtualDevicesResponse) GetResult() int64

func (*GetVirtualDevicesResponse) ProtoMessage

func (*GetVirtualDevicesResponse) ProtoMessage()

func (*GetVirtualDevicesResponse) ProtoReflect

func (*GetVirtualDevicesResponse) Reset

func (x *GetVirtualDevicesResponse) Reset()

func (*GetVirtualDevicesResponse) String

func (x *GetVirtualDevicesResponse) String() string

type HasCustomSensorSupportRequest

type HasCustomSensorSupportRequest struct {
	// contains filtered or unexported fields
}

func (*HasCustomSensorSupportRequest) Descriptor deprecated

func (*HasCustomSensorSupportRequest) Descriptor() ([]byte, []int)

Deprecated: Use HasCustomSensorSupportRequest.ProtoReflect.Descriptor instead.

func (*HasCustomSensorSupportRequest) ProtoMessage

func (*HasCustomSensorSupportRequest) ProtoMessage()

func (*HasCustomSensorSupportRequest) ProtoReflect

func (*HasCustomSensorSupportRequest) Reset

func (x *HasCustomSensorSupportRequest) Reset()

func (*HasCustomSensorSupportRequest) String

type HasCustomSensorSupportResponse

type HasCustomSensorSupportResponse struct {
	Result bool `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*HasCustomSensorSupportResponse) Descriptor deprecated

func (*HasCustomSensorSupportResponse) Descriptor() ([]byte, []int)

Deprecated: Use HasCustomSensorSupportResponse.ProtoReflect.Descriptor instead.

func (*HasCustomSensorSupportResponse) GetResult

func (x *HasCustomSensorSupportResponse) GetResult() bool

func (*HasCustomSensorSupportResponse) ProtoMessage

func (*HasCustomSensorSupportResponse) ProtoMessage()

func (*HasCustomSensorSupportResponse) ProtoReflect

func (*HasCustomSensorSupportResponse) Reset

func (x *HasCustomSensorSupportResponse) Reset()

func (*HasCustomSensorSupportResponse) String

type RegisterVirtualDeviceListenerRequest

type RegisterVirtualDeviceListenerRequest struct {
	Arg0 int64 `protobuf:"varint,1,opt,name=arg0,proto3" json:"arg0,omitempty"`
	Arg1 int64 `protobuf:"varint,2,opt,name=arg1,proto3" json:"arg1,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterVirtualDeviceListenerRequest) Descriptor deprecated

func (*RegisterVirtualDeviceListenerRequest) Descriptor() ([]byte, []int)

Deprecated: Use RegisterVirtualDeviceListenerRequest.ProtoReflect.Descriptor instead.

func (*RegisterVirtualDeviceListenerRequest) GetArg0

func (*RegisterVirtualDeviceListenerRequest) GetArg1

func (*RegisterVirtualDeviceListenerRequest) ProtoMessage

func (*RegisterVirtualDeviceListenerRequest) ProtoMessage()

func (*RegisterVirtualDeviceListenerRequest) ProtoReflect

func (*RegisterVirtualDeviceListenerRequest) Reset

func (*RegisterVirtualDeviceListenerRequest) String

type RegisterVirtualDeviceListenerResponse

type RegisterVirtualDeviceListenerResponse struct {
	// contains filtered or unexported fields
}

func (*RegisterVirtualDeviceListenerResponse) Descriptor deprecated

func (*RegisterVirtualDeviceListenerResponse) Descriptor() ([]byte, []int)

Deprecated: Use RegisterVirtualDeviceListenerResponse.ProtoReflect.Descriptor instead.

func (*RegisterVirtualDeviceListenerResponse) ProtoMessage

func (*RegisterVirtualDeviceListenerResponse) ProtoMessage()

func (*RegisterVirtualDeviceListenerResponse) ProtoReflect

func (*RegisterVirtualDeviceListenerResponse) Reset

func (*RegisterVirtualDeviceListenerResponse) String

type ToStringRequest

type ToStringRequest struct {
	// contains filtered or unexported fields
}

func (*ToStringRequest) Descriptor deprecated

func (*ToStringRequest) Descriptor() ([]byte, []int)

Deprecated: Use ToStringRequest.ProtoReflect.Descriptor instead.

func (*ToStringRequest) ProtoMessage

func (*ToStringRequest) ProtoMessage()

func (*ToStringRequest) ProtoReflect

func (x *ToStringRequest) ProtoReflect() protoreflect.Message

func (*ToStringRequest) Reset

func (x *ToStringRequest) Reset()

func (*ToStringRequest) String

func (x *ToStringRequest) String() string

type ToStringResponse

type ToStringResponse struct {
	Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*ToStringResponse) Descriptor deprecated

func (*ToStringResponse) Descriptor() ([]byte, []int)

Deprecated: Use ToStringResponse.ProtoReflect.Descriptor instead.

func (*ToStringResponse) GetResult

func (x *ToStringResponse) GetResult() string

func (*ToStringResponse) ProtoMessage

func (*ToStringResponse) ProtoMessage()

func (*ToStringResponse) ProtoReflect

func (x *ToStringResponse) ProtoReflect() protoreflect.Message

func (*ToStringResponse) Reset

func (x *ToStringResponse) Reset()

func (*ToStringResponse) String

func (x *ToStringResponse) String() string

type UnimplementedDeviceManagerServiceServer

type UnimplementedDeviceManagerServiceServer struct{}

UnimplementedDeviceManagerServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedDeviceManagerServiceServer) GetVirtualDevice

func (UnimplementedDeviceManagerServiceServer) GetVirtualDevices

type UnimplementedDeviceServiceServer

type UnimplementedDeviceServiceServer struct{}

UnimplementedDeviceServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedDeviceServiceServer) DescribeContents

func (UnimplementedDeviceServiceServer) GetDeviceId

func (UnimplementedDeviceServiceServer) GetDisplayIds

func (UnimplementedDeviceServiceServer) GetDisplayName

func (UnimplementedDeviceServiceServer) GetName

func (UnimplementedDeviceServiceServer) ToString

func (UnimplementedDeviceServiceServer) WriteToParcel

type UnregisterVirtualDeviceListenerRequest

type UnregisterVirtualDeviceListenerRequest struct {
	Arg0 int64 `protobuf:"varint,1,opt,name=arg0,proto3" json:"arg0,omitempty"`
	// contains filtered or unexported fields
}

func (*UnregisterVirtualDeviceListenerRequest) Descriptor deprecated

func (*UnregisterVirtualDeviceListenerRequest) Descriptor() ([]byte, []int)

Deprecated: Use UnregisterVirtualDeviceListenerRequest.ProtoReflect.Descriptor instead.

func (*UnregisterVirtualDeviceListenerRequest) GetArg0

func (*UnregisterVirtualDeviceListenerRequest) ProtoMessage

func (*UnregisterVirtualDeviceListenerRequest) ProtoReflect

func (*UnregisterVirtualDeviceListenerRequest) Reset

func (*UnregisterVirtualDeviceListenerRequest) String

type UnregisterVirtualDeviceListenerResponse

type UnregisterVirtualDeviceListenerResponse struct {
	// contains filtered or unexported fields
}

func (*UnregisterVirtualDeviceListenerResponse) Descriptor deprecated

func (*UnregisterVirtualDeviceListenerResponse) Descriptor() ([]byte, []int)

Deprecated: Use UnregisterVirtualDeviceListenerResponse.ProtoReflect.Descriptor instead.

func (*UnregisterVirtualDeviceListenerResponse) ProtoMessage

func (*UnregisterVirtualDeviceListenerResponse) ProtoReflect

func (*UnregisterVirtualDeviceListenerResponse) Reset

func (*UnregisterVirtualDeviceListenerResponse) String

type UnsafeDeviceManagerServiceServer

type UnsafeDeviceManagerServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeDeviceManagerServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to DeviceManagerServiceServer will result in compilation errors.

type UnsafeDeviceServiceServer

type UnsafeDeviceServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeDeviceServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to DeviceServiceServer will result in compilation errors.

type WriteToParcelRequest

type WriteToParcelRequest struct {
	Arg0 int64 `protobuf:"varint,1,opt,name=arg0,proto3" json:"arg0,omitempty"`
	Arg1 int32 `protobuf:"varint,2,opt,name=arg1,proto3" json:"arg1,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteToParcelRequest) Descriptor deprecated

func (*WriteToParcelRequest) Descriptor() ([]byte, []int)

Deprecated: Use WriteToParcelRequest.ProtoReflect.Descriptor instead.

func (*WriteToParcelRequest) GetArg0

func (x *WriteToParcelRequest) GetArg0() int64

func (*WriteToParcelRequest) GetArg1

func (x *WriteToParcelRequest) GetArg1() int32

func (*WriteToParcelRequest) ProtoMessage

func (*WriteToParcelRequest) ProtoMessage()

func (*WriteToParcelRequest) ProtoReflect

func (x *WriteToParcelRequest) ProtoReflect() protoreflect.Message

func (*WriteToParcelRequest) Reset

func (x *WriteToParcelRequest) Reset()

func (*WriteToParcelRequest) String

func (x *WriteToParcelRequest) String() string

type WriteToParcelResponse

type WriteToParcelResponse struct {
	// contains filtered or unexported fields
}

func (*WriteToParcelResponse) Descriptor deprecated

func (*WriteToParcelResponse) Descriptor() ([]byte, []int)

Deprecated: Use WriteToParcelResponse.ProtoReflect.Descriptor instead.

func (*WriteToParcelResponse) ProtoMessage

func (*WriteToParcelResponse) ProtoMessage()

func (*WriteToParcelResponse) ProtoReflect

func (x *WriteToParcelResponse) ProtoReflect() protoreflect.Message

func (*WriteToParcelResponse) Reset

func (x *WriteToParcelResponse) Reset()

func (*WriteToParcelResponse) String

func (x *WriteToParcelResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL