/libcore/ojluni/src/main/java/java/security/ |
D | DigestInputStream.java | 70 private boolean on = true; field in DigestInputStream 126 if (on && ch != -1) { in read() 163 if (on && result != -1) { in read() 178 public void on(boolean on) { in on() method in DigestInputStream 179 this.on = on; in on()
|
D | DigestOutputStream.java | 58 private boolean on = true; field in DigestOutputStream 117 if (on) { in write() 156 if (on) { in write() 170 public void on(boolean on) { in on() argument 171 this.on = on; in on()
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | NativeThreadSet.java | 53 int on = elts.length; in add() local 54 int nn = on * 2; in add() 56 System.arraycopy(elts, 0, nelts, 0, on); in add() 58 start = on; in add()
|
D | SocketAdaptor.java | 322 public void setTcpNoDelay(boolean on) throws SocketException { in setTcpNoDelay() argument 323 setBooleanOption(StandardSocketOptions.TCP_NODELAY, on); in setTcpNoDelay() 330 public void setSoLinger(boolean on, int linger) throws SocketException { in setSoLinger() argument 331 if (!on) in setSoLinger() 346 public void setOOBInline(boolean on) throws SocketException { in setOOBInline() argument 347 setBooleanOption(ExtendedSocketOption.SO_OOBINLINE, on); in setOOBInline() 386 public void setKeepAlive(boolean on) throws SocketException { in setKeepAlive() argument 387 setBooleanOption(StandardSocketOptions.SO_KEEPALIVE, on); in setKeepAlive() 402 public void setReuseAddress(boolean on) throws SocketException { in setReuseAddress() argument 403 setBooleanOption(StandardSocketOptions.SO_REUSEADDR, on); in setReuseAddress()
|
D | DatagramSocketAdaptor.java | 323 public void setReuseAddress(boolean on) throws SocketException { in setReuseAddress() argument 324 setBooleanOption(StandardSocketOptions.SO_REUSEADDR, on); in setReuseAddress() 332 public void setBroadcast(boolean on) throws SocketException { in setBroadcast() argument 333 setBooleanOption(StandardSocketOptions.SO_BROADCAST, on); in setBroadcast()
|
/libcore/ojluni/src/main/native/ |
D | Console_md.c | 54 jboolean on) in Java_java_io_Console_echo() argument 61 return !on; in Java_java_io_Console_echo() 64 if (on) { in Java_java_io_Console_echo()
|
/libcore/tools/expected_upstream/ |
D | README.md | 114 * Please remove the file on both `aosp/main` and `aosp/expected_upstream` 116 3. Revert the merge commit on `aosp/main` from `expected_upstream` 117 * If you don't plan to re-land your change on `aosp/main`, you should 122 1. Revert your change on `expected_upsteam` too and start over again 128 manually, you should make the change on `aosp/main`. 132 directly on `aosp/main` 134 * You can make the change directly on `aosp/main`. Please follow this 139 should do so on the `aosp/main` branch. 142 change directly on `aosp/main`. 156 Here are the order of events / votes required to submit your CL on gerrit as of [all …]
|
/libcore/ojluni/annotations/mmodule/java/net/ |
D | Socket.annotated.java | 82 public void setTcpNoDelay(boolean on) throws java.net.SocketException { throw new RuntimeException(… in setTcpNoDelay() argument 86 public void setSoLinger(boolean on, int linger) throws java.net.SocketException { throw new Runtime… in setSoLinger() argument 92 public void setOOBInline(boolean on) throws java.net.SocketException { throw new RuntimeException("… in setOOBInline() argument 108 public void setKeepAlive(boolean on) throws java.net.SocketException { throw new RuntimeException("… in setKeepAlive() argument 116 public void setReuseAddress(boolean on) throws java.net.SocketException { throw new RuntimeExceptio… in setReuseAddress() argument
|
D | DatagramSocket.annotated.java | 86 public synchronized void setReuseAddress(boolean on) throws java.net.SocketException { throw new Ru… in setReuseAddress() argument 90 public synchronized void setBroadcast(boolean on) throws java.net.SocketException { throw new Runti… in setBroadcast() argument
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | DigestOutputStreamTest.java | 184 dos.on(false); in testWriteint02() 267 dos.on(false); in testWriteint05() 402 dos.on(false); in test_write$BII_4() 491 dos.on(false); in testOn() 498 dos.on(true); in testOn() 544 dos.on(false); in test_onZ() 553 dos.on(true); in test_onZ() 637 digestOutputStream.on(true); in test_write_writeToUnderlyingStreamBeforeUpdatingDigest() 644 digestOutputStream.on(true); in test_write_writeToUnderlyingStreamBeforeUpdatingDigest() 651 digestOutputStream.on(true); in test_write_writeToUnderlyingStreamBeforeUpdatingDigest()
|
D | DigestInputStreamTest.java | 189 dis.on(false); in testRead03() 275 dis.on(false); in testRead06() 461 dis.on(false); in testReadbyteArrayintint05() 531 dis.on(false); in testOn() 538 dis.on(true); in testOn()
|
/libcore/ojluni/src/main/java/java/net/ |
D | Socket.java | 1032 public void setTcpNoDelay(boolean on) throws SocketException { in setTcpNoDelay() argument 1035 getImpl().setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on)); in setTcpNoDelay() 1069 public void setSoLinger(boolean on, int linger) throws SocketException { in setSoLinger() argument 1072 if (!on) { in setSoLinger() 1073 getImpl().setOption(SocketOptions.SO_LINGER, on); in setSoLinger() 1157 public void setOOBInline(boolean on) throws SocketException { in setOOBInline() argument 1160 getImpl().setOption(SocketOptions.SO_OOBINLINE, Boolean.valueOf(on)); in setOOBInline() 1369 public void setKeepAlive(boolean on) throws SocketException { in setKeepAlive() argument 1372 getImpl().setOption(SocketOptions.SO_KEEPALIVE, Boolean.valueOf(on)); in setKeepAlive() 1513 public void setReuseAddress(boolean on) throws SocketException { in setReuseAddress() argument [all …]
|
/libcore/ojluni/src/main/java/sun/net/ |
D | TelnetOutputStream.java | 89 public void setStickyCRLF(boolean on) { in setStickyCRLF() argument 90 stickyCRLF = on; in setStickyCRLF()
|
D | TelnetInputStream.java | 86 public void setStickyCRLF(boolean on) { in setStickyCRLF() argument 87 stickyCRLF = on; in setStickyCRLF()
|
/libcore/ojluni/annotations/hiddenapi/java/net/ |
D | Socket.java | 173 public void setTcpNoDelay(boolean on) throws java.net.SocketException { in setTcpNoDelay() argument 181 public void setSoLinger(boolean on, int linger) throws java.net.SocketException { in setSoLinger() argument 193 public void setOOBInline(boolean on) throws java.net.SocketException { in setOOBInline() argument 225 public void setKeepAlive(boolean on) throws java.net.SocketException { in setKeepAlive() argument 241 public void setReuseAddress(boolean on) throws java.net.SocketException { in setReuseAddress() argument
|
/libcore/ojluni/src/test/ |
D | LICENSE | 45 software. If the software is modified by someone else and passed on, we 47 that any problems introduced by others will not reflect on the original 65 refers to any such program or work, and a "work based on the Program" 75 is covered only if its contents constitute a work based on the 77 Whether that is true depends on what the Program does. 81 conspicuously and appropriately publish on each copy an appropriate 91 of it, thus forming a work based on the Program, and copy and 111 does not normally print such an announcement, your work based on 120 on the Program, the distribution of the whole must be on the terms of 127 collective works based on the Program. [all …]
|
/libcore/ojluni/src/tools/ |
D | LICENSE | 45 software. If the software is modified by someone else and passed on, we 47 that any problems introduced by others will not reflect on the original 65 refers to any such program or work, and a "work based on the Program" 75 is covered only if its contents constitute a work based on the 77 Whether that is true depends on what the Program does. 81 conspicuously and appropriately publish on each copy an appropriate 91 of it, thus forming a work based on the Program, and copy and 111 does not normally print such an announcement, your work based on 120 on the Program, the distribution of the whole must be on the terms of 127 collective works based on the Program. [all …]
|
/libcore/ |
D | LICENSE | 45 software is modified by someone else and passed on, we want its recipients to 47 by others will not reflect on the original authors' reputations. 63 or work, and a "work based on the Program" means either the Program or any 73 constitute a work based on the Program (independent of having been made by 74 running the Program). Whether that is true depends on what the Program does. 78 appropriately publish on each copy an appropriate copyright notice and 87 forming a work based on the Program, and copy and distribute such modifications 106 not normally print such an announcement, your work based on the Program is 114 work based on the Program, the distribution of the whole must be on the terms 120 right to control the distribution of derivative or collective works based on [all …]
|
D | NativeCode.bp | 10 // distributed under the License is distributed on an "AS IS" BASIS, 181 // Debug version of libopenjdk. Depends on libopenjdkjvmd. 240 // depends on JniConstants.cpp (but these are not used in the tests). 264 // depends on JniConstants.cpp (but these are not used in the benchmark).
|
D | libcore.aconfig | 10 # distributed under the License is distributed on an "AS IS" BASIS, 35 description: "This flag controls whether exposing HPKE APIs on Android V"
|
/libcore/benchmarks/ |
D | README.md | 2 # Run Caliper benchmark tests using vogar on a rooted device 36 To lock CPU clocks on a rooted device, 51 The VM's configuration will have a substantial impact on performance.
|
/libcore/harmony-tests/src/test/resources/resources/ |
D | test.rtf | 12 * distributed under the License is distributed on an "AS IS" BASIS, 19 * file type based on its file extension.
|
D | test.doc | 12 * distributed under the License is distributed on an "AS IS" BASIS, 19 * file type based on its file extension.
|
/libcore/benchmarks/libs/ |
D | caliper.jar.txt | 42 form, that is based on (or derived from) the Work and for which the 53 or by an individual or Legal Entity authorized to submit on behalf of 57 communication on electronic mailing lists, source code control systems, 58 and issue tracking systems that are managed by, or on behalf of, the 64 on behalf of whom a Contribution has been received by Licensor and 146 Contributor provides its Contributions) on an "AS IS" BASIS, 171 on Your own behalf and on Your sole responsibility, not on behalf 186 file or class name and description of purpose be included on the 199 distributed under the License is distributed on an "AS IS" BASIS,
|
/libcore/expectations/ |
D | virtualdeviceknownfailures.txt | 2 * List of test cases known to fail on a virtual device. 36 description: "DNS lookups of {1.2.3.4.} do not reliably fail on GCE networks",
|