HomeSort by relevance Sort by last modified time
    Searched full:whence (Results 476 - 500 of 919) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/syscall/
zsyscall_darwin_arm64.go 1059 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
1060 r0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))
zsyscall_dragonfly_amd64.go 979 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
980 r0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)
zsyscall_freebsd_386.go 979 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
980 r0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(offset>>32), uintptr(whence), 0, 0)
zsyscall_freebsd_amd64.go 979 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
980 r0, _, e1 := Syscall(SYS_LSEEK, uintptr(fd), uintptr(offset), uintptr(whence))
zsyscall_freebsd_arm.go 979 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
980 r0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)
zsyscall_netbsd_386.go 961 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
962 r0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)
zsyscall_netbsd_amd64.go 961 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
962 r0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)
zsyscall_netbsd_arm.go 961 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
962 r0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)
zsyscall_openbsd_386.go 969 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
970 r0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)
zsyscall_openbsd_amd64.go 969 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
970 r0, _, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(whence), 0, 0)
zsyscall_openbsd_arm.go 969 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
970 r0, r1, e1 := Syscall6(SYS_LSEEK, uintptr(fd), 0, uintptr(offset), uintptr(offset>>32), uintptr(whence), 0)
  /toolchain/binutils/binutils-2.25/bfd/
libbfd.h 778 extern int real_fseek (FILE *file, file_ptr offset, int whence);
871 int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
    [all...]
opncls.c 485 opncls_bseek (struct bfd *abfd, file_ptr offset, int whence)
488 switch (whence)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
serialutil.py 208 def seek(self, pos, whence=0):
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.h 804 int whence);
    [all...]
  /external/gemmlowp/internal/
pack.h 41 // (whence the generic 'Side' name).
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/data/rbbi/
words.txt 2886 whence
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/rbbi/
words.txt 2886 whence
  /external/mksh/src/
funcs.c 144 {"whence", c_whence},
546 * Convert command options to whence options - note that
547 * command -pV uses a different path search than whence -v
548 * or whence -pv. This should be considered a feature.
    [all...]
  /frameworks/base/core/java/android/content/res/
AssetManager.java 783 private native final long seekAsset(long asset, long offset, int whence);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tarfile.py 873 def seek(self, pos, whence=os.SEEK_SET):
879 if whence == os.SEEK_SET:
881 elif whence == os.SEEK_CUR:
886 elif whence == os.SEEK_END:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
tarfile.py 873 def seek(self, pos, whence=os.SEEK_SET):
879 if whence == os.SEEK_SET:
881 elif whence == os.SEEK_CUR:
886 elif whence == os.SEEK_END:
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
fs.go 66 Seek(offset int64, whence int) (int64, error)
  /prebuilts/go/darwin-x86/src/syscall/
syscall_solaris.go 475 //sys Seek(fd int, offset int64, whence int) (newoffset int64, err error) = lseek
zsysnum_netbsd_386.go 105 SYS_LSEEK = 199 // { off_t|sys||lseek(int fd, int PAD, off_t offset, int whence); }

Completed in 1521 milliseconds

<<11121314151617181920>>