Searched defs:open (Results 1 - 16 of 16) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/
H A DServerSocketChannel.java34 * A server-socket channel is open but not bound when created by the {@code
35 * open()} method. Calling {@code accept} before bound will cause a
51 * Creates an open and unbound server-socket channel.
56 * @return the new channel which is open but unbound.
60 public static ServerSocketChannel open() throws IOException { method in class:ServerSocketChannel
H A DPipe.java88 public static Pipe open() throws IOException { method in class:Pipe
H A DSelector.java46 public static Selector open() throws IOException { method in class:Selector
73 * Indicates whether this selector is open.
H A DDatagramChannel.java36 * A datagram channel is open but not connected when created with the
37 * {@code open()} method. After it is connected, it will keep the connected
64 * @return the new channel which is open but not connected.
68 public static DatagramChannel open() throws IOException { method in class:DatagramChannel
H A DSocketChannel.java35 * <p>A socket channel is open but not connected when created by {@link #open}.
79 * Creates an open and unconnected socket channel.
84 * @return the new channel which is open but unconnected.
88 public static SocketChannel open() throws IOException { method in class:SocketChannel
95 * This method performs a call to {@code open()} followed by a call to
115 public static SocketChannel open(SocketAddress address) throws IOException { method in class:SocketChannel
116 SocketChannel socketChannel = open();
/libcore/dalvik/src/main/java/dalvik/system/
H A DCloseGuard.java33 * guard.open("cleanup");
70 * guard.open("cleanup");
92 * When used in a constructor calls to {@code open} should occur at
96 * in a method, the call to {@code open} should occur just after
122 * #open(String)} can be used to set up the instance to warn on
162 * If CloseGuard is enabled, {@code open} initializes the instance
170 public void open(String closer) { method in class:CloseGuard
/libcore/json/src/main/java/org/json/
H A DJSONStringer.java139 return open(Scope.EMPTY_ARRAY, "[");
158 return open(Scope.EMPTY_OBJECT, "{");
174 JSONStringer open(Scope empty, String openBracket) throws JSONException { method in class:JSONStringer
/libcore/luni/src/main/java/libcore/io/
H A DIoBridge.java433 public static FileDescriptor open(String path, int flags) throws FileNotFoundException { method in class:IoBridge
438 fd = Libcore.os.open(path, flags, mode);
439 // Posix open(2) fails with EISDIR only if you ask for write permission.
442 throw new ErrnoException("open", EISDIR);
H A DBlockGuardOs.java181 @Override public FileDescriptor open(String path, int flags, int mode) throws ErrnoException { method in class:BlockGuardOs
186 return os.open(path, flags, mode);
H A DForwardingOs.java119 public FileDescriptor open(String path, int flags, int mode) throws ErrnoException { return os.open(path, flags, mode); } method in class:ForwardingOs
H A DOs.java111 public FileDescriptor open(String path, int flags, int mode) throws ErrnoException; method in interface:Os
H A DPosix.java113 public native FileDescriptor open(String path, int flags, int mode) throws ErrnoException; method in class:Posix
/libcore/dex/src/main/java/com/android/dex/
H A DDex.java186 public Section open(int position) { method in class:Dex
263 return open(offset).readTypeList();
271 return open(offset).readClassData();
279 return open(offset).readCode();
328 open(SIGNATURE_OFFSET).write(computeSignature());
329 open(CHECKSUM_OFFSET).writeInt(computeChecksum());
454 * {@code open(tableOfContents.typeIds.off + (index * SizeOf.TYPE_ID_ITEM)).readInt();}
662 Section triesSection = open(data.position());
893 return open(tableOfContents.stringIds.off + (index * SizeOf.STRING_ID_ITEM))
924 return open(tableOfContent
[all...]
/libcore/luni/src/main/java/libcore/icu/
H A DNativeDecimalFormat.java156 this.address = open(pattern, dfs.getCurrencySymbol(),
172 this.address = open(pattern, data.currencySymbol,
626 private static native long open(String pattern, String currencySymbol, method in class:NativeDecimalFormat
/libcore/luni/src/main/java/android/system/
H A DOs.java309 * See <a href="http://man7.org/linux/man-pages/man2/open.2.html">open(2)</a>.
311 public static FileDescriptor open(String path, int flags, int mode) throws ErrnoException { return Libcore.os.open(path, flags, mode); } method in class:Os
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 558 milliseconds