HomeSort by relevance Sort by last modified time
    Searched defs:Whence (Results 1 - 4 of 4) sorted by null

  /external/libbrillo/brillo/streams/
stream.h 86 // When seeking in streams, whence specifies the origin of the seek operation.
87 enum class Whence { FROM_BEGIN, FROM_CURRENT, FROM_END };
164 // beginning of the stream. This calls Seek(position, Whence::FROM_BEGIN),
169 // Moves the stream pointer by |offset| bytes relative to |whence|.
176 Whence whence,
  /art/compiler/linker/
output_stream.h 28 enum Whence {
33 std::ostream& operator<<(std::ostream& os, const Whence& rhs);
47 virtual off_t Seek(off_t offset, Whence whence) = 0;
  /external/ltp/testcases/kernel/syscalls/llseek/
llseek02.c 26 * 1. llseek() returns -1 and sets errno to EINVAL, if the 'Whence' argument
104 int Whence;
110 1, SEEK_TOP, "'whence' argument is not valid", EINVAL, setup1}, {
123 int whence; /* position of file handle in the file */ local
138 whence = Test_cases[ind].Whence;
152 TEST(lseek64(fildes, (loff_t) 0, whence));
  /external/libchrome/base/files/
file.h 123 enum Whence {
210 // defined by |whence|. Returns the resultant current position in the file
212 int64_t Seek(Whence whence, int64_t offset);

Completed in 116 milliseconds