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

12 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
keyfile.py 51 def seek(self, pos, whence=os.SEEK_SET):
53 if whence == os.SEEK_END:
69 if whence == os.SEEK_SET:
72 elif whence == os.SEEK_CUR:
75 raise IOError('Invalid whence param (%d) passed to seek' % whence)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
webmdec.c 29 static int nestegg_seek_cb(int64_t offset, int whence, void *userdata) {
30 switch (whence) {
32 whence = SEEK_SET;
35 whence = SEEK_CUR;
38 whence = SEEK_END;
41 return fseek(userdata, (int32_t)offset, whence) ? -1 : 0;
  /external/pdfium/third_party/libtiff/
tiffiop.h 221 #define TIFFSeekFile(tif, off, whence) \
222 ((*(tif)->tif_seekproc)((tif)->tif_clientdata,(off),(whence)))
285 # define fseek(stream,offset,whence) fseeko(stream,offset,whence)
286 # define ftell(stream,offset,whence) ftello(stream,offset,whence)
293 #define _TIFF_lseek_f(fildes,offset,whence) _lseeki64(fildes,/* __int64 */ offset,whence)
295 #define _TIFF_fseek_f(stream,offset,whence) _fseeki64(stream,/* __int64 */ offset,whence)
    [all...]
  /external/libvorbis/include/vorbis/
vorbisfile.h 41 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
53 static int _ov_header_fseek_wrap(FILE *f,ogg_int64_t off,int whence){
57 return fseeko64(f,off,whence);
59 return _fseeki64(f,off,whence);
61 return fseek(f,off,whence);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
multifile.py 58 def seek(self, pos, whence=0):
60 if whence:
61 if whence == 1:
63 elif whence == 2:
67 raise Error, "can't use whence=2 yet"
  /prebuilts/gdb/linux-x86/lib/python2.7/
multifile.py 58 def seek(self, pos, whence=0):
60 if whence:
61 if whence == 1:
63 elif whence == 2:
67 raise Error, "can't use whence=2 yet"
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_rwops.h 60 * Seek to \c offset relative to \c whence, one of stdio's whence values:
66 int whence);
185 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_rwops.h 60 * Seek to \c offset relative to \c whence, one of stdio's whence values:
66 int whence);
185 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilts/misc/windows/sdl2/include/
SDL_rwops.h 60 * Seek to \c offset relative to \c whence, one of stdio's whence values:
66 int whence);
185 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_rwops.h 60 * Seek to \c offset relative to \c whence, one of stdio's whence values:
66 int whence);
185 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 58 def seek(self, pos, whence=0):
60 if whence:
61 if whence == 1:
63 elif whence == 2:
67 raise Error, "can't use whence=2 yet"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 58 def seek(self, pos, whence=0):
60 if whence:
61 if whence == 1:
63 elif whence == 2:
67 raise Error, "can't use whence=2 yet"
  /bionic/libc/stdio/
stdio.cpp 411 fpos_t __sseek(void* cookie, fpos_t offset, int whence) {
413 return TEMP_FAILURE_RETRY(lseek(fp->_file, offset, whence));
416 off64_t __sseek64(void* cookie, off64_t offset, int whence) {
418 return TEMP_FAILURE_RETRY(lseek64(fp->_file, offset, whence));
426 static off64_t __seek_unlocked(FILE* fp, off64_t offset, int whence) {
429 return (*_EXT(fp)->_seek64)(fp->_cookie, offset, whence);
431 off64_t result = (*fp->_seek)(fp->_cookie, offset, whence);
466 int __fseeko64(FILE* fp, off64_t offset, int whence, int off_t_bits) {
469 // Change any SEEK_CUR to SEEK_SET, and check `whence` argument.
470 // After this, whence is either SEEK_SET or SEEK_END
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_file_part.py 55 fp.seek(offset, whence=os.SEEK_CUR)
60 fp.seek(-offset, whence=os.SEEK_END)
65 fp.seek(1, whence=os.SEEK_END)
  /system/extras/libfec/include/fec/
io.h 104 extern int fec_seek(struct fec_handle *f, int64_t offset, int whence);
149 bool seek(int64_t offset, int whence) {
150 return !fec_seek(handle_.get(), offset, whence);
  /external/libbrillo/brillo/streams/
tls_stream.h 49 Whence whence,
  /prebuilts/go/darwin-x86/src/syscall/
zsyscall_nacl_386.go 59 func naclSeek(fd int, off *int64, whence int) (err error) {
60 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)), uintptr(whence))
zsyscall_nacl_amd64p32.go 59 func naclSeek(fd int, off *int64, whence int) (err error) {
60 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)), uintptr(whence))
zsyscall_nacl_arm.go 59 func naclSeek(fd int, off *int64, whence int) (err error) {
60 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)), uintptr(whence))
  /prebuilts/go/linux-x86/src/syscall/
zsyscall_nacl_386.go 59 func naclSeek(fd int, off *int64, whence int) (err error) {
60 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)), uintptr(whence))
zsyscall_nacl_amd64p32.go 59 func naclSeek(fd int, off *int64, whence int) (err error) {
60 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)), uintptr(whence))
zsyscall_nacl_arm.go 59 func naclSeek(fd int, off *int64, whence int) (err error) {
60 _, _, e1 := Syscall(sys_lseek, uintptr(fd), uintptr(unsafe.Pointer(off)), uintptr(whence))
  /system/core/include/utils/
Compat.h 28 static inline off64_t lseek64(int fd, off64_t offset, int whence) {
29 return lseek(fd, offset, whence);
  /system/update_engine/payload_consumer/
mtd_file_descriptor.h 42 off64_t Seek(off64_t offset, int whence) override;
78 off64_t Seek(off64_t offset, int whence) override;
  /development/ndk/platforms/android-13/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
99 * Seek to the specified offset within the asset data. 'whence' uses the
107 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence);

Completed in 1397 milliseconds

12 3 4 5 6 7 8 91011>>