Searched defs:on (Results 1 - 8 of 8) sorted by relevance

/dalvik/libcore/security/src/main/java/java/security/
H A DDigestInputStream.java12 * distributed under the License is distributed on an "AS IS" BASIS,
44 // Indicates whether digest functionality is on or off
85 * for the byte if this function is {@link #on(boolean)}.
99 // - digest functionality is on
111 * {@link #on(boolean)}.
133 // - digest functionality is on
143 * Enables or disables the digest function (default is on).
145 * @param on
150 public void on(boolean on) { argument
[all...]
H A DDigestOutputStream.java12 * distributed under the License is distributed on an "AS IS" BASIS,
42 // Indicates whether digest functionality is on or off
83 * this function is {@link #on(boolean)}.
92 // update digest only if digest functionality is on
102 * offset. Updates the digest if this function is {@link #on(boolean)}.
115 // update digest only if digest functionality is on
124 * Enables or disables the digest function (default is on).
126 * @param on
131 public void on(boolean on) { argument
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DPlatformAddressFactory.java11 * distributed under the License is distributed on an "AS IS" BASIS,
76 public synchronized static PlatformAddress on(int value, long size) { method in class:PlatformAddressFactory
97 public static PlatformAddress on(int value) { method in class:PlatformAddressFactory
98 return PlatformAddressFactory.on(value, PlatformAddress.UNKNOWN);
123 * We use make() and not on() here, for a couple reasons:
125 * address.autoFree() (to enable auto-free on gc) the cache
148 // See above for the make() vs. on() rationale.
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DMidiChannel.java12 * distributed under the License is distributed on an "AS IS" BASIS,
45 boolean localControl(boolean on); argument
61 void setMono(boolean on); argument
65 void setOmni(boolean on); argument
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSocketImplWrapper.java11 * distributed under the License is distributed on an "AS IS" BASIS,
74 public void setSoLinger(boolean on, int linger) throws SocketException { argument
75 socket.setSoLinger(on, linger);
78 public void setTcpNoDelay(boolean on) throws SocketException { argument
79 socket.setTcpNoDelay(on);
82 public void setReuseAddress(boolean on) throws SocketException { argument
83 socket.setReuseAddress(on);
86 public void setKeepAlive(boolean on) throws SocketException { argument
87 socket.setKeepAlive(on);
H A DOpenSSLSocketImpl.java11 * distributed under the License is distributed on an "AS IS" BASIS,
48 * based on OpenSSL. The JNI native interface for some methods
278 * Starts a TLS/SSL handshake on this connection using some native methods
595 * was successfully completed on this connection.
696 * put on use
715 * The names of the protocols' versions that may be used on this SSL
731 * The names of the protocols' versions that are in use on this SSL
755 * @param protocols The names of all the protocols to put on use
861 public void setOOBInline(boolean on) throws SocketException { argument
867 * Set the read timeout on thi
[all...]
/dalvik/vm/jdwp/
H A DJdwpSocket.c11 * distributed under the License is distributed on an "AS IS" BASIS,
101 LOGI("JDWP will wait for debugger on port %d\n", port);
103 LOGD("JDWP will %s on port %d\n",
128 * Returns 0 on success.
299 * Returns true on success (meaning a connection is available).
322 int cc, on = 1; local
324 cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
353 // When we call shutdown() on the socket, accept() returns with
372 LOGV("Setting TCP_NODELAY on accepte
[all...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DSocket.java12 * distributed under the License is distributed on an "AS IS" BASIS,
137 * to any available port on the local host.
142 * the port on the target host to connect to.
163 * the socket is bound to the given address {@code localAddress} on port
171 * the port on the target host to connect to.
173 * the address on the local host to bind to.
175 * the port on the local host to bind to.
196 * is bound to any available port on the local host.
201 * the port on the target host to connect to.
229 * bound to any available port on th
642 setSoLinger(boolean on, int timeout) argument
695 setTcpNoDelay(boolean on) argument
[all...]

Completed in 186 milliseconds