HomeSort by relevance Sort by last modified time
    Searched full:close (Results 526 - 550 of 5187) sorted by null

<<21222324252627282930>>

  /system/core/nexus/
WifiStatusPoller.cpp 62 close(mCtrlPipe[0]);
63 close(mCtrlPipe[1]);
  /system/core/sh/
redir.c 156 close(fd);
160 close(fd);
240 close(f);
273 close(pip[0]);
288 close(pip[1]);
308 close(i);
311 close(rp->renamed[i]);
360 close(rp->renamed[i]);
  /system/netd/
main.cpp 89 close(fd);
107 close(fd);
  /external/guava/src/com/google/common/io/
ByteStreams.java 97 Closeables.close(out, threw);
121 Closeables.close(out, threw);
124 Closeables.close(in, threw);
130 * input to the output, and closes the input stream. Does not close
147 Closeables.close(in, threw);
153 * Does not close or flush either stream.
177 * Does not close or flush either channel.
200 * Does not close the stream.
227 Closeables.close(in, threw);
564 Closeables.close(in, threw)
    [all...]
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 356 jarFile.close();
370 jarFile.close();
379 jarFile.close();
403 jarFile.close();
421 jarFile.close();
446 jarFile.close();
464 jarFile.close();
488 jarFile.close();
525 is.close();
542 is.close();
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 52 mInsertHelper.close();
53 mDatabase.close();
69 method = "close",
73 mInsertHelper.close();
183 cursor.close();
218 cursor.close();
250 cursor.close();
343 cursor.close();
372 cursor.close();
385 cursor.close();
    [all...]
CursorWrapperTest.java 77 notes = "Test close() and isClosed() and the constructor method.",
78 method = "close",
83 notes = "Test close() and isClosed() and the constructor method.",
89 notes = "Test close() and isClosed() and the constructor method.",
95 notes = "Test close() and isClosed() and the constructor method.",
110 cursorWrapper.close();
161 cursorWrapper.close();
303 cursorWrapper.close();
448 cursorWrapper.close();
544 cursorWrapper.close();
    [all...]
DatabaseCursorTest.java 73 mDatabase.close();
143 testCursor.close();
201 testCursor.close();
215 testCursor.close();
281 testCursor.close();
312 testCursor.close();
340 testCursor.close();
397 testCursor.close();
423 testCursor.close();
446 testCursor.close();
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 69 conn.close();
70 statement.close();
95 userTab.close();
200 result.close();
204 result.close();
216 result.close();
244 result.close();
258 result.close();
286 result.close();
337 result.close();
    [all...]
UpdateFunctionalityTest.java 64 statement.close();
65 conn.close();
87 userTab.close();
141 result.close();
187 result.close();
230 result.close();
283 result.close();
335 result.close();
376 result.close();
423 result.close();
    [all...]
  /external/zlib/contrib/iostream3/
zfstream.cc 32 // Sync output buffer and close only if responsible for file
36 this->close();
105 // Close gzipped file
107 gzfilebuf::close() function in class:gzfilebuf
114 // Attempt to sync and close gzipped file
418 // Close file
420 gzifstream::close() function in class:gzifstream
422 if (!sb.close())
473 // Close file
475 gzofstream::close() function in class:gzofstream
    [all...]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 88 ssc.close();
93 selector.close();
124 selector.close();
186 selector.close();
234 selector.close();
242 sc.close();
523 selector.close();
555 sc.close();
560 client.close();
589 ssc.accept().close();
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 136 mSourceDb.close();
284 c.close();
285 insert.close();
509 c.close();
526 c.close();
529 rawContactInsert.close();
530 contactInsert.close();
531 structuredNameInsert.close();
532 noteInsert.close();
722 c.close();
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 318 if (stmt != null) stmt.close();
363 if (stmt != null) stmt.close();
407 if (stmt != null) stmt.close();
460 if (stmt != null) stmt.close();
480 if (stmt != null) stmt.close();
499 if (stmt != null) stmt.close();
518 if (stmt != null) stmt.close();
605 if (stmt != null) stmt.close();
647 if (stmt != null) stmt.close();
693 if (stmt != null) stmt.close();
    [all...]
  /build/tools/
adbs 48 stream.close()
82 stream.close()
120 stream.close()
223 stream.close()
  /cts/tests/appsecurity-tests/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 46 outputStream.close();
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 145 fout.close();
151 fin.close();
160 fout.close();
167 fin.close();
  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 43 strm.close();
  /cts/tools/dex-tools/
README.txt 5 It is designed to be fast and close to the spec.
  /cts/tools/host/src/com/android/cts/
Log.java 137 * Close the log stream.
142 mLogOutput.close();
190 * Close the trace stream.
195 mTraceOutput.close();
  /cts/tools/signature-tools/src/signature/io/impl/
ToStringExternalizer.java 39 outputStreamWriter.close();
  /dalvik/libcore/archive/src/main/java/java/util/zip/
DeflaterOutputStream.java 146 * all underlying streams. This stream can no longer be used after close()
154 public void close() throws IOException { method in class:DeflaterOutputStream
159 out.close();
163 * Writes any unwritten data to the underlying stream. Does not close the
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CheckedOutputStreamTest.java 54 outFile.close();
92 outFile.close();
123 outFile.close();
165 outFile.close();
  /dalvik/libcore/include/
ScopedFd.h 31 close(fd);
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/util/
EnvironmentHelper.java 47 bos.close();

Completed in 344 milliseconds

<<21222324252627282930>>