arc

package
v0.0.0-...-683b059 Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2022 License: BSD-3-Clause Imports: 14 Imported by: 0

README

protocol buffer definitions

Building

When editing protocol buffers, these are not regenerated with tast run invocation. Run the following command in CrOS chroot to regenerate protocol buffer bindings:

~/trunk/src/platform/tast/tools/go.sh generate chromiumos/tast/services/cros/arc

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_adb_over_usb_service_proto protoreflect.FileDescriptor
View Source
var File_gmscore_cache_service_proto protoreflect.FileDescriptor
View Source
var File_perf_boot_service_proto protoreflect.FileDescriptor
View Source
var File_suspend_service_proto protoreflect.FileDescriptor
View Source
var File_ureadahead_pack_service_proto protoreflect.FileDescriptor

Functions

func RegisterADBOverUSBServiceServer

func RegisterADBOverUSBServiceServer(s *grpc.Server, srv ADBOverUSBServiceServer)

func RegisterAdbSideloadServiceServer

func RegisterAdbSideloadServiceServer(s *grpc.Server, srv AdbSideloadServiceServer)

func RegisterGmsCoreCacheServiceServer

func RegisterGmsCoreCacheServiceServer(s *grpc.Server, srv GmsCoreCacheServiceServer)

func RegisterPerfBootServiceServer

func RegisterPerfBootServiceServer(s *grpc.Server, srv PerfBootServiceServer)

func RegisterSuspendServiceServer

func RegisterSuspendServiceServer(s *grpc.Server, srv SuspendServiceServer)

func RegisterUreadaheadPackServiceServer

func RegisterUreadaheadPackServiceServer(s *grpc.Server, srv UreadaheadPackServiceServer)

Types

type ADBOverUSBServiceClient

type ADBOverUSBServiceClient interface {
	// Set UDC Enabled to enable or disable USB Device Controller (UDC). Return true if the requested value updated successfully. Otherwise return false.
	SetUDCEnabled(ctx context.Context, in *EnableUDCRequest, opts ...grpc.CallOption) (*EnableUDCResponse, error)
	// Check ADBD job status.
	CheckADBDJobStatus(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
}

ADBOverUSBServiceClient is the client API for ADBOverUSBService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type ADBOverUSBServiceServer

type ADBOverUSBServiceServer interface {
	// Set UDC Enabled to enable or disable USB Device Controller (UDC). Return true if the requested value updated successfully. Otherwise return false.
	SetUDCEnabled(context.Context, *EnableUDCRequest) (*EnableUDCResponse, error)
	// Check ADBD job status.
	CheckADBDJobStatus(context.Context, *empty.Empty) (*empty.Empty, error)
}

ADBOverUSBServiceServer is the server API for ADBOverUSBService service.

type AdbSideloadServiceClient

type AdbSideloadServiceClient interface {
	// WaitUntilCPUCoolDown internally calls power.WaitUntilCPUCoolDown on DUT
	// and waits until CPU is cooled down.
	SetRequestAdbSideloadFlag(ctx context.Context, in *SigninRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ConfirmEnablingAdbSideloading(ctx context.Context, in *AdbSideloadServiceRequest, opts ...grpc.CallOption) (*empty.Empty, error)
}

AdbSideloadServiceClient is the client API for AdbSideloadService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewAdbSideloadServiceClient

func NewAdbSideloadServiceClient(cc *grpc.ClientConn) AdbSideloadServiceClient

type AdbSideloadServiceRequest

type AdbSideloadServiceRequest struct {
	Action               string   `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AdbSideloadServiceRequest) Descriptor

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

func (*AdbSideloadServiceRequest) GetAction

func (m *AdbSideloadServiceRequest) GetAction() string

func (*AdbSideloadServiceRequest) ProtoMessage

func (*AdbSideloadServiceRequest) ProtoMessage()

func (*AdbSideloadServiceRequest) Reset

func (m *AdbSideloadServiceRequest) Reset()

func (*AdbSideloadServiceRequest) String

func (m *AdbSideloadServiceRequest) String() string

func (*AdbSideloadServiceRequest) XXX_DiscardUnknown

func (m *AdbSideloadServiceRequest) XXX_DiscardUnknown()

func (*AdbSideloadServiceRequest) XXX_Marshal

func (m *AdbSideloadServiceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AdbSideloadServiceRequest) XXX_Merge

func (m *AdbSideloadServiceRequest) XXX_Merge(src proto.Message)

func (*AdbSideloadServiceRequest) XXX_Size

func (m *AdbSideloadServiceRequest) XXX_Size() int

func (*AdbSideloadServiceRequest) XXX_Unmarshal

func (m *AdbSideloadServiceRequest) XXX_Unmarshal(b []byte) error

type AdbSideloadServiceServer

type AdbSideloadServiceServer interface {
	// WaitUntilCPUCoolDown internally calls power.WaitUntilCPUCoolDown on DUT
	// and waits until CPU is cooled down.
	SetRequestAdbSideloadFlag(context.Context, *SigninRequest) (*empty.Empty, error)
	ConfirmEnablingAdbSideloading(context.Context, *AdbSideloadServiceRequest) (*empty.Empty, error)
}

AdbSideloadServiceServer is the server API for AdbSideloadService service.

type ClockValues

type ClockValues struct {
	ClockMonotonic *duration.Duration `protobuf:"bytes,1,opt,name=clock_monotonic,json=clockMonotonic,proto3" json:"clock_monotonic,omitempty"`
	ClockBoottime  *duration.Duration `protobuf:"bytes,2,opt,name=clock_boottime,json=clockBoottime,proto3" json:"clock_boottime,omitempty"`
	// contains filtered or unexported fields
}

func (*ClockValues) Descriptor deprecated

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

Deprecated: Use ClockValues.ProtoReflect.Descriptor instead.

func (*ClockValues) GetClockBoottime

func (x *ClockValues) GetClockBoottime() *duration.Duration

func (*ClockValues) GetClockMonotonic

func (x *ClockValues) GetClockMonotonic() *duration.Duration

func (*ClockValues) ProtoMessage

func (*ClockValues) ProtoMessage()

func (*ClockValues) ProtoReflect

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

func (*ClockValues) Reset

func (x *ClockValues) Reset()

func (*ClockValues) String

func (x *ClockValues) String() string

type EnableUDCRequest

type EnableUDCRequest struct {

	// Enable or disable UDC on DUT. If set true, enable UDC on DUT. If set false, disable UDC on DUT.
	Enable bool `protobuf:"varint,1,opt,name=enable,proto3" json:"enable,omitempty"`
	// contains filtered or unexported fields
}

func (*EnableUDCRequest) Descriptor deprecated

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

Deprecated: Use EnableUDCRequest.ProtoReflect.Descriptor instead.

func (*EnableUDCRequest) GetEnable

func (x *EnableUDCRequest) GetEnable() bool

func (*EnableUDCRequest) ProtoMessage

func (*EnableUDCRequest) ProtoMessage()

func (*EnableUDCRequest) ProtoReflect

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

func (*EnableUDCRequest) Reset

func (x *EnableUDCRequest) Reset()

func (*EnableUDCRequest) String

func (x *EnableUDCRequest) String() string

type EnableUDCResponse

type EnableUDCResponse struct {

	// Whether or not the requested value is updated successfully. If set true, UDC request executed successfully, and needs a device reboot. If set false, means no-ops or error occurred.
	UDCValueUpdated bool `protobuf:"varint,1,opt,name=UDCValueUpdated,proto3" json:"UDCValueUpdated,omitempty"`
	// contains filtered or unexported fields
}

func (*EnableUDCResponse) Descriptor deprecated

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

Deprecated: Use EnableUDCResponse.ProtoReflect.Descriptor instead.

func (*EnableUDCResponse) GetUDCValueUpdated

func (x *EnableUDCResponse) GetUDCValueUpdated() bool

func (*EnableUDCResponse) ProtoMessage

func (*EnableUDCResponse) ProtoMessage()

func (*EnableUDCResponse) ProtoReflect

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

func (*EnableUDCResponse) Reset

func (x *EnableUDCResponse) Reset()

func (*EnableUDCResponse) String

func (x *EnableUDCResponse) String() string

type GetClockValuesResponse

type GetClockValuesResponse struct {
	Host *ClockValues `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
	Arc  *ClockValues `protobuf:"bytes,2,opt,name=arc,proto3" json:"arc,omitempty"`
	// contains filtered or unexported fields
}

func (*GetClockValuesResponse) Descriptor deprecated

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

Deprecated: Use GetClockValuesResponse.ProtoReflect.Descriptor instead.

func (*GetClockValuesResponse) GetArc

func (x *GetClockValuesResponse) GetArc() *ClockValues

func (*GetClockValuesResponse) GetHost

func (x *GetClockValuesResponse) GetHost() *ClockValues

func (*GetClockValuesResponse) ProtoMessage

func (*GetClockValuesResponse) ProtoMessage()

func (*GetClockValuesResponse) ProtoReflect

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

func (*GetClockValuesResponse) Reset

func (x *GetClockValuesResponse) Reset()

func (*GetClockValuesResponse) String

func (x *GetClockValuesResponse) String() string

type GmsCoreCacheRequest

type GmsCoreCacheRequest struct {

	// If set, PackagesCopy is requested. Otherwise, requests PackageSkipCopy.
	PackagesCacheEnabled bool `protobuf:"varint,1,opt,name=packages_cache_enabled,json=packagesCacheEnabled,proto3" json:"packages_cache_enabled,omitempty"`
	// If set, GMSCoreEnabled is requested. Otherwise, requests GMSCoreDisabled.
	GmsCoreEnabled bool `protobuf:"varint,2,opt,name=gms_core_enabled,json=gmsCoreEnabled,proto3" json:"gms_core_enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*GmsCoreCacheRequest) Descriptor deprecated

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

Deprecated: Use GmsCoreCacheRequest.ProtoReflect.Descriptor instead.

func (*GmsCoreCacheRequest) GetGmsCoreEnabled

func (x *GmsCoreCacheRequest) GetGmsCoreEnabled() bool

func (*GmsCoreCacheRequest) GetPackagesCacheEnabled

func (x *GmsCoreCacheRequest) GetPackagesCacheEnabled() bool

func (*GmsCoreCacheRequest) ProtoMessage

func (*GmsCoreCacheRequest) ProtoMessage()

func (*GmsCoreCacheRequest) ProtoReflect

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

func (*GmsCoreCacheRequest) Reset

func (x *GmsCoreCacheRequest) Reset()

func (*GmsCoreCacheRequest) String

func (x *GmsCoreCacheRequest) String() string

type GmsCoreCacheResponse

type GmsCoreCacheResponse struct {

	// Path to directory with caches.
	TargetDir string `protobuf:"bytes,1,opt,name=target_dir,json=targetDir,proto3" json:"target_dir,omitempty"`
	// Name of packages cache.
	PackagesCacheName string `protobuf:"bytes,2,opt,name=packages_cache_name,json=packagesCacheName,proto3" json:"packages_cache_name,omitempty"`
	//Name of GMS Core caches packed to tar file.
	GmsCoreCacheName string `protobuf:"bytes,3,opt,name=gms_core_cache_name,json=gmsCoreCacheName,proto3" json:"gms_core_cache_name,omitempty"`
	//Name of GMS Core manifest file.
	GmsCoreManifestName string `protobuf:"bytes,4,opt,name=gms_core_manifest_name,json=gmsCoreManifestName,proto3" json:"gms_core_manifest_name,omitempty"`
	// Name of GSF cache.
	GsfCacheName string `protobuf:"bytes,5,opt,name=gsf_cache_name,json=gsfCacheName,proto3" json:"gsf_cache_name,omitempty"`
	// Name of generated packages cache.
	GeneratedPackagesCacheName string `` /* 143-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GmsCoreCacheResponse) Descriptor deprecated

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

Deprecated: Use GmsCoreCacheResponse.ProtoReflect.Descriptor instead.

func (*GmsCoreCacheResponse) GetGeneratedPackagesCacheName

func (x *GmsCoreCacheResponse) GetGeneratedPackagesCacheName() string

func (*GmsCoreCacheResponse) GetGmsCoreCacheName

func (x *GmsCoreCacheResponse) GetGmsCoreCacheName() string

func (*GmsCoreCacheResponse) GetGmsCoreManifestName

func (x *GmsCoreCacheResponse) GetGmsCoreManifestName() string

func (*GmsCoreCacheResponse) GetGsfCacheName

func (x *GmsCoreCacheResponse) GetGsfCacheName() string

func (*GmsCoreCacheResponse) GetPackagesCacheName

func (x *GmsCoreCacheResponse) GetPackagesCacheName() string

func (*GmsCoreCacheResponse) GetTargetDir

func (x *GmsCoreCacheResponse) GetTargetDir() string

func (*GmsCoreCacheResponse) ProtoMessage

func (*GmsCoreCacheResponse) ProtoMessage()

func (*GmsCoreCacheResponse) ProtoReflect

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

func (*GmsCoreCacheResponse) Reset

func (x *GmsCoreCacheResponse) Reset()

func (*GmsCoreCacheResponse) String

func (x *GmsCoreCacheResponse) String() string

type GmsCoreCacheServiceClient

type GmsCoreCacheServiceClient interface {
	// Generate generates GMS Core and GFS caches.
	Generate(ctx context.Context, in *GmsCoreCacheRequest, opts ...grpc.CallOption) (*GmsCoreCacheResponse, error)
}

GmsCoreCacheServiceClient is the client API for GmsCoreCacheService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type GmsCoreCacheServiceServer

type GmsCoreCacheServiceServer interface {
	// Generate generates GMS Core and GFS caches.
	Generate(context.Context, *GmsCoreCacheRequest) (*GmsCoreCacheResponse, error)
}

GmsCoreCacheServiceServer is the server API for GmsCoreCacheService service.

type PerfBootServiceClient

type PerfBootServiceClient interface {
	// WaitUntilCPUCoolDown internally calls power.WaitUntilCPUCoolDown on DUT
	// and waits until CPU is cooled down.
	WaitUntilCPUCoolDown(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
	// GetPerfValues signs in to DUT and measures Android boot performance metrics.
	GetPerfValues(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*perfpb.Values, error)
}

PerfBootServiceClient is the client API for PerfBootService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type PerfBootServiceServer

type PerfBootServiceServer interface {
	// WaitUntilCPUCoolDown internally calls power.WaitUntilCPUCoolDown on DUT
	// and waits until CPU is cooled down.
	WaitUntilCPUCoolDown(context.Context, *empty.Empty) (*empty.Empty, error)
	// GetPerfValues signs in to DUT and measures Android boot performance metrics.
	GetPerfValues(context.Context, *empty.Empty) (*perfpb.Values, error)
}

PerfBootServiceServer is the server API for PerfBootService service.

type SigninRequest

type SigninRequest struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SigninRequest) Descriptor

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

func (*SigninRequest) GetKey

func (m *SigninRequest) GetKey() string

func (*SigninRequest) ProtoMessage

func (*SigninRequest) ProtoMessage()

func (*SigninRequest) Reset

func (m *SigninRequest) Reset()

func (*SigninRequest) String

func (m *SigninRequest) String() string

func (*SigninRequest) XXX_DiscardUnknown

func (m *SigninRequest) XXX_DiscardUnknown()

func (*SigninRequest) XXX_Marshal

func (m *SigninRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SigninRequest) XXX_Merge

func (m *SigninRequest) XXX_Merge(src proto.Message)

func (*SigninRequest) XXX_Size

func (m *SigninRequest) XXX_Size() int

func (*SigninRequest) XXX_Unmarshal

func (m *SigninRequest) XXX_Unmarshal(b []byte) error

type SuspendServiceClient

type SuspendServiceClient interface {
	// Prepare to prepare the device for reading clocks and suspend.
	Prepare(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*SuspendServiceParams, error)
	// GetPerfValues signs in to DUT and measures Android boot performance metrics.
	GetClockValues(ctx context.Context, in *SuspendServiceParams, opts ...grpc.CallOption) (*GetClockValuesResponse, error)
	// Finalize does some clean-ups.
	Finalize(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
}

SuspendServiceClient is the client API for SuspendService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type SuspendServiceParams

type SuspendServiceParams struct {
	ReadClocksPathInArc string `protobuf:"bytes,1,opt,name=read_clocks_path_in_arc,json=readClocksPathInArc,proto3" json:"read_clocks_path_in_arc,omitempty"`
	// contains filtered or unexported fields
}

func (*SuspendServiceParams) Descriptor deprecated

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

Deprecated: Use SuspendServiceParams.ProtoReflect.Descriptor instead.

func (*SuspendServiceParams) GetReadClocksPathInArc

func (x *SuspendServiceParams) GetReadClocksPathInArc() string

func (*SuspendServiceParams) ProtoMessage

func (*SuspendServiceParams) ProtoMessage()

func (*SuspendServiceParams) ProtoReflect

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

func (*SuspendServiceParams) Reset

func (x *SuspendServiceParams) Reset()

func (*SuspendServiceParams) String

func (x *SuspendServiceParams) String() string

type SuspendServiceServer

type SuspendServiceServer interface {
	// Prepare to prepare the device for reading clocks and suspend.
	Prepare(context.Context, *empty.Empty) (*SuspendServiceParams, error)
	// GetPerfValues signs in to DUT and measures Android boot performance metrics.
	GetClockValues(context.Context, *SuspendServiceParams) (*GetClockValuesResponse, error)
	// Finalize does some clean-ups.
	Finalize(context.Context, *empty.Empty) (*empty.Empty, error)
}

SuspendServiceServer is the server API for SuspendService service.

type UnimplementedADBOverUSBServiceServer

type UnimplementedADBOverUSBServiceServer struct {
}

UnimplementedADBOverUSBServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedADBOverUSBServiceServer) CheckADBDJobStatus

func (*UnimplementedADBOverUSBServiceServer) SetUDCEnabled

type UnimplementedAdbSideloadServiceServer

type UnimplementedAdbSideloadServiceServer struct {
}

UnimplementedAdbSideloadServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAdbSideloadServiceServer) ConfirmEnablingAdbSideloading

func (*UnimplementedAdbSideloadServiceServer) ConfirmEnablingAdbSideloading(ctx context.Context, req *AdbSideloadServiceRequest) (*empty.Empty, error)

func (*UnimplementedAdbSideloadServiceServer) SetRequestAdbSideloadFlag

func (*UnimplementedAdbSideloadServiceServer) SetRequestAdbSideloadFlag(ctx context.Context, req *SigninRequest) (*empty.Empty, error)

type UnimplementedGmsCoreCacheServiceServer

type UnimplementedGmsCoreCacheServiceServer struct {
}

UnimplementedGmsCoreCacheServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedGmsCoreCacheServiceServer) Generate

type UnimplementedPerfBootServiceServer

type UnimplementedPerfBootServiceServer struct {
}

UnimplementedPerfBootServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedPerfBootServiceServer) GetPerfValues

func (*UnimplementedPerfBootServiceServer) WaitUntilCPUCoolDown

type UnimplementedSuspendServiceServer

type UnimplementedSuspendServiceServer struct {
}

UnimplementedSuspendServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedSuspendServiceServer) Finalize

func (*UnimplementedSuspendServiceServer) GetClockValues

func (*UnimplementedSuspendServiceServer) Prepare

type UnimplementedUreadaheadPackServiceServer

type UnimplementedUreadaheadPackServiceServer struct {
}

UnimplementedUreadaheadPackServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedUreadaheadPackServiceServer) Generate

type UreadaheadPackRequest

type UreadaheadPackRequest struct {

	// Credentials to perform login
	Creds string `protobuf:"bytes,5,opt,name=creds,proto3" json:"creds,omitempty"`
	// contains filtered or unexported fields
}

func (*UreadaheadPackRequest) Descriptor deprecated

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

Deprecated: Use UreadaheadPackRequest.ProtoReflect.Descriptor instead.

func (*UreadaheadPackRequest) GetCreds

func (x *UreadaheadPackRequest) GetCreds() string

func (*UreadaheadPackRequest) ProtoMessage

func (*UreadaheadPackRequest) ProtoMessage()

func (*UreadaheadPackRequest) ProtoReflect

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

func (*UreadaheadPackRequest) Reset

func (x *UreadaheadPackRequest) Reset()

func (*UreadaheadPackRequest) String

func (x *UreadaheadPackRequest) String() string

type UreadaheadPackResponse

type UreadaheadPackResponse struct {

	// Path to generated ureadahead pack.
	PackPath string `protobuf:"bytes,1,opt,name=pack_path,json=packPath,proto3" json:"pack_path,omitempty"`
	// Path to vm generated ureadahead pack.
	VmPackPath string `protobuf:"bytes,2,opt,name=vm_pack_path,json=vmPackPath,proto3" json:"vm_pack_path,omitempty"`
	// Path to log for ureadahead pack generation.
	LogPath string `protobuf:"bytes,3,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
	// contains filtered or unexported fields
}

func (*UreadaheadPackResponse) Descriptor deprecated

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

Deprecated: Use UreadaheadPackResponse.ProtoReflect.Descriptor instead.

func (*UreadaheadPackResponse) GetLogPath

func (x *UreadaheadPackResponse) GetLogPath() string

func (*UreadaheadPackResponse) GetPackPath

func (x *UreadaheadPackResponse) GetPackPath() string

func (*UreadaheadPackResponse) GetVmPackPath

func (x *UreadaheadPackResponse) GetVmPackPath() string

func (*UreadaheadPackResponse) ProtoMessage

func (*UreadaheadPackResponse) ProtoMessage()

func (*UreadaheadPackResponse) ProtoReflect

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

func (*UreadaheadPackResponse) Reset

func (x *UreadaheadPackResponse) Reset()

func (*UreadaheadPackResponse) String

func (x *UreadaheadPackResponse) String() string

type UreadaheadPackServiceClient

type UreadaheadPackServiceClient interface {
	// Generate generates ureadahead pack for requested Chrome login mode, initial or provisioned.
	Generate(ctx context.Context, in *UreadaheadPackRequest, opts ...grpc.CallOption) (*UreadaheadPackResponse, error)
}

UreadaheadPackServiceClient is the client API for UreadaheadPackService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type UreadaheadPackServiceServer

type UreadaheadPackServiceServer interface {
	// Generate generates ureadahead pack for requested Chrome login mode, initial or provisioned.
	Generate(context.Context, *UreadaheadPackRequest) (*UreadaheadPackResponse, error)
}

UreadaheadPackServiceServer is the server API for UreadaheadPackService service.

Jump to

Keyboard shortcuts

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