-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathigraphicsstats.go
More file actions
182 lines (156 loc) · 5.1 KB
/
igraphicsstats.go
File metadata and controls
182 lines (156 loc) · 5.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package view
import (
"context"
"fmt"
"github.com/AndroidGoLab/binder/binder"
"github.com/AndroidGoLab/binder/parcel"
)
// Code generated by aidlgen. DO NOT EDIT.
const DescriptorIGraphicsStats = "android.view.IGraphicsStats"
const (
TransactionIGraphicsStatsRequestBufferForProcess = binder.FirstCallTransaction + 0
)
const (
MethodIGraphicsStatsRequestBufferForProcess = "requestBufferForProcess"
)
type IGraphicsStats interface {
AsBinder() binder.IBinder
RequestBufferForProcess(ctx context.Context, packageName string, callback IGraphicsStatsCallback) (int32, error)
}
type GraphicsStatsProxy struct {
Remote binder.IBinder
}
func NewGraphicsStatsProxy(
remote binder.IBinder,
) *GraphicsStatsProxy {
return &GraphicsStatsProxy{Remote: remote}
}
func (p *GraphicsStatsProxy) AsBinder() binder.IBinder {
return p.Remote
}
var _ IGraphicsStats = (*GraphicsStatsProxy)(nil)
func (p *GraphicsStatsProxy) RequestBufferForProcess(
ctx context.Context,
packageName string,
callback IGraphicsStatsCallback,
) (int32, error) {
var _result int32
_data := parcel.New()
defer _data.Recycle()
_data.WriteInterfaceToken(DescriptorIGraphicsStats)
_sig := binder.ResolveMethodSignature(p.Remote, ctx, DescriptorIGraphicsStats, MethodIGraphicsStatsRequestBufferForProcess)
_compiledDescs := []string{
"Ljava/lang/String;",
"Landroid/view/IGraphicsStatsCallback;",
}
if _sig == nil || binder.SignatureMatches(_compiledDescs, _sig) {
_data.WriteString16(packageName)
binder.WriteBinderToParcel(ctx, _data, callback.AsBinder(), p.Remote.Transport())
} else {
_paramMap := binder.MatchParamsToSignature(_compiledDescs, _sig)
for _, _pi := range _paramMap {
switch _pi {
case 0:
_data.WriteString16(packageName)
case 1:
binder.WriteBinderToParcel(ctx, _data, callback.AsBinder(), p.Remote.Transport())
}
}
}
_code, _err := p.Remote.ResolveCode(ctx, DescriptorIGraphicsStats, MethodIGraphicsStatsRequestBufferForProcess)
if _err != nil {
return _result, fmt.Errorf("resolving %s.%s: %w", DescriptorIGraphicsStats, MethodIGraphicsStatsRequestBufferForProcess, _err)
}
_reply, _err := p.Remote.Transact(ctx, _code, 0, _data)
if _err != nil {
return _result, _err
}
defer _reply.Recycle()
if _err = binder.ReadStatus(_reply); _err != nil {
return _result, _err
}
_result, _err = _reply.ReadParcelFileDescriptor()
if _err != nil {
return _result, _err
}
return _result, nil
}
// GraphicsStatsStub dispatches incoming binder transactions
// to a typed IGraphicsStats implementation.
type GraphicsStatsStub struct {
Impl IGraphicsStats
Transport binder.VersionAwareTransport
}
var _ binder.TransactionReceiver = (*GraphicsStatsStub)(nil)
func (s *GraphicsStatsStub) Descriptor() string {
return DescriptorIGraphicsStats
}
func (s *GraphicsStatsStub) OnTransaction(
ctx context.Context,
code binder.TransactionCode,
_data *parcel.Parcel,
) (*parcel.Parcel, error) {
if _, _err := _data.ReadInterfaceToken(); _err != nil {
return nil, _err
}
switch code {
case TransactionIGraphicsStatsRequestBufferForProcess:
_arg_packageName, _err := _data.ReadString16()
if _err != nil {
return nil, _err
}
var _arg_callback IGraphicsStatsCallback
{
_callbackHandle, _err := _data.ReadStrongBinder()
if _err != nil {
return nil, _err
}
_arg_callback = NewGraphicsStatsCallbackProxy(binder.NewProxyBinder(s.Transport, binder.CallerIdentity{}, _callbackHandle))
}
_result, _err := s.Impl.RequestBufferForProcess(ctx, _arg_packageName, _arg_callback)
_reply := parcel.New()
if _err != nil {
binder.WriteStatus(_reply, _err)
return _reply, nil
}
binder.WriteStatus(_reply, nil)
_reply.WriteParcelFileDescriptor(_result)
return _reply, nil
default:
return nil, fmt.Errorf("unknown transaction code %d", code)
}
}
// IGraphicsStatsServer is the server-side interface that user implementations
// provide to NewGraphicsStatsStub. It contains only the business methods,
// without AsBinder (which is provided by the stub itself).
type IGraphicsStatsServer interface {
RequestBufferForProcess(ctx context.Context, packageName string, callback IGraphicsStatsCallback) (int32, error)
}
type graphicsStatsStubWrapper struct {
impl IGraphicsStatsServer
stubBinder *binder.StubBinder
}
func (w *graphicsStatsStubWrapper) AsBinder() binder.IBinder {
return w.stubBinder
}
func (w *graphicsStatsStubWrapper) RequestBufferForProcess(
ctx context.Context,
packageName string,
callback IGraphicsStatsCallback,
) (int32, error) {
return w.impl.RequestBufferForProcess(ctx, packageName, callback)
}
var _ IGraphicsStats = (*graphicsStatsStubWrapper)(nil)
// NewGraphicsStatsStub creates a server-side IGraphicsStats wrapping the given
// server implementation. The returned value satisfies IGraphicsStats
// and can be passed to proxy methods; its AsBinder() returns a
// *binder.StubBinder that is auto-registered with the binder
// driver on first use.
func NewGraphicsStatsStub(
impl IGraphicsStatsServer,
) IGraphicsStats {
wrapper := &graphicsStatsStubWrapper{impl: impl}
stub := &GraphicsStatsStub{Impl: wrapper}
wrapper.stubBinder = binder.NewStubBinder(stub)
return wrapper
}