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

1 2 3 4 5 6 7 8 91011>>

  /art/compiler/linker/
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));
error_delaying_output_stream.h 51 off_t Seek(off_t offset, Whence whence) OVERRIDE {
55 switch (whence) {
63 LOG(FATAL) << "Unsupported seek type: " << whence;
67 off_t actual_offset = output_->Seek(offset, whence);
70 << " whence=" << whence << " new_offset=" << new_offset;
file_output_stream.h 34 off_t Seek(off_t offset, Whence whence) OVERRIDE;
buffered_output_stream.cc 63 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
67 return out_->Seek(offset, whence);
buffered_output_stream.h 36 off_t Seek(off_t offset, Whence whence) OVERRIDE;
output_stream.h 27 enum Whence {
32 std::ostream& operator<<(std::ostream& os, const Whence& rhs);
46 virtual off_t Seek(off_t offset, Whence whence) = 0;
  /external/curl/src/
tool_cb_see.c 47 int tool_seek_cb(void *userdata, curl_off_t offset, int whence)
63 if(whence != SEEK_SET)
82 if(LSEEK_ERROR == lseek(in->fd, offset, whence))
95 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
101 # define _lseeki64(hnd,ofs,whence) _lseek(hnd,ofs,whence)
103 # define _lseeki64(hnd,ofs,whence) _lseek64(hnd,ofs,whence)
110 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence
    [all...]
tool_cb_see.h 43 int tool_seek_cb(void *userdata, curl_off_t offset, int whence);
  /external/strace/
lseek.c 51 int whence; local
61 whence = tcp->u_arg[2];
62 if (whence == SEEK_SET)
66 printxval(whence_codes, whence, "SEEK_???");
74 int whence; local
78 whence = tcp->u_arg[2];
79 if (whence == SEEK_SET)
83 printxval(whence_codes, whence, "SEEK_???");
  /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;
  /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);
  /external/pdfium/third_party/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)
  /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);
  /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);
  /device/google/contexthub/util/common/
file.h 39 off64_t seekTo(off64_t pos, int whence = SEEK_SET);
file.cpp 88 off64_t File::seekTo(off64_t pos, int whence) {
89 off64_t new_pos = lseek64(mFd, pos, whence);
  /external/flac/include/FLAC/
callback.h 123 * \param offset The new position, relative to \a whence
124 * \param whence \c SEEK_SET, \c SEEK_CUR, or \c SEEK_END
128 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 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/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 127 * Seek to the specified offset within the asset data. 'whence' uses the
132 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
135 * Seek to the specified offset within the asset data. 'whence' uses the
143 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence);
  /prebuilts/ndk/current/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/current/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);
  /prebuilts/ndk/current/platforms/android-13/arch-x86/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 2574 milliseconds

1 2 3 4 5 6 7 8 91011>>