/external/llvm-project/lldb/source/Host/posix/ |
D | PipePosix.cpp | 87 if (CanRead() || CanWrite()) in CreateNew() 116 if (CanRead() || CanWrite()) in CreateNew() 153 if (CanRead() || CanWrite()) in OpenAsReader() 174 if (CanRead() || CanWrite()) in OpenAsWriterWithTimeout() 234 bool PipePosix::CanRead() const { in CanRead() function in PipePosix 243 if (CanRead()) { in CloseReadFileDescriptor() 260 if (!CanRead()) in ReadWithTimeout()
|
/external/llvm-project/lldb/source/Host/windows/ |
D | PipeWindows.cpp | 104 if (CanRead() || CanWrite()) in CreateNew() 159 if (CanRead()) in OpenAsReader() 180 assert(is_read ? !CanRead() : !CanWrite()); in OpenNamedPipe() 217 if (!CanRead()) in ReleaseReadFileDescriptor() 239 if (!CanRead()) in CloseReadFileDescriptor() 268 bool PipeWindows::CanRead() const { return (m_read != INVALID_HANDLE_VALUE); } in CanRead() function in PipeWindows 281 if (!CanRead()) in ReadWithTimeout()
|
/external/rust/crates/libz-sys/src/zlib/contrib/dotzlib/DotZLib/ |
D | GZipStream.cs | 80 public override bool CanRead property in DotZLib.GZipStream 156 if (!CanRead) throw new NotSupportedException(); in Read() 183 if (!CanRead) throw new NotSupportedException(); in ReadByte()
|
/external/libbrillo/brillo/streams/ |
D | file_stream_test.cc | 66 EXPECT_TRUE(stream->CanRead()); in TestCreateFile() 213 TEST_F(FileStreamTest, CanRead) { in TEST_F() argument 215 EXPECT_TRUE(stream_->CanRead()); in TEST_F() 217 EXPECT_FALSE(stream_->CanRead()); in TEST_F() 219 EXPECT_TRUE(stream_->CanRead()); in TEST_F() 221 EXPECT_FALSE(stream_->CanRead()); in TEST_F() 729 EXPECT_TRUE(stream->CanRead()); in TEST_F() 755 EXPECT_FALSE(stream->CanRead()); in TEST_F() 784 EXPECT_TRUE(stream->CanRead()); in TEST_F() 818 EXPECT_TRUE(stream->CanRead()); in TEST_F() [all …]
|
D | fake_stream.cc | 163 bool FakeStream::CanRead() const { in CanRead() function in brillo::FakeStream 203 if (!CanRead()) in ReadNonBlocking() 365 if ((read_requested && !CanRead()) || (write_requested && !CanWrite())) in WaitForData() 388 if ((read_requested && !CanRead()) || (write_requested && !CanWrite())) in WaitForDataBlocking()
|
D | tls_stream.h | 40 bool CanRead() const override { return true; } in CanRead() function
|
D | input_stream_set.h | 62 bool CanRead() const override { return true; } in CanRead() function
|
D | mock_stream.h | 20 MOCK_METHOD(bool, CanRead, (), (const, override));
|
D | fake_stream_test.cc | 72 EXPECT_TRUE(stream_->CanRead()); in TEST_F() 84 EXPECT_FALSE(stream_->CanRead()); in TEST_F() 96 EXPECT_TRUE(stream_->CanRead()); in TEST_F()
|
D | file_stream.h | 99 bool CanRead() const override;
|
D | fake_stream.h | 84 bool CanRead() const override;
|
D | memory_stream.h | 147 bool CanRead() const override;
|
D | stream.h | 111 virtual bool CanRead() const = 0;
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | LimitedInputStream.cs | 54 public override bool CanRead property in Google.Protobuf.LimitedInputStream
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | OneofAccessor.cs | 50 if (!caseProperty.CanRead) in OneofAccessor()
|
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/ |
D | TypeExtensions.cs | 69 …if (ret != null && ((ret.CanRead && ret.GetMethod.IsPublic) || (ret.CanWrite && ret.SetMethod.IsPu… in GetProperty()
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 580 Assert.IsTrue(memoryStream.CanRead); in Dispose_DisposesUnderlyingStream() 584 Assert.IsFalse(memoryStream.CanRead); // Disposed in Dispose_DisposesUnderlyingStream() 591 Assert.IsTrue(memoryStream.CanRead); in Dispose_WithLeaveOpen() 595 Assert.IsTrue(memoryStream.CanRead); // We left the stream open in Dispose_WithLeaveOpen()
|
/external/brotli/csharp/ |
D | injected_code.txt | 2 public override bool CanRead {
|
/external/llvm-project/lldb/include/lldb/Host/ |
D | PipeBase.h | 40 virtual bool CanRead() const = 0;
|
/external/protobuf/csharp/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 630 Assert.IsTrue(memoryStream.CanRead); in Dispose_DisposesUnderlyingStream() 634 Assert.IsFalse(memoryStream.CanRead); // Disposed in Dispose_DisposesUnderlyingStream() 641 Assert.IsTrue(memoryStream.CanRead); in Dispose_WithLeaveOpen() 645 Assert.IsTrue(memoryStream.CanRead); // We left the stream open in Dispose_WithLeaveOpen()
|
/external/llvm-project/lldb/include/lldb/Host/posix/ |
D | PipePosix.h | 46 bool CanRead() const override;
|
/external/llvm-project/lldb/include/lldb/Host/windows/ |
D | PipeWindows.h | 46 bool CanRead() const override;
|
/external/lzma/CPP/7zip/Archive/Common/ |
D | CoderMixer2.h | 303 bool CanRead; member 306 CCoderST(): CanRead(false), CanWrite(false) {} in CCoderST()
|
/external/dng_sdk/source/ |
D | dng_read_image.h | 96 virtual bool CanRead (const dng_ifd &ifd);
|
/external/brotli/csharp/org/brotli/dec/ |
D | BrotliInputStream.cs | 191 public override bool CanRead { property in Org.Brotli.Dec.BrotliInputStream
|