Home
last modified time | relevance | path

Searched defs:ledgerDriver (Results 1 – 2 of 2) sorted by relevance

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/accounts/usbwallet/
H A Dledger.go71 type ledgerDriver struct { struct
72 device io.ReadWriter // USB device connection to communicate through
75 failure error // Any failure that would make the device unusable
76 log log.Logger // Contextual logger to tag the ledger with its id
88 func (w *ledgerDriver) Status() (string, error) {
104 func (w *ledgerDriver) offline() bool {
111 func (w *ledgerDriver) Open(device io.ReadWriter, passphrase string) error {
131 func (w *ledgerDriver) Close() error {
138 func (w *ledgerDriver) Heartbeat() error {
148 func (w *ledgerDriver) Derive(path accounts.DerivationPath) (common.Address, error) {
[all …]
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/streamcache/
H A Dcursor.go76 c.pos = pos
82 func (c *cursor) Position() int64 {
83 c.m.RLock()
84 defer c.m.RUnlock()
92 func newNotifier() *notifier { return &notifier{C: make(chan struct{}, 1)} }