/bionic/libc/stdio/ |
rewind.c | 40 (void) fseek(fp, 0L, 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)) {
|
/bionic/libc/upstream-freebsd/lib/libc/stdio/ |
fsetpos.c | 48 return (fseeko(iop, (off_t)*pos, 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);
|
/art/compiler/ |
output_stream.h | 29 kSeekSet = 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;
|
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;
|
/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);
|
/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/compiler-rt/SDKs/darwin/usr/include/ |
stdio.h | 63 #ifndef SEEK_SET 64 #define SEEK_SET 0 /* set file offset to offset */
|
/external/e2fsprogs/e2fsck/ |
extend.c | 60 ret = lseek(fd, nblocks*blocksize, SEEK_SET); 70 ret = lseek(fd, nblocks*blocksize, SEEK_SET);
|
/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) {
|