HomeSort by relevance Sort by last modified time
    Searched refs:ioError (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/java/io/
PrintStream.java 39 private boolean ioError;
215 return ioError;
219 return ioError || delegate.checkError();
227 ioError = false;
540 ioError = true;
PrintWriter.java 40 private boolean ioError;
208 return ioError;
212 return ioError || delegate.checkError();
221 ioError = false;
567 ioError = true;
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 67 ** protected by the async.queueMutex. As are the async.ioError and
383 ** Both async.ioError and async.nFile are protected by async.queueMutex.
392 int ioError; /* True if an IO error has occurred */
577 async.ioError = SQLITE_OK;
595 if( op!=ASYNC_CLOSE && async.ioError ){
596 return async.ioError;
680 if( async.ioError!=SQLITE_OK ){
681 rc = async.ioError;
    [all...]
  /external/bzip2/
bzip2.c 59 #define ERROR_IF_EOF(i) { if ((i) == EOF) ioError(); }
60 #define ERROR_IF_NOT_ZERO(i) { if ((i) != 0) ioError(); }
61 #define ERROR_IF_MINUS_ONE(i) { if ((i) == (-1)) ioError(); }
214 static void ioError ( void ) NORETURN;
420 ioError(); break;
524 ioError(); break;
613 ioError(); break;
791 void ioError ( void )
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 669 IOExceptionEvent ioError = new IOExceptionEvent(this, host, port, protocol);
670 sipProvider.handleEvent(ioError, null);
    [all...]

Completed in 96 milliseconds