-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathionprimaryclipchangedlistener.go
More file actions
126 lines (102 loc) · 3.99 KB
/
ionprimaryclipchangedlistener.go
File metadata and controls
126 lines (102 loc) · 3.99 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
package content
import (
"context"
"fmt"
"github.com/AndroidGoLab/binder/binder"
"github.com/AndroidGoLab/binder/parcel"
)
// Code generated by aidlgen. DO NOT EDIT.
const DescriptorIOnPrimaryClipChangedListener = "android.content.IOnPrimaryClipChangedListener"
const (
TransactionIOnPrimaryClipChangedListenerDispatchPrimaryClipChanged = binder.FirstCallTransaction + 0
)
const (
MethodIOnPrimaryClipChangedListenerDispatchPrimaryClipChanged = "dispatchPrimaryClipChanged"
)
type IOnPrimaryClipChangedListener interface {
AsBinder() binder.IBinder
DispatchPrimaryClipChanged(ctx context.Context) error
}
type OnPrimaryClipChangedListenerProxy struct {
Remote binder.IBinder
}
func NewOnPrimaryClipChangedListenerProxy(
remote binder.IBinder,
) *OnPrimaryClipChangedListenerProxy {
return &OnPrimaryClipChangedListenerProxy{Remote: remote}
}
func (p *OnPrimaryClipChangedListenerProxy) AsBinder() binder.IBinder {
return p.Remote
}
var _ IOnPrimaryClipChangedListener = (*OnPrimaryClipChangedListenerProxy)(nil)
func (p *OnPrimaryClipChangedListenerProxy) DispatchPrimaryClipChanged(
ctx context.Context,
) error {
_data := parcel.New()
defer _data.Recycle()
_data.WriteInterfaceToken(DescriptorIOnPrimaryClipChangedListener)
_code, _err := p.Remote.ResolveCode(ctx, DescriptorIOnPrimaryClipChangedListener, MethodIOnPrimaryClipChangedListenerDispatchPrimaryClipChanged)
if _err != nil {
return fmt.Errorf("resolving %s.%s: %w", DescriptorIOnPrimaryClipChangedListener, MethodIOnPrimaryClipChangedListenerDispatchPrimaryClipChanged, _err)
}
_, _err = p.Remote.Transact(ctx, _code, binder.FlagOneway, _data)
return _err
}
// OnPrimaryClipChangedListenerStub dispatches incoming binder transactions
// to a typed IOnPrimaryClipChangedListener implementation.
type OnPrimaryClipChangedListenerStub struct {
Impl IOnPrimaryClipChangedListener
Transport binder.VersionAwareTransport
}
var _ binder.TransactionReceiver = (*OnPrimaryClipChangedListenerStub)(nil)
func (s *OnPrimaryClipChangedListenerStub) Descriptor() string {
return DescriptorIOnPrimaryClipChangedListener
}
func (s *OnPrimaryClipChangedListenerStub) 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 TransactionIOnPrimaryClipChangedListenerDispatchPrimaryClipChanged:
_err := s.Impl.DispatchPrimaryClipChanged(ctx)
return nil, _err
default:
return nil, fmt.Errorf("unknown transaction code %d", code)
}
}
// IOnPrimaryClipChangedListenerServer is the server-side interface that user implementations
// provide to NewOnPrimaryClipChangedListenerStub. It contains only the business methods,
// without AsBinder (which is provided by the stub itself).
type IOnPrimaryClipChangedListenerServer interface {
DispatchPrimaryClipChanged(ctx context.Context) error
}
type onPrimaryClipChangedListenerStubWrapper struct {
impl IOnPrimaryClipChangedListenerServer
stubBinder *binder.StubBinder
}
func (w *onPrimaryClipChangedListenerStubWrapper) AsBinder() binder.IBinder {
return w.stubBinder
}
func (w *onPrimaryClipChangedListenerStubWrapper) DispatchPrimaryClipChanged(
ctx context.Context,
) error {
return w.impl.DispatchPrimaryClipChanged(ctx)
}
var _ IOnPrimaryClipChangedListener = (*onPrimaryClipChangedListenerStubWrapper)(nil)
// NewOnPrimaryClipChangedListenerStub creates a server-side IOnPrimaryClipChangedListener wrapping the given
// server implementation. The returned value satisfies IOnPrimaryClipChangedListener
// 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 NewOnPrimaryClipChangedListenerStub(
impl IOnPrimaryClipChangedListenerServer,
) IOnPrimaryClipChangedListener {
wrapper := &onPrimaryClipChangedListenerStubWrapper{impl: impl}
stub := &OnPrimaryClipChangedListenerStub{Impl: wrapper}
wrapper.stubBinder = binder.NewStubBinder(stub)
return wrapper
}