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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fsetpos.c 42 return (fseeko(iop, (off_t)*pos, SEEK_SET));
rewind.c 40 (void) fseek(fp, 0L, SEEK_SET);
  /external/strace/xlat/
whence_codes.h 4 #if defined(SEEK_SET) || (defined(HAVE_DECL_SEEK_SET) && HAVE_DECL_SEEK_SET)
5 XLAT(SEEK_SET),
  /external/chromium_org/third_party/ots/test/
file-stream.h 32 if (!::_fseeki64(file_, position, SEEK_SET)) {
37 if (!::fseeko(file_, position, SEEK_SET)) {
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvreader.cpp 68 status = _fseeki64(m_file, 0L, SEEK_SET);
73 fseek(m_file, 0L, SEEK_SET);
116 const int status = _fseeki64(m_file, offset, SEEK_SET);
121 fseek(m_file, offset, SEEK_SET);
mkvwriter.cpp 80 return _fseeki64(file_, position, SEEK_SET);
82 return fseek(file_, position, SEEK_SET);
  /external/libvpx/libvpx/third_party/libwebm/
mkvreader.cpp 75 status = _fseeki64(m_file, 0L, SEEK_SET);
80 fseek(m_file, 0L, SEEK_SET);
127 const int status = _fseeki64(m_file, offset, SEEK_SET);
132 fseek(m_file, offset, SEEK_SET);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvreader.cpp 60 status = _fseeki64(m_file, 0L, SEEK_SET);
65 fseek(m_file, 0L, SEEK_SET);
112 const int status = _fseeki64(m_file, offset, SEEK_SET);
117 fseek(m_file, offset, SEEK_SET);
  /external/yaffs2/yaffs2/direct/
yaffs_fileem.c 100 lseek(filedisk.handle,0,SEEK_SET);
129 lseek(filedisk.handle,chunkInNAND * 528,SEEK_SET);
137 lseek(filedisk.handle,chunkInNAND * 528 + 512,SEEK_SET);
159 lseek(filedisk.handle,chunkInNAND * 528,SEEK_SET);
167 lseek(filedisk.handle,chunkInNAND * 528 + 512,SEEK_SET);
198 lseek(filedisk.handle, blockNumber * 32 * 528, SEEK_SET);
  /frameworks/av/cmds/stagefright/
WaveWriter.h 39 fseek(mFile, 40, SEEK_SET);
42 fseek(mFile, 4, SEEK_SET);
  /external/jpeg/
jmemansi.c 25 #ifndef SEEK_SET /* pre-ANSI systems may not define this; */
26 #define SEEK_SET 0 /* if not, assume 0 is correct */
101 if (fseek(info->temp_file, file_offset, SEEK_SET))
114 if (fseek(info->temp_file, file_offset, SEEK_SET))
jmem-android.c 27 #ifndef SEEK_SET /* pre-ANSI systems may not define this; */
28 #define SEEK_SET 0 /* if not, assume 0 is correct */
103 if (fseek(info->temp_file, file_offset, SEEK_SET))
116 if (fseek(info->temp_file, file_offset, SEEK_SET))
  /external/qemu/distrib/jpeg-6b/
jmemansi.c 25 #ifndef SEEK_SET /* pre-ANSI systems may not define this; */
26 #define SEEK_SET 0 /* if not, assume 0 is correct */
101 if (fseek(info->temp_file, file_offset, SEEK_SET))
114 if (fseek(info->temp_file, file_offset, SEEK_SET))
jmem-android.c 27 #ifndef SEEK_SET /* pre-ANSI systems may not define this; */
28 #define SEEK_SET 0 /* if not, assume 0 is correct */
103 if (fseek(info->temp_file, file_offset, SEEK_SET))
116 if (fseek(info->temp_file, file_offset, SEEK_SET))
  /external/clang/test/Analysis/
stream.c 5 #define SEEK_SET 0 /* Seek from beginning of file. */
25 fseek(p, 1, SEEK_SET); // expected-warning {{Stream pointer might be NULL}}
45 fseek(p, 1, SEEK_SET); // no-warning
46 fseek(p, 1, 3); // expected-warning {{The whence argument to fseek() should be SEEK_SET, SEEK_END, or SEEK_CUR}}
  /external/f2fs-tools/lib/
libf2fs_io.c 33 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
42 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
54 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
  /bionic/tests/
sys_mman_test.cpp 74 lseek(tf.fd, 0, SEEK_SET);
103 ASSERT_NE(-1, lseek(tf.fd, pagesize, SEEK_SET));
105 ASSERT_NE(-1, lseek(tf.fd, 2 * pagesize, SEEK_SET));
107 ASSERT_NE(-1, lseek(tf.fd, 3 * pagesize - sizeof(END_MSG), SEEK_SET));
110 ASSERT_NE(-1, lseek(tf.fd, 0, SEEK_SET));
139 ASSERT_NE(-1, lseek(tf.fd, pagesize, SEEK_SET));
141 ASSERT_NE(-1, lseek(tf.fd, 2 * pagesize, SEEK_SET));
143 ASSERT_NE(-1, lseek(tf.fd, 3 * pagesize - sizeof(END_MSG), SEEK_SET));
146 ASSERT_NE(-1, lseek(tf.fd, 0, SEEK_SET));
167 ASSERT_NE(-1, lseek(tf.fd, pagesize, SEEK_SET));
    [all...]
sys_sendfile_test.cpp 38 ASSERT_EQ(0, lseek(dst_file.fd, 0, SEEK_SET));
57 ASSERT_EQ(0, lseek(dst_file.fd, 0, SEEK_SET));
  /art/compiler/
output_stream.h 30 kSeekSet = SEEK_SET,
  /bionic/libc/bionic/
pututline.c 48 if (fseek(f, i - sizeof(struct utmp), SEEK_SET) < 0)
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 29 #define SEEK_SET 0 /* set file offset to offset */
  /external/oprofile/libutil/
op_deviceio.c 32 lseek(devfd, 0, SEEK_SET);
  /external/strace/test/
x32_lseek.c 9 // lseek(0, 1250999896321, SEEK_SET) = 1250999896321
32 (long) (SEEK_SET)
  /system/core/libcutils/
load_file.c 35 if(lseek(fd, 0, SEEK_SET) != 0) goto oops;
  /external/compiler-rt/SDKs/darwin/usr/include/
stdio.h 63 #ifndef SEEK_SET
64 #define SEEK_SET 0 /* set file offset to offset */

Completed in 4223 milliseconds

1 2 3 4 5 6 7 8 91011>>