github.com/hanwen/go-fuse@v1.0.0/splice/pair_darwin.go (about)

     1  // Copyright 2016 the Go-FUSE Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package splice
     6  
     7  import ()
     8  
     9  func (p *Pair) LoadFromAt(fd uintptr, sz int, off int64) (int, error) {
    10  	panic("not implemented")
    11  	return 0, nil
    12  }
    13  
    14  func (p *Pair) LoadFrom(fd uintptr, sz int) (int, error) {
    15  	panic("not implemented")
    16  	return 0, nil
    17  }
    18  
    19  func (p *Pair) WriteTo(fd uintptr, n int) (int, error) {
    20  	panic("not implemented")
    21  	return 0, nil
    22  }