/external/libbrillo/brillo/streams/ |
stream_utils.h | 55 Stream::Whence whence,
|
file_stream.h | 43 virtual off64_t Seek(off64_t offset, int whence) = 0; 110 Whence whence,
|
stream_unittest.cc | 27 using Whence = Stream::Whence; 47 MOCK_METHOD4(Seek, bool(int64_t, Whence, uint64_t*, ErrorPtr*)); 83 EXPECT_CALL(stream_mock, Seek(12345, Whence::FROM_BEGIN, _, _))
|
/external/opencv3/3rdparty/libtiff/ |
tif_unix.c | 83 _tiffSeekProc(thandle_t fd, uint64 off, int whence) 91 return((uint64)lseek((int)(intptr_t)fd,off_io,whence));
|
/external/tlsdate/src/common/ |
fmemopen.c | 108 fmemopen_seek(void *cookie, fpos_t offset, int whence) 115 switch (whence) {
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/test/ |
test.c | 30 stdio_seek(int64_t offset, int whence, void * file) 33 return fseek(fp, offset, whence);
|
/system/update_engine/payload_consumer/ |
file_descriptor.h | 79 virtual off64_t Seek(off64_t offset, int whence) = 0; 125 off64_t Seek(off64_t offset, int whence) override;
|
/toolchain/binutils/binutils-2.25/bfd/ |
sysdep.h | 163 extern int fseeko (FILE *stream, off_t offset, int whence); 169 extern int fseeko64 (FILE *stream, off64_t offset, int whence);
|
bfdio.c | 56 real_fseek (FILE *file, file_ptr offset, int whence) 59 return fseeko64 (file, offset, whence); 61 return fseeko (file, offset, whence); 63 return fseek (file, offset, whence); 154 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
StreamChecker.cpp | 263 // Check the legality of the 'whence' argument of 'fseek'. 264 SVal Whence = state->getSVal(CE->getArg(2), C.getLocationContext()); 265 Optional<nonloc::ConcreteInt> CI = Whence.getAs<nonloc::ConcreteInt>(); 277 new BuiltinBug(this, "Illegal whence argument", 278 "The whence argument to fseek() should be "
|
/external/opencv3/3rdparty/include/ffmpeg_/libavformat/ |
avio.h | 93 int64_t (*seek)(void *opaque, int64_t offset, int whence); 192 int64_t (*seek)(void *opaque, int64_t offset, int whence)); 218 * Passing this as the "whence" parameter to a seek function causes it to 225 * Oring this flag as into the "whence" parameter to a seek function causes it to 236 int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
|
/ndk/sources/cxx-stl/stlport/src/details/ |
fstream_win32io.cpp | 549 int whence; local 555 whence = FILE_BEGIN; 558 whence = FILE_CURRENT; 563 whence = FILE_END; 571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
|
/system/extras/libfec/ |
fec_read.cpp | 401 /* sets the internal file position to `offset' relative to `whence' */ 402 int fec_seek(struct fec_handle *f, int64_t offset, int whence) 406 if (whence == SEEK_SET) { 413 } else if (whence == SEEK_CUR) { 423 } else if (whence == SEEK_END) {
|
/external/opencv3/modules/core/test/ |
test_ds.cpp | 751 int whence = 0, pos = 0, count = 0; local 764 whence = op - 1; 765 if( whence < 0 ) 770 else if( whence > 0 ) 795 whence = op - 4; 796 if( whence < 0 ) 801 else if( whence > 0 ) 812 if( whence != 0 ) 845 whence = op - 7; 846 pos = whence < 0 ? 0 : whence > 0 ? sseq->count : (int)(cvtest::randInt(rng) % (sseq->count+1)) [all...] |
/external/mksh/src/ |
dot.mkshrc | 33 2>/dev/null || \echo \?)}${MKSH:=$(\builtin whence -p mksh)}" 413 i_alias[nalias]=type; b_alias[nalias++]='\builtin whence -v' 461 i_func[nfunc++]=whence 536 [[ $y = "$x='\\builtin whence -p $x >/dev/null || (\\builtin print mksh: $x: not found; exit 127) && \$(\\builtin whence -p $x)'" ]]; z=$? 563 \alias "$x=\\builtin whence -p $x >/dev/null || (\\builtin print mksh: $x: not found; exit 127) && \$(\\builtin whence -p $x)"
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_plan9.go | 157 func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string) 159 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { 160 newoffset, e := seek(0, fd, offset, whence)
|
asm_plan9_386.s | 129 //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
|
asm_plan9_amd64.s | 128 //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_plan9.go | 157 func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string) 159 func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { 160 newoffset, e := seek(0, fd, offset, whence)
|
/system/core/libcutils/ |
open_memstream.c | 162 static fpos_t seek_memstream(void* cookie, fpos_t offset, int whence) 167 if (whence == SEEK_CUR) { 169 } else if (whence == SEEK_END) {
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
hashing_helper.py | 421 def seek(self, offset, whence=os.SEEK_SET): # pylint: disable=invalid-name 426 whence: os.SEEK_CUR, or SEEK_END, SEEK_SET. 431 if whence != os.SEEK_SET: 467 return self._orig_fp.seek(offset, whence)
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_posix.h | 51 uptr internal_lseek(fd_t fd, OFF_T offset, int whence);
|
/external/libchrome/base/files/ |
file.h | 119 enum Whence { 206 // defined by |whence|. Returns the resultant current position in the file 208 int64_t Seek(Whence whence, int64_t offset);
|
/external/llvm/tools/llvm-cov/ |
CodeCoverage.cpp | 52 void error(const Twine &Message, StringRef Whence = ""); 96 void CodeCoverageTool::error(const Twine &Message, StringRef Whence) { 98 if (!Whence.empty()) 99 errs() << Whence << ": ";
|
/prebuilts/go/darwin-x86/src/runtime/ |
os_plan9.go | 20 func seek(fd int32, offset int64, whence int32) int64
|