summaryrefslogtreecommitdiff
path: root/ojluni/annotations/hiddenapi/java/net/InetAddress.java
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2018-10-23 11:48:38 +0100
committerPaul Duffin <paulduffin@google.com>2018-10-31 10:34:57 +0000
commit7bb8d2366a72543f3be1e96a395e55ba89ceb286 (patch)
treed1531e9126eef6237e970c00fc9bd1f51defddaf /ojluni/annotations/hiddenapi/java/net/InetAddress.java
parent29d67c06aea70e2d155a2d0f1756a4723eefa339 (diff)
Add stubs for hiddenapi
Adds stubs for ojluni classes some of whose hidden members are used by applications. Each such member is annotated with the UnsupportedAppUsage annotation. The stubs are built as part of the core-oj-hiddenapi target from which the build will extract information about the hidden class members that are used by applications. This was tested by making and then manually checking that the generated out/target/common/obj/PACKAGING/hiddenapi-light-greylist.txt was the same (after sorting) before and after this change. Test: see above Bug: 117818301 Change-Id: Icfe773e00ba1f96a379b705f26ef631ec34fee5e
Diffstat (limited to 'ojluni/annotations/hiddenapi/java/net/InetAddress.java')
-rw-r--r--ojluni/annotations/hiddenapi/java/net/InetAddress.java294
1 files changed, 294 insertions, 0 deletions
diff --git a/ojluni/annotations/hiddenapi/java/net/InetAddress.java b/ojluni/annotations/hiddenapi/java/net/InetAddress.java
new file mode 100644
index 0000000000..2a7148d8d4
--- /dev/null
+++ b/ojluni/annotations/hiddenapi/java/net/InetAddress.java
@@ -0,0 +1,294 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation. Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package java.net;
+
+import dalvik.annotation.compat.UnsupportedAppUsage;
+
+@SuppressWarnings({"unchecked", "deprecation", "all"})
+public class InetAddress implements java.io.Serializable {
+
+ InetAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ @UnsupportedAppUsage
+ java.net.InetAddress.InetAddressHolder holder() {
+ throw new RuntimeException("Stub!");
+ }
+
+ private java.lang.Object readResolve() throws java.io.ObjectStreamException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isMulticastAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isAnyLocalAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isLoopbackAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isLinkLocalAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isSiteLocalAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isMCGlobal() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isMCNodeLocal() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isMCLinkLocal() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isMCSiteLocal() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isMCOrgLocal() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isReachable(int timeout) throws java.io.IOException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isReachable(java.net.NetworkInterface netif, int ttl, int timeout)
+ throws java.io.IOException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean isReachableByICMP(int timeout) throws java.io.IOException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public java.lang.String getHostName() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public java.lang.String getCanonicalHostName() {
+ throw new RuntimeException("Stub!");
+ }
+
+ private static java.lang.String getHostFromNameService(java.net.InetAddress addr) {
+ throw new RuntimeException("Stub!");
+ }
+
+ public byte[] getAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public java.lang.String getHostAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public int hashCode() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public boolean equals(java.lang.Object obj) {
+ throw new RuntimeException("Stub!");
+ }
+
+ public java.lang.String toString() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress getByAddress(java.lang.String host, byte[] addr)
+ throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ private static java.net.InetAddress getByAddress(
+ java.lang.String host, byte[] addr, int scopeId) throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress getByName(java.lang.String host)
+ throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress[] getAllByName(java.lang.String host)
+ throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress getLoopbackAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress getByAddress(byte[] addr)
+ throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress getLocalHost() throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ static java.net.InetAddress anyLocalAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ private void readObjectNoData(java.io.ObjectInputStream s)
+ throws java.lang.ClassNotFoundException, java.io.IOException {
+ throw new RuntimeException("Stub!");
+ }
+
+ private void readObject(java.io.ObjectInputStream s)
+ throws java.lang.ClassNotFoundException, java.io.IOException {
+ throw new RuntimeException("Stub!");
+ }
+
+ private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException {
+ throw new RuntimeException("Stub!");
+ }
+
+ @UnsupportedAppUsage
+ public static boolean isNumeric(java.lang.String address) {
+ throw new RuntimeException("Stub!");
+ }
+
+ static java.net.InetAddress parseNumericAddressNoThrow(java.lang.String address) {
+ throw new RuntimeException("Stub!");
+ }
+
+ static java.net.InetAddress disallowDeprecatedFormats(
+ java.lang.String address, java.net.InetAddress inetAddress) {
+ throw new RuntimeException("Stub!");
+ }
+
+ @UnsupportedAppUsage
+ public static java.net.InetAddress parseNumericAddress(java.lang.String numericAddress) {
+ throw new RuntimeException("Stub!");
+ }
+
+ @UnsupportedAppUsage
+ public static void clearDnsCache() {
+ throw new RuntimeException("Stub!");
+ }
+
+ public static java.net.InetAddress getByNameOnNet(java.lang.String host, int netId)
+ throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ @UnsupportedAppUsage
+ public static java.net.InetAddress[] getAllByNameOnNet(java.lang.String host, int netId)
+ throws java.net.UnknownHostException {
+ throw new RuntimeException("Stub!");
+ }
+
+ private static final java.lang.ClassLoader BOOT_CLASSLOADER;
+
+ static {
+ BOOT_CLASSLOADER = null;
+ }
+
+ static final int NETID_UNSET = 0; // 0x0
+
+ private transient java.lang.String canonicalHostName;
+
+ @UnsupportedAppUsage
+ transient java.net.InetAddress.InetAddressHolder holder;
+
+ static final java.net.InetAddressImpl impl;
+
+ static {
+ impl = null;
+ }
+
+ private static final sun.net.spi.nameservice.NameService nameService;
+
+ static {
+ nameService = null;
+ }
+
+ private static final java.io.ObjectStreamField[] serialPersistentFields;
+
+ static {
+ serialPersistentFields = new java.io.ObjectStreamField[0];
+ }
+
+ private static final long serialVersionUID = 3286316764910316507L; // 0x2d9b57af9fe3ebdbL
+
+ @SuppressWarnings({"unchecked", "deprecation", "all"})
+ static class InetAddressHolder {
+
+ InetAddressHolder() {
+ throw new RuntimeException("Stub!");
+ }
+
+ InetAddressHolder(java.lang.String hostName, int address, int family) {
+ throw new RuntimeException("Stub!");
+ }
+
+ void init(java.lang.String hostName, int family) {
+ throw new RuntimeException("Stub!");
+ }
+
+ java.lang.String getHostName() {
+ throw new RuntimeException("Stub!");
+ }
+
+ java.lang.String getOriginalHostName() {
+ throw new RuntimeException("Stub!");
+ }
+
+ int getAddress() {
+ throw new RuntimeException("Stub!");
+ }
+
+ int getFamily() {
+ throw new RuntimeException("Stub!");
+ }
+
+ @UnsupportedAppUsage
+ int address;
+
+ @UnsupportedAppUsage
+ int family;
+
+ @UnsupportedAppUsage
+ java.lang.String hostName;
+
+ @UnsupportedAppUsage
+ java.lang.String originalHostName;
+ }
+}