Home
last modified time | relevance | path

Searched refs:isErrorOccured (Results 1 – 25 of 60) sorted by relevance

123

/dports/lang/mosh/mosh-0.2.7/src/
H A DByteArrayBinaryInputPort.cpp57 int64_t ByteArrayBinaryInputPort::readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured) in readBytes() argument
66 int64_t ByteArrayBinaryInputPort::readSome(uint8_t** buf, bool& isErrorOccured) in readSome() argument
68 return readAll(buf, isErrorOccured); in readSome()
71 int64_t ByteArrayBinaryInputPort::readAll(uint8_t** buf, bool& isErrorOccured) in readAll() argument
H A DPortTest.cpp107 bool isErrorOccured = false; in TEST_F() local
108 …EXPECT_TRUE(Object::makeStringInputPort(UC("")).toTextualInputPort()->getDatum(isErrorOccured).isE… in TEST_F()
109 EXPECT_FALSE(isErrorOccured); in TEST_F()
111 …t Object obj = Object::makeStringInputPort(UC("3")).toTextualInputPort()->getDatum(isErrorOccured); in TEST_F()
114 EXPECT_FALSE(isErrorOccured); in TEST_F()
H A DRegexpProcedures.cpp75 if (regexp->isErrorOccured()) { in rxmatchEx()
116 if (regMatch->isErrorOccured()) { in rxmatchStartEx()
144 if (regMatch->isErrorOccured()) { in rxmatchEndEx()
172 if (regMatch->isErrorOccured()) { in rxmatchAfterEx()
200 if (regMatch->isErrorOccured()) { in rxmatchBeforeEx()
228 if (regMatch->isErrorOccured()) { in rxmatchSubstringEx()
H A DBinaryInputPort.h47 virtual int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured) = 0;
48 virtual int64_t readSome(uint8_t** buf, bool& isErrorOccured) = 0;
49 virtual int64_t readAll(uint8_t** buf, bool& isErrorOccured) = 0;
H A DFileBinaryInputPort.h54 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
55 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
56 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DCustomBinaryInputPort.h47 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
48 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
49 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DByteArrayBinaryInputPort.h60 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
61 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
62 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DFileBinaryInputOutputPort.h61 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
62 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
63 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DBufferedFileBinaryInputPort.h51 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
52 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
53 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DSocketBinaryInputOutputPort.h62 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
63 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
64 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DCustomBinaryInputOutputPort.h53 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
54 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
55 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DBufferedFileBinaryInputOutputPort.h61 int64_t readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured);
62 int64_t readSome(uint8_t** buf, bool& isErrorOccured);
63 int64_t readAll(uint8_t** buf, bool& isErrorOccured);
H A DSocketBinaryInputOutputPort.cpp156 int64_t SocketBinaryInputOutputPort::readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured) in readBytes() argument
171 int64_t SocketBinaryInputOutputPort::readAll(uint8_t** buf, bool& isErrorOccured) in readAll() argument
197 int64_t SocketBinaryInputOutputPort::readSome(uint8_t** buf, bool& isErrorOccured) in readSome() argument
199 return readAll(buf, isErrorOccured); in readSome()
H A DFileBinaryInputOutputPort.cpp170 int64_t FileBinaryInputOutputPort::readBytes(uint8_t* buf, int64_t reqSize, bool& isErrorOccured) in readBytes() argument
176 int64_t FileBinaryInputOutputPort::readAll(uint8_t** buf, bool& isErrorOccured) in readAll() argument
191 int64_t FileBinaryInputOutputPort::readSome(uint8_t** buf, bool& isErrorOccured) in readSome() argument
193 return readAll(buf, isErrorOccured); in readSome()
H A DOSCompatSocket.cpp254 bool& isErrorOccured, in createClientSocket() argument
279 isErrorOccured = true; in createClientSocket()
326 isErrorOccured = true; in createClientSocket()
337 bool& isErrorOccured, in createServerSocket() argument
360 isErrorOccured = true; in createServerSocket()
431 isErrorOccured = true; in createServerSocket()
H A DNumberReader.cpp59 Object NumberReaderContext::read(const ucs4string& text, bool& isErrorOccured) in read() argument
61 return read(new StringTextualInputPort(text), isErrorOccured); in read()
H A DNumberReader.h42 Object read(TextualInputPort* port, bool& isErrorOccured);
43 Object read(const ucs4string& text, bool& isErrorOccured);
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jaxp/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DSAXParserTest03.java77 assertFalse(handler.isErrorOccured()); in testParseValidate01()
93 assertFalse(handler.isErrorOccured()); in testParseValidate02()
114 assertTrue(handler.isErrorOccured()); in testParseValidate03()

123