/prebuilts/go/darwin-x86/src/os/ |
file_unix.go | 262 // according to whence: 0 means relative to the origin of the file, 1 means 265 func (f *File) seek(offset int64, whence int) (ret int64, err error) { 266 return syscall.Seek(f.fd, offset, whence)
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_linux_386.go | 166 func seek(fd int, offset int64, whence int) (newoffset int64, err Errno) 168 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { 169 newoffset, errno := seek(fd, offset, whence)
|
/prebuilts/go/linux-x86/src/os/ |
file_plan9.go | 281 // according to whence: 0 means relative to the origin of the file, 1 means 284 func (f *File) seek(offset int64, whence int) (ret int64, err error) { 285 return syscall.Seek(f.fd, offset, whence)
|
file_unix.go | 262 // according to whence: 0 means relative to the origin of the file, 1 means 265 func (f *File) seek(offset int64, whence int) (ret int64, err error) { 266 return syscall.Seek(f.fd, offset, whence)
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_linux_386.go | 166 func seek(fd int, offset int64, whence int) (newoffset int64, err Errno) 168 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { 169 newoffset, errno := seek(fd, offset, whence)
|
/toolchain/binutils/binutils-2.25/bfd/ |
cache.c | 267 cache_bseek (struct bfd *abfd, file_ptr offset, int whence) 269 FILE *f = bfd_cache_lookup (abfd, whence != SEEK_CUR ? CACHE_NO_SEEK : CACHE_NORMAL); 272 return real_fseek (f, offset, whence);
|
/external/libbrillo/brillo/streams/ |
fake_stream.cc | 175 Whence /* whence */,
|
input_stream_set_unittest.cc | 54 EXPECT_FALSE(stream_->Seek(0, Stream::Whence::FROM_BEGIN, nullptr, nullptr));
|
/external/opencv3/3rdparty/libtiff/ |
tif_win32.c | 96 _tiffSeekProc(thandle_t fd, uint64 off, int whence) 101 switch(whence)
|
/libcore/luni/src/main/java/libcore/io/ |
BlockGuardOs.java | 162 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { 164 return os.lseek(fd, offset, whence);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_gzip.py | 170 # Try seek(whence=1), read test 174 f.seek(10, whence=1)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_gzip.py | 170 # Try seek(whence=1), read test 174 f.seek(10, whence=1)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_gzip.py | 170 # Try seek(whence=1), read test 174 f.seek(10, whence=1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_gzip.py | 170 # Try seek(whence=1), read test 174 f.seek(10, whence=1)
|
/development/ndk/platforms/android-12/include/ |
unistd.h | 46 /* Values for whence in fseek and lseek */
|
/development/ndk/platforms/android-21/include/ |
unistd.h | 45 /* Values for whence in fseek and lseek */
|
/development/ndk/platforms/android-3/include/ |
unistd.h | 46 /* Values for whence in fseek and lseek */
|
/development/ndk/platforms/android-8/include/ |
unistd.h | 46 /* Values for whence in fseek and lseek */
|
/development/ndk/platforms/android-9/include/ |
unistd.h | 46 /* Values for whence in fseek and lseek */
|
/external/curl/lib/ |
curl_setup.h | 360 # define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence) 379 # define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence)
|
/external/e2fsprogs/lib/blkid/ |
blkidP.h | 163 extern blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence);
|
/external/gemmlowp/profiling/ |
instrumentation.h | 206 // (whence the name --- also known as RAII).
|
/external/libcxx/include/ |
cstdio | 87 int fseek(FILE* stream, long offset, int whence);
|
/external/libvorbis/doc/vorbisfile/ |
ov_callbacks.html | 40 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
|
/external/skia/gm/ |
etc1bitmap.cpp | 64 // Stick the data back whence it came
|