HomeSort by relevance Sort by last modified time
    Searched full:closed (Results 201 - 225 of 1153) sorted by null

1 2 3 4 5 6 7 891011>>

  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptor_AutoCloseInputStreamTest.java 58 // the input and output stream will be auto closed when the AssetFileDescriptor closed.
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 234 fail("Reading from closed MemoryFile did not throw an exception.");
236 // expected, since file is already closed
  /dalvik/libcore/archive/src/main/java/java/util/zip/
CheckedInputStream.java 81 * if this stream is closed or some I/O error occurs.
108 * if this stream is closed or another I/O error occurs.
ZipInputStream.java 95 if (!closed) {
108 if (closed) {
127 * - resetting fields that manage the entry being closed
306 if (closed) {
390 if (closed) {
  /dalvik/libcore/archive/src/main/java/org/apache/harmony/archive/internal/nls/
messages.properties 48 archive.1E=Stream is closed
71 archive.35=JarFile has been closed
  /dalvik/libcore/nio/src/main/java/java/nio/channels/spi/
AbstractSelector.java 55 * already closed. The actual closing must be implemented by subclasses in
79 * @return {@code true} if this selector is not closed, {@code false}
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
ServerSocketChannelImpl.java 52 // status after open and before closed.
55 // status closed.
  /dalvik/libcore/sql/src/main/native/
sqlite_jni.c 293 throwex(env, "database already closed");
    [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineImpl.java 52 // indicates if engine was closed (it means that
115 throw new SSLException("Engine has already been closed.");
159 throw new SSLException("Inbound is closed before close_notify "
425 return new SSLEngineResult(SSLEngineResult.Status.CLOSED,
590 return new SSLEngineResult(SSLEngineResult.Status.CLOSED,
638 SSLEngineResult.Status.CLOSED,
646 return new SSLEngineResult(SSLEngineResult.Status.CLOSED,
765 ? SSLEngineResult.Status.CLOSED
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
WriterToASCI.java 126 * Close the stream, flushing it first. Once a stream has been closed,
128 * thrown. Closing a previously-closed stream, however, has no effect.
  /development/host/windows/usb/api/
adb_legacy_endpoint_object.h 121 /** \brief This method is called when handle to this object gets closed.
125 @return true on success or false if object is already closed. If
  /external/icu4c/common/unicode/
ucnvsel.h 77 * They can be closed before or after calling ucnv_closeSelector,
78 * but should never be used after the selector is closed.
usprep.h 175 * @return Pointer to UStringPrepProfile that is opened. Should be closed by
191 * @return Pointer to UStringPrepProfile that is opened. Should be closed by
  /external/kernel-headers/original/linux/
inotify.h 30 #define IN_CLOSE_WRITE 0x00000008 /* Writtable file was closed */
31 #define IN_CLOSE_NOWRITE 0x00000010 /* Unwrittable file closed */
  /external/proguard/src/proguard/gui/
OptimizationsDialog.java 212 * Shows this dialog. This method only returns when the dialog is closed.
221 // Open the dialog in the right place, then wait for it to be closed,
  /external/qemu/slirp/
sbuf.c 109 * It's possible that the socket has closed, but
110 * we don't need to check because if it has closed,
  /external/qemu/slirp-android/
sbuf.c 109 * It's possible that the socket has closed, but
110 * we don't need to check because if it has closed,
  /external/webkit/WebCore/svg/
SVGParserUtilities.cpp 212 virtual void svgMoveTo(double x1, double y1, bool closed, bool abs = true) = 0;
234 bool closed = true; local
262 svgMoveTo(narrowPrecisionToFloat(curx), narrowPrecisionToFloat(cury), closed); local
264 svgMoveTo(narrowPrecisionToFloat(tox), narrowPrecisionToFloat(toy), closed, !relative); local
265 closed = false;
341 closed = true;
685 virtual void svgMoveTo(double x1, double y1, bool closed, bool abs = true)
689 if (closed)
  /external/webkit/WebKit/mac/WebCoreSupport/
WebViewFactory.mm 708 return UI_STRING("show closed captions", "accessibility role description for show closed captions button");
710 return UI_STRING("hide closed captions", "accessibility role description for hide closed captions button");
752 return UI_STRING("start displaying closed captions", "accessibility help text for show closed captions button");
754 return UI_STRING("stop displaying closed captions", "accessibility help text for hide closed captions button");
  /external/webkit/WebKit/win/
WebCoreLocalizedStrings.cpp 158 return String(LPCTSTR_UI_STRING("show closed captions", "accessibility role description for show closed captions button"));
160 return String(LPCTSTR_UI_STRING("hide closed captions", "accessibility role description for hide closed captions button"));
201 return String(LPCTSTR_UI_STRING("start displaying closed captions", "accessibility help text for show closed captions button"));
203 return String(LPCTSTR_UI_STRING("stop displaying closed captions", "accessibility help text for hide closed captions button"));
  /frameworks/base/core/tests/coretests/src/android/view/
ListContextMenu.java 185 Log.i(TAG, "Options menu closed");
197 Log.i(TAG, "Context menu closed");
  /frameworks/base/docs/html/sdk/
android-1.6.jd 82 if (toggleable.hasClass("closed")) {
84 toggleable.removeClass("closed");
90 toggleable.addClass("closed");
91 $(".toggle-img", toggleable).attr("title", "show").attr("src", (toRoot + "assets/images/triangle-closed.png"));
111 .toggleable.closed .toggleme {
139 <div class="toggleable closed">
182 <div class="toggleable closed">
184 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px" width="9px" />
  /frameworks/base/obex/javax/obex/
ClientOperation.java 128 * corresponding input and output streams will be closed along with this
301 * @throws IOException if the operation has already ended or is closed
315 * @throws IOException if this <code>Operation</code> has been closed
327 * @throws IOException if this <code>Operation</code> has been closed or the
478 * the output stream is closed we need to send the 0x49
637 * Called when the output or input stream is closed.
638 * @param inStream <code>true</code> if the input stream is closed;
639 * <code>false</code> if the output stream is closed
PrivateInputStream.java 167 throw new IOException("Input stream is closed");
172 * Closes the input stream. If the input stream is already closed, do
ServerOperation.java 363 * the output stream is closed we need to send the 0x49
495 * corresponding input and output streams will be closed along with this
509 * @throws IOException if this <code>Operation</code> has been closed
520 * @throws IOException if this <code>Operation</code> has been closed or the
669 * @throws IOException if the operation has already ended or is closed
702 * Called when the output or input stream is closed. It does not do anything
705 * @param inStream <code>true</code> if the input stream is closed;
706 * <code>false</code> if the output stream is closed

Completed in 237 milliseconds

1 2 3 4 5 6 7 891011>>