Versions in this module Expand all Collapse all v0 v0.0.6 Mar 22, 2026 Changes in this version + var ErrDriverClosed = errors.New("binder: driver is closed") — linux/amd64 + type Driver struct — linux/amd64 + func Open(ctx context.Context, opts ...binder.Option) (_driver *Driver, _err error) + func (d *Driver) AcquireHandle(ctx context.Context, handle uint32) (_err error) + func (d *Driver) ClearDeathNotification(ctx context.Context, handle uint32, recipient binder.DeathRecipient) (_err error) + func (d *Driver) Close(ctx context.Context) (_err error) + func (d *Driver) RegisterReceiver(ctx context.Context, receiver binder.TransactionReceiver) uintptr + func (d *Driver) ReleaseHandle(ctx context.Context, handle uint32) (_err error) + func (d *Driver) Reply(ctx context.Context, reply *parcel.Parcel) (_err error) + func (d *Driver) RequestDeathNotification(ctx context.Context, handle uint32, recipient binder.DeathRecipient) (_err error) + func (d *Driver) Transact(ctx context.Context, handle uint32, code binder.TransactionCode, ...) (_reply *parcel.Parcel, _err error) + func (d *Driver) UnregisterReceiver(ctx context.Context, cookie uintptr)