author | chegar |
Fri, 15 Apr 2016 16:19:15 +0100 | |
changeset 37363 | 329dba26ffd2 |
parent 35629 | 5738b816718a |
permissions | -rw-r--r-- |
2 | 1 |
/* |
35629
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
2 |
* Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
#include "jvm.h" |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
27 |
#include "jdk_internal_reflect_ConstantPool.h" |
2 | 28 |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
29 |
JNIEXPORT jint JNICALL Java_jdk_internal_reflect_ConstantPool_getSize0 |
2 | 30 |
(JNIEnv *env, jobject unused, jobject jcpool) |
31 |
{ |
|
32 |
return JVM_ConstantPoolGetSize(env, unused, jcpool); |
|
33 |
} |
|
34 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
35 |
JNIEXPORT jclass JNICALL Java_jdk_internal_reflect_ConstantPool_getClassAt0 |
2 | 36 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
37 |
{ |
|
38 |
return JVM_ConstantPoolGetClassAt(env, unused, jcpool, index); |
|
39 |
} |
|
40 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
41 |
JNIEXPORT jclass JNICALL Java_jdk_internal_reflect_ConstantPool_getClassAtIfLoaded0 |
2 | 42 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
43 |
{ |
|
44 |
return JVM_ConstantPoolGetClassAtIfLoaded(env, unused, jcpool, index); |
|
45 |
} |
|
46 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
47 |
JNIEXPORT jint JNICALL Java_jdk_internal_reflect_ConstantPool_getClassRefIndexAt0 |
35629
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
48 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
49 |
{ |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
50 |
return JVM_ConstantPoolGetClassRefIndexAt(env, unused, jcpool, index); |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
51 |
} |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
52 |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
53 |
JNIEXPORT jobject JNICALL Java_jdk_internal_reflect_ConstantPool_getMethodAt0 |
2 | 54 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
55 |
{ |
|
56 |
return JVM_ConstantPoolGetMethodAt(env, unused, jcpool, index); |
|
57 |
} |
|
58 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
59 |
JNIEXPORT jobject JNICALL Java_jdk_internal_reflect_ConstantPool_getMethodAtIfLoaded0 |
2 | 60 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
61 |
{ |
|
62 |
return JVM_ConstantPoolGetMethodAtIfLoaded(env, unused, jcpool, index); |
|
63 |
} |
|
64 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
65 |
JNIEXPORT jobject JNICALL Java_jdk_internal_reflect_ConstantPool_getFieldAt0 |
2 | 66 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
67 |
{ |
|
68 |
return JVM_ConstantPoolGetFieldAt(env, unused, jcpool, index); |
|
69 |
} |
|
70 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
71 |
JNIEXPORT jobject JNICALL Java_jdk_internal_reflect_ConstantPool_getFieldAtIfLoaded0 |
2 | 72 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
73 |
{ |
|
74 |
return JVM_ConstantPoolGetFieldAtIfLoaded(env, unused, jcpool, index); |
|
75 |
} |
|
76 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
77 |
JNIEXPORT jobjectArray JNICALL Java_jdk_internal_reflect_ConstantPool_getMemberRefInfoAt0 |
2 | 78 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
79 |
{ |
|
80 |
return JVM_ConstantPoolGetMemberRefInfoAt(env, unused, jcpool, index); |
|
81 |
} |
|
82 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
83 |
JNIEXPORT jint JNICALL Java_jdk_internal_reflect_ConstantPool_getNameAndTypeRefIndexAt0 |
35629
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
84 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
85 |
{ |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
86 |
return JVM_ConstantPoolGetNameAndTypeRefIndexAt(env, unused, jcpool, index); |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
87 |
} |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
88 |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
89 |
JNIEXPORT jobjectArray JNICALL Java_jdk_internal_reflect_ConstantPool_getNameAndTypeRefInfoAt0 |
35629
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
90 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
91 |
{ |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
92 |
return JVM_ConstantPoolGetNameAndTypeRefInfoAt(env, unused, jcpool, index); |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
93 |
} |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
94 |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
95 |
JNIEXPORT jint JNICALL Java_jdk_internal_reflect_ConstantPool_getIntAt0 |
2 | 96 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
97 |
{ |
|
98 |
return JVM_ConstantPoolGetIntAt(env, unused, jcpool, index); |
|
99 |
} |
|
100 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
101 |
JNIEXPORT jlong JNICALL Java_jdk_internal_reflect_ConstantPool_getLongAt0 |
2 | 102 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
103 |
{ |
|
104 |
return JVM_ConstantPoolGetLongAt(env, unused, jcpool, index); |
|
105 |
} |
|
106 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
107 |
JNIEXPORT jfloat JNICALL Java_jdk_internal_reflect_ConstantPool_getFloatAt0 |
2 | 108 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
109 |
{ |
|
110 |
return JVM_ConstantPoolGetFloatAt(env, unused, jcpool, index); |
|
111 |
} |
|
112 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
113 |
JNIEXPORT jdouble JNICALL Java_jdk_internal_reflect_ConstantPool_getDoubleAt0 |
2 | 114 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
115 |
{ |
|
116 |
return JVM_ConstantPoolGetDoubleAt(env, unused, jcpool, index); |
|
117 |
} |
|
118 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
119 |
JNIEXPORT jstring JNICALL Java_jdk_internal_reflect_ConstantPool_getStringAt0 |
2 | 120 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
121 |
{ |
|
122 |
return JVM_ConstantPoolGetStringAt(env, unused, jcpool, index); |
|
123 |
} |
|
124 |
||
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
125 |
JNIEXPORT jstring JNICALL Java_jdk_internal_reflect_ConstantPool_getUTF8At0 |
2 | 126 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
127 |
{ |
|
128 |
return JVM_ConstantPoolGetUTF8At(env, unused, jcpool, index); |
|
129 |
} |
|
35629
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
130 |
|
37363
329dba26ffd2
8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents:
35629
diff
changeset
|
131 |
JNIEXPORT jbyte JNICALL Java_jdk_internal_reflect_ConstantPool_getTagAt0 |
35629
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
132 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index) |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
133 |
{ |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
134 |
return JVM_ConstantPoolGetTagAt(env, unused, jcpool, index); |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
135 |
} |
5738b816718a
8141615: Add new public methods to sun.reflect.ConstantPool
kshefov
parents:
25859
diff
changeset
|
136 |