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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/stdio/
fsetpos.c 42 return (fseeko(iop, (off_t)*pos, SEEK_SET));
rewind.c 40 (void) fseek(fp, 0L, 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);
  /external/compiler-rt/SDKs/darwin/usr/include/
stdio.h 58 #ifndef SEEK_SET
59 #define SEEK_SET 0 /* set file offset to offset */
  /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/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;
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;
  /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;
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;
  /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);
  /frameworks/base/core/jni/android/graphics/
Utils.h 49 ::lseek(fFD, fCurr, SEEK_SET);
  /system/core/libcutils/
load_file.c 35 if(lseek(fd, 0, SEEK_SET) != 0) goto oops;
open_memstream.c 297 fseeko(stream, 0, SEEK_SET);
299 fseeko(stream, eob, SEEK_SET);
312 fseeko(stream, 0, SEEK_SET);
314 //fseeko(stream, eob, SEEK_SET);
332 fseek(stream, -1, SEEK_CUR); /* broken in glibc; can use {13,SEEK_SET} */
334 fseek(stream, 1022, SEEK_SET);
351 fseek(stream, 5000, SEEK_SET);
352 fseek(stream, 4096, SEEK_SET);
353 fseek(stream, -1, SEEK_SET); /* should have no effect */
  /external/e2fsprogs/e2fsck/
extend.c 60 ret = lseek(fd, nblocks*blocksize, SEEK_SET);
70 ret = lseek(fd, nblocks*blocksize, SEEK_SET);
  /external/skia/legacy/src/images/
SkFDStream.cpp 25 off_t value = ::lseek(fFD, 0, SEEK_SET);
53 if (::lseek(fFD, curr, SEEK_SET) != curr) {
  /external/skia/src/images/
SkFDStream.cpp 25 off_t value = ::lseek(fFD, 0, SEEK_SET);
53 if (::lseek(fFD, curr, SEEK_SET) != curr) {
  /external/valgrind/main/none/tests/
mmap_fcntl_bug.c 32 initial = lseek(fd, 123, SEEK_SET);
39 fl.l_whence = SEEK_SET;
  /system/extras/tests/ext4/
set_ext4_err_bit.c 30 if (lseek(fd, SB_OFFSET, SEEK_SET) == -1) {
48 if (lseek(fd, SB_OFFSET, SEEK_SET) == -1) {

Completed in 667 milliseconds

1 2 3 4 5 6 7 8 91011>>