HomeSort by relevance Sort by last modified time
    Searched refs:Whence (Results 26 - 50 of 96) sorted by null

12 3 4

  /prebuilts/go/linux-x86/src/syscall/
syscall_unix_test.go 50 Whence: int16(0),
77 Start: 31415, Len: 271828, Whence: 1,
111 // Linux kernel always set Whence to 0
112 flock.Whence = 0
113 if got.Type == flock.Type && got.Start == flock.Start && got.Len == flock.Len && got.Pid == flock.Pid && got.Whence == flock.Whence {
ztypes_netbsd_386.go 86 Whence int16
ztypes_solaris_amd64.go 102 Whence int16
  /external/libbrillo/brillo/streams/
file_stream.h 43 virtual off64_t Seek(off64_t offset, int whence) = 0;
110 Whence whence,
fake_stream.h 93 Whence whence,
file_stream.cc 49 off64_t Seek(off64_t offset, int whence) override {
50 return lseek64(fd_, offset, whence);
409 Whence whence,
416 switch (whence) {
417 case Whence::FROM_BEGIN:
420 case Whence::FROM_CURRENT:
423 case Whence::FROM_END:
428 errors::stream::kInvalidParameter, "Invalid whence");
memory_stream.h 158 Whence whence,
memory_stream_unittest.cc 126 EXPECT_TRUE(stream_->Seek(2, Stream::Whence::FROM_BEGIN, &new_pos, &error));
130 EXPECT_TRUE(stream_->Seek(2, Stream::Whence::FROM_CURRENT, &new_pos, &error));
135 EXPECT_TRUE(stream_->Seek(-2, Stream::Whence::FROM_END, nullptr, nullptr));
139 EXPECT_TRUE(stream_->Seek(0, Stream::Whence::FROM_END, nullptr, nullptr));
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, _, _))
input_stream_set.cc 103 Whence /* whence */,
input_stream_set_unittest.cc 54 EXPECT_FALSE(stream_->Seek(0, Stream::Whence::FROM_BEGIN, nullptr, nullptr));
memory_stream.cc 116 Whence whence,
121 !stream_utils::CalculateStreamPosition(FROM_HERE, offset, whence,
fake_stream.cc 175 Whence /* whence */,
stream.cc 24 return Seek(position, Whence::FROM_BEGIN, nullptr, error);
  /art/compiler/linker/
output_stream_test.cc 115 off_t Seek(off_t offset ATTRIBUTE_UNUSED, Whence whence ATTRIBUTE_UNUSED) OVERRIDE {
  /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 "
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_netbsd_386.go 86 Whence int16
ztypes_solaris_amd64.go 102 Whence int16
ztypes_darwin_386.go 106 Whence int16
ztypes_darwin_amd64.go 111 Whence int16
ztypes_darwin_arm.go 107 Whence int16
ztypes_darwin_arm64.go 111 Whence int16
ztypes_dragonfly_amd64.go 130 Whence int16
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h     [all...]
  /external/libchrome/base/files/
file_posix.cc 26 // Make sure our Whence mappings match the system headers.
29 "whence mapping must match the system headers");
182 int64_t File::Seek(Whence whence, int64_t offset) {
193 static_cast<int>(whence));
197 static_cast<int>(whence));

Completed in 348 milliseconds

12 3 4