HomeSort by relevance Sort by last modified time
    Searched refs:whence (Results 1 - 25 of 266) sorted by null

1 2 3 4 5 6 7 8 91011

  /art/compiler/
vector_output_stream.cc 26 off_t VectorOutputStream::Seek(off_t offset, Whence whence) {
27 CHECK(whence == kSeekSet || whence == kSeekCurrent || whence == kSeekEnd) << whence;
29 switch (whence) {
file_output_stream.cc 32 off_t FileOutputStream::Seek(off_t offset, Whence whence) {
33 return lseek(file_->Fd(), offset, static_cast<int>(whence));
file_output_stream.h 34 virtual off_t Seek(off_t offset, Whence whence);
buffered_output_stream.cc 52 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
56 return out_->Seek(offset, whence);
buffered_output_stream.h 36 virtual off_t Seek(off_t offset, Whence whence);
output_stream.h 29 enum Whence {
47 virtual off_t Seek(off_t offset, Whence whence) = 0;
  /system/core/include/utils/
Compat.h 30 static inline off64_t lseek64(int fd, off64_t offset, int whence) {
31 return lseek(fd, offset, whence);
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
opj_includes.h 78 # define OPJ_FSEEK(stream,offset,whence) _fseeki64(stream,/* __int64 */ offset,whence)
84 # define OPJ_FSEEK(stream,offset,whence) fseek(stream,offset,whence)
  /external/libvpx/libvpx/test/
webm_video_source.h 37 nestegg_seek_cb(int64_t offset, int whence, void *userdata) {
39 switch (whence) {
41 whence = SEEK_SET;
44 whence = SEEK_CUR;
47 whence = SEEK_END;
50 return fseek(f, (long)offset, whence) ? -1 : 0;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
webm_video_source.h 37 nestegg_seek_cb(int64_t offset, int whence, void *userdata) {
39 switch (whence) {
41 whence = SEEK_SET;
44 whence = SEEK_CUR;
47 whence = SEEK_END;
50 return fseek(f, (long)offset, whence) ? -1 : 0;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
fdopen.c 22 static int fdopen_seek(void *cookie, off_t *offset, int whence) {
23 off_t ret = lseek((int) cookie, *offset, whence);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.h 55 * @param[in] whence One of SEEK_SET, SEEK_CUR, and SEEK_END.
60 off64_t FwdLockFile_lseek(int fileDesc, off64_t offset, int whence);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fseek.c 46 * `Whence' must be one of the three SEEK_* macros.
49 fseeko(FILE *fp, off_t offset, int whence)
70 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
71 * After this, whence is either SEEK_SET or SEEK_END.
74 switch (whence) {
100 whence = SEEK_SET;
143 if (whence == SEEK_SET)
232 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
248 fseek(FILE *fp, long offset, int whence)
250 return (fseeko(fp, offset, whence));
    [all...]
stdio.c 70 __sseek(void *cookie, fpos_t offset, int whence)
75 ret = lseek(fp->_file, (off_t)offset, whence);
  /external/libvpx/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;
  /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/e2fsprogs/lib/blkid/
llseek.c 90 blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence)
97 return lseek(fd, (off_t) offset, whence);
104 result = my_llseek(fd, offset, whence);
  /external/flac/include/FLAC/
callback.h 122 * \param offset The new position, relative to \a whence
123 * \param whence \c SEEK_SET, \c SEEK_CUR, or \c SEEK_END
127 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
browser.h 26 void (*seek)(struct ui_browser *self, off_t offset, int whence);
63 void ui_browser__argv_seek(struct ui_browser *browser, off_t offset, int whence);
66 void ui_browser__rb_tree_seek(struct ui_browser *self, off_t offset, int whence);
69 void ui_browser__list_head_seek(struct ui_browser *self, off_t offset, int whence);
  /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);
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_fdio.cc 42 int IrtSeek(int fd, nacl_abi_off_t offset, int whence,
44 return CheckErrorWithResult(lseek(fd, offset, whence), new_offset);
  /external/clang/test/Analysis/
stream.c 46 fseek(p, 1, 3); // expected-warning {{The whence argument to fseek() should be SEEK_SET, SEEK_END, or SEEK_CUR}}
81 // PR 8081 - null pointer crash when 'whence' is not an integer constant
82 void pr8081(FILE *stream, long offset, int whence) {
83 fseek(stream, offset, whence);
  /frameworks/native/include/android/
asset_manager.h 89 * Seek to the specified offset within the asset data. 'whence' uses the
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
97 * Seek to the specified offset within the asset data. 'whence' uses the
105 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence);
  /prebuilts/ndk/9/platforms/android-13/arch-arm/usr/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);
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/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 566 milliseconds

1 2 3 4 5 6 7 8 91011