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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/SDKs/darwin/usr/include/
stdio.h 61 #ifndef SEEK_CUR
62 #define SEEK_CUR 1 /* set file offset to current plus offset */
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 41 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
46 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
Utils.h 45 fCurr = ::lseek(fd, 0, SEEK_CUR);
Typeface.cpp 91 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
94 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
  /external/skia/legacy/src/images/
SkFDStream.cpp 39 off_t curr = ::lseek(fFD, 0, SEEK_CUR);
62 off_t oldCurr = ::lseek(fFD, 0, SEEK_CUR);
69 off_t newCurr = ::lseek(fFD, size, SEEK_CUR);
  /external/skia/src/images/
SkFDStream.cpp 39 off_t curr = ::lseek(fFD, 0, SEEK_CUR);
62 off_t oldCurr = ::lseek(fFD, 0, SEEK_CUR);
69 off_t newCurr = ::lseek(fFD, size, SEEK_CUR);
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 30 #define SEEK_CUR 1 /* set file offset to current plus offset */
  /external/e2fsprogs/contrib/
make-sparse.c 72 lseek(fd, sizeof(buf), SEEK_CUR);
81 lseek(fd, -1, SEEK_CUR);
  /external/valgrind/main/none/tests/
mmap_fcntl_bug.c 35 if (lseek(fd, 0, SEEK_CUR) != 123)
50 if (lseek(fd, 0, SEEK_CUR) != 123)
  /frameworks/base/core/jni/
android_backup_BackupHelperDispatcher.cpp 63 lseek(fd, remainingHeader, SEEK_CUR);
81 lseek(fd, remainingHeader, SEEK_CUR);
116 lseek(fd, remainingHeader, SEEK_CUR);
130 lseek(fd, bytesToSkip, SEEK_CUR);
160 pos = lseek(fd, 0, SEEK_CUR);
162 lseek(fd, headerSize, SEEK_CUR);
178 prevPos = lseek(fd, 0, SEEK_CUR);
  /bionic/libc/stdio/
ftell.c 61 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
fseek.c 70 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
76 case SEEK_CUR:
86 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
155 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
  /external/llvm/runtime/libprofile/
PathProfiling.c 77 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
78 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
97 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
229 headerLocation = lseek(outFile, 0, SEEK_CUR);
230 lseek(outFile, 2*sizeof(uint32_t), SEEK_CUR);
248 currentLocation = lseek(outFile, 0, SEEK_CUR);
  /external/qemu/android/
snapshot.c 119 uint64_t start_offset = seek_or_die(fd, 0, SEEK_CUR);
125 seek_or_die(fd, 12, SEEK_CUR); /* skip l1 info */
147 seek_or_die(fd, extra_data_size, SEEK_CUR); /* skip extra data */
155 uint64_t end_offset = seek_or_die(fd, 0, SEEK_CUR);
295 seek_or_die(fd, 52, SEEK_CUR);
  /external/linux-tools-perf/util/ui/
browser.c 51 case SEEK_CUR:
81 case SEEK_CUR:
254 self->seek(self, +1, SEEK_CUR);
263 self->seek(self, -1, SEEK_CUR);
276 self->seek(self, +offset, SEEK_CUR);
289 self->seek(self, -offset, SEEK_CUR);
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 55 #ifndef SEEK_CUR
56 #define SEEK_CUR 1
  /dalvik/libdex/
OptInvocation.cpp 125 assert(lseek(fd, 0, SEEK_CUR) == 0);
  /external/clang/test/Analysis/
stream.c 6 #define SEEK_CUR 1 /* Seek from current position. */
46 fseek(p, 1, 3); // expected-warning {{The whence argument to fseek() should be SEEK_SET, SEEK_END, or SEEK_CUR}}
  /external/e2fsprogs/util/
copy_sparse.c 177 lseek(ofd, bs, SEEK_CUR);
195 lseek64(ofd, offset-1, SEEK_CUR);
  /external/tinyalsa/
tinyplay.c 116 fseek(file, chunk_header.sz - sizeof(chunk_fmt), SEEK_CUR);
124 fseek(file, chunk_header.sz, SEEK_CUR);
  /external/skia/legacy/src/ports/
SkOSFile_stdio.cpp 65 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_CUR);
  /hardware/ti/omap3/dspbridge/inc/
host_os.h 83 #define SEEK_CUR 1 /* Seek from current position. */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
host_os.h 79 #define SEEK_CUR 1 /* Seek from current position. */
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 190 Libcore.os.lseek(fd, byteCount, SEEK_CUR);
  /system/extras/tests/bionic/libstdc++/
test_cstdio.cpp 66 #ifndef SEEK_CUR
67 #error "SEEK_CUR must be a macro"

Completed in 2449 milliseconds

1 2 3 4 5 6 7 8 91011>>