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

1 2 3 4 5 6 7 8

  /bionic/libc/bionic/
lseek64.c 30 extern int __llseek(int fd, unsigned long offset_hi, unsigned long offset_lo, loff_t* result, int whence);
32 off64_t lseek64(int fd, off64_t off, int whence)
36 if ( __llseek(fd, (unsigned long)(off >> 32),(unsigned long)(off), &result, whence ) < 0 )
  /frameworks/native/include/utils/
Compat.h 30 static inline off64_t lseek64(int fd, off64_t offset, int whence) {
31 return lseek(fd, 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);
  /external/linux-tools-perf/util/ui/
browser.h 23 void (*seek)(struct ui_browser *self, off_t offset, int whence);
45 void ui_browser__rb_tree_seek(struct ui_browser *self, off_t offset, int whence);
48 void ui_browser__list_head_seek(struct ui_browser *self, off_t offset, int whence);
  /external/marisa-trie/lib/marisa/
tail.h 17 long offset = 0, int whence = SEEK_SET);
22 long offset = 0, int whence = SEEK_SET);
29 long offset = 0, int whence = SEEK_SET) const;
intvector.cc 44 long offset, int whence) {
47 temp_mapper.open(filename, offset, whence);
67 long offset, int whence) {
69 reader.open(filename, offset, whence);
98 long offset, int whence) const {
100 writer.open(filename, trunc_flag, offset, whence);
bitvector.h 23 long offset = 0, int whence = SEEK_SET);
28 long offset = 0, int whence = SEEK_SET);
35 long offset = 0, int whence = SEEK_SET) const;
mapper.h 16 void open(const char *filename, long offset = 0, int whence = SEEK_SET);
51 void seek(long offset, int whence);
intvector.h 16 long offset = 0, int whence = SEEK_SET);
21 long offset = 0, int whence = SEEK_SET);
28 long offset = 0, int whence = SEEK_SET) const;
vector.h 15 long offset = 0, int whence = SEEK_SET);
20 long offset = 0, int whence = SEEK_SET);
27 long offset = 0, int whence = SEEK_SET) const;
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
tail.h 17 long offset = 0, int whence = SEEK_SET);
22 long offset = 0, int whence = SEEK_SET);
29 long offset = 0, int whence = SEEK_SET) const;
intvector.cc 44 long offset, int whence) {
47 temp_mapper.open(filename, offset, whence);
67 long offset, int whence) {
69 reader.open(filename, offset, whence);
98 long offset, int whence) const {
100 writer.open(filename, trunc_flag, offset, whence);
bitvector.h 23 long offset = 0, int whence = SEEK_SET);
28 long offset = 0, int whence = SEEK_SET);
35 long offset = 0, int whence = SEEK_SET) const;
mapper.h 16 void open(const char *filename, long offset = 0, int whence = SEEK_SET);
52 void seek(long offset, int whence);
intvector.h 16 long offset = 0, int whence = SEEK_SET);
21 long offset = 0, int whence = SEEK_SET);
28 long offset = 0, int whence = SEEK_SET) const;
vector.h 15 long offset = 0, int whence = SEEK_SET);
20 long offset = 0, int whence = SEEK_SET);
27 long offset = 0, int whence = SEEK_SET) const;
  /bionic/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) {
254 fseek(FILE *fp, long offset, int whence)
258 return(fseeko(fp, off, whence));
    [all...]
stdio.c 70 __sseek(void *cookie, fpos_t offset, int whence)
75 ret = lseek(fp->_file, (off_t)offset, whence);
  /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/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);
  /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);
  /external/stlport/src/
stdio_streambuf.cpp 78 int whence; local
81 whence = SEEK_SET;
84 whence = SEEK_CUR;
87 whence = SEEK_END;
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 78 int whence; local
81 whence = SEEK_SET;
84 whence = SEEK_CUR;
87 whence = SEEK_END;
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {

Completed in 1191 milliseconds

1 2 3 4 5 6 7 8