aboutsummaryrefslogtreecommitdiff
path: root/scripts/jni_desc
blob: 281fd2f4ffaa8ade2ef54b61c86ef3dbf3449885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
# jni_desc -- Descriptor file of JNI probe points for hotspot_jni.stp.in
# Copyright (C) 2009  Red Hat, Inc.
#
# This file is part of IcedTea.
#
# IcedTea is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# IcedTea 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 for more details.
#
# You should have received a copy of the GNU General Public License
# along with IcedTea; see the file COPYING.  If not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA.

# JNIProbeName<space>Description
# arg1_name<space><type><space>Description
# arg2_name...
# [ret<space><type><space>Description]
# blank line
#
# Notes:
# JNIProbeName doesn't include __entry or __return.
# ret is the the return argument
# (if there is a __return probe, only FatalError never returns)
# <type>/representation is one of:
# v - void, s - string, x - hex number, d - number
# void is only used for return ret arguments.

AllocObject Allocate object without calling any constructors.
env x JNIEnv pointer.
clazz x jclass pointer.
ret x jobject reference to allocated object or NULL

AttachCurrentThreadAsDaemon Attach the current thread as daemon.
vm x JavaVM pointer.
penv x pointer to JNIEnv pointer.
args x pointer to JavaVMAttachArgs struct.
ret d Zero on success, negative on error.

AttachCurrentThread Attach the current thread.
vm x JavaVM pointer.
penv x pointer to JNIEnv pointer.
args x pointer to JavaVMAttachArgs struct.
ret d Zero on success, negative on error.

CallBooleanMethodA Call virtual method returning a boolean using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallBooleanMethod Call virtual method returning a boolean.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallBooleanMethodV Call virtual method returning a boolean using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallByteMethodA Call virtual method returning a byte using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallByteMethod Call virtual method returning a byte.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallByteMethodV Call virtual method returning a byte using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallCharMethodA Call virtual method returning a char using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallCharMethod Call virtual method returning a char.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallCharMethodV Call virtual method returning a char using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallDoubleMethodA Call virtual method returning a double using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallDoubleMethod Call virtual method returning a double.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallDoubleMethodV Call virtual method returning a double using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallFloatMethodA Call virtual method returning a float using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallFloatMethod Call virtual method returning a float.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallFloatMethodV Call virtual method returning a float using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallIntMethodA Call virtual method returning a int using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallIntMethod Call virtual method returning a int.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallIntMethodV Call virtual method returning a int using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallLongMethodA Call virtual method returning a long using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallLongMethod Call virtual method returning a long.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallLongMethodV Call virtual method returning a long using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallObjectMethodA Call virtual method returning a object using array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallObjectMethod Call virtual method returning a object.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallObjectMethodV Call virtual method returning a object using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallShortMethodA Call virtual method returning a short using array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallShortMethod Call virtual method returning a short.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallShortMethodV Call virtual method returning a short using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallVoidMethodA Call virtual method returning void using array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallVoidMethod Call virtual method returning void.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallVoidMethodV Call virtual method returning void using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualBooleanMethodA Call non-virtual method returning a boolean using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualBooleanMethod Call non-virtual method returning a boolean.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualBooleanMethodV Call non-virtual method returning a boolean using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualByteMethodA Call non-virtual method returning a byte using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualByteMethod Call non-virtual method returning a byte.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualByteMethodV Call non-virtual method returning a byte using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualCharMethodA Call non-virtual method returning a char using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualCharMethod Call non-virtual method returning a char.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualCharMethodV Call non-virtual method returning a char using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualDoubleMethodA Call non-virtual method returning a double using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualDoubleMethod Call non-virtual method returning a double.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualDoubleMethodV Call non-virtual method returning a double using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualFloatMethodA Call non-virtual method returning a float using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualFloatMethod Call non-virtual method returning a float.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualFloatMethodV Call non-virtual method returning a float using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualIntMethodA Call non-virtual method returning a int using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualIntMethod Call non-virtual method returning a int.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualIntMethodV Call non-virtual method returning a int using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualLongMethodA Call non-virtual method returning a long using an array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualLongMethod Call non-virtual method returning a long.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualLongMethodV Call non-virtual method returning a long using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualObjectMethodA Call non-virtual method returning a object using array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallNonvirtualObjectMethod Call non-virtual method returning a object.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallNonvirtualObjectMethodV Call non-virtual method returning a object using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallNonvirtualShortMethodA Call non-virtual method returning a short using array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualShortMethod Call non-virtual method returning a short.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualShortMethodV Call non-virtual method returning a short using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallNonvirtualVoidMethodA Call non-virtual method returning void using array as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualVoidMethod Call non-virtual method returning void.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallNonvirtualVoidMethodV Call non-virtual method returning void using va_list as arguments.
env x JNIEnv pointer.
obj x jobject reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticBooleanMethodA Call static method returning a boolean using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticBooleanMethod Call static method returning a boolean.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticBooleanMethodV Call static method returning a boolean using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticByteMethodA Call static method returning a byte using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticByteMethod Call static method returning a byte.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticByteMethodV Call static method returning a byte using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticCharMethodA Call static method returning a char using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticCharMethod Call static method returning a char.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticCharMethodV Call static method returning a char using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticDoubleMethodA Call static method returning a double using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticDoubleMethod Call static method returning a double.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticDoubleMethodV Call static method returning a double using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticFloatMethodA Call static method returning a float using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticFloatMethod Call static method returning a float.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticFloatMethodV Call static method returning a float using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticIntMethodA Call static method returning a int using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticIntMethod Call static method returning a int.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticIntMethodV Call static method returning a int using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticLongMethodA Call static method returning a long using an array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticLongMethod Call static method returning a long.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticLongMethodV Call static method returning a long using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticObjectMethodA Call static method returning a object using array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallStaticObjectMethod Call static method returning a object.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallStaticObjectMethodV Call static method returning a object using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret x The result of the method call.

CallStaticShortMethodA Call static method returning a short using array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticShortMethod Call static method returning a short.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticShortMethodV Call static method returning a short using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret d The result of the method call.

CallStaticVoidMethodA Call static method returning void using array as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticVoidMethod Call static method returning void.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CallStaticVoidMethodV Call static method returning void using va_list as arguments.
env x JNIEnv pointer.
clazz x jclass reference.
methodid x ID of the method to call.
ret v The result of the method call.

CreateJavaVM Creates a java virtual machine instance.
vm x pointer to a JavaVM pointer.
penv x pointer to JNIEnv pointer.
args x pointer to JavaVMInitArgs struct.
ret d Zero on success, negative on error.

DefineClass Defines a java.lang.Class instance from byte code array.
env x JNIEnv pointer.
clazz s Name of class.
loader x jobject of ClassLoader.
buf x Pointer to jbyte array.
buflen d Size of jbyte array.
ret x jclass or NULL on error.

DeleteGlobalRef Delete a global jobject reference.
env x JNIEnv pointer.
gref x jobject reference to free.
ret v Nothing returned.

DeleteLocalRef Delete a local jobject reference.
env x JNIEnv pointer.
lref x jobject reference to free.
ret v Nothing returned.

DeleteWeakGlobalRef Delete a weak global jobject reference.
env x JNIEnv pointer.
wref x jobject reference to free.
ret v Nothing returned.

DestroyJavaVM Destroys the given java virtual machine instance.
vm x JavaVM pointer.
ret d Zero on success, negative on failure.

DetachCurrentThread Detaches current thread.
vm x JavaVM pointer.
ret d Zero on success, negative on failure.

EnsureLocalCapacity Make sure capacity local references can be created.
env x JNIEnv pointer.
capacity d Number of desired local references.
ret d Returns zero on success, negative otherwise.

ExceptionCheck Check whether there is a pending exception.
env x JNIEnv pointer.
ret d One if there is a pending exception, zero if not.

ExceptionClear Clear any pending exception.
env x JNIEnv pointer.
ret v Nothing to return.

ExceptionDescribe Print any pending exception plus backtrace, clearing exception.
env x JNIEnv pointer.
ret v Nothing to return.

ExceptionOccurred Returns any pending exception.
env x JNIEnv pointer.
ret x Pending jthrowable or NULL when no exception pending.

FatalError Abort JVM because of fatal error.
env x JNIEnv pointer.
msg s Fatal exception message.
# No ret, because never returns.

FindClass Finds the named class.
env x JNIEnv pointer.
clazz s Class descriptor.
ret x jclass pointer or NULL when class cannot be found.

FromReflectedField Returns a jfieldID from a Field instance.
env x JNIEnv pointer.
field x jobject field.
ret x jfieldID or NULL on error.

FromReflectedMethod Returns a jmethodID from a Method instance.
env x JNIEnv pointer.
method x jobject method.
ret x jmethodID or NULL on error.

GetArrayLength Gets the length of an array.
env x JNIEnv pointer.
array x jarray.
ret d Length of the jarray.

GetBooleanArrayElements Returns jboolean array elements.
env x JNIEnv pointer.
array x jbooleanArray.
iscopy x Pointer to jboolean.
ret x Pointer to jboolean array.

GetBooleanArrayRegion Copies a region out of a jboolean array elements.
env x JNIEnv pointer.
array x jbooleanArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jboolean array pointer to copy into.
ret v Nothing to return.

GetBooleanField Get non-static jboolean field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret d jboolean value.

GetByteArrayElements Returns jbyte array elements.
env x JNIEnv pointer.
array x jbyteArray.
iscopy x Pointer to jboolean.
ret x Pointer to jbyte array.

GetByteArrayRegion Copies a region out of a jbyte array elements.
env x JNIEnv pointer.
array x jbyteArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jbyte array pointer to copy into.
ret v Nothing to return.

GetByteField Get non-static jbyte field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret d jbyte value.

GetCharArrayElements Returns jchar array elements.
env x JNIEnv pointer.
array x jcharArray.
iscopy x Pointer to jboolean.
ret x Pointer to jchar array.

GetCharArrayRegion Copies a region out of a jchar array elements.
env x JNIEnv pointer.
array x jcharArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jchar array pointer to copy into.
ret v Nothing to return.

GetCharField Get non-static jchar field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret d jchar value.

GetCreatedJavaVMs Return all created Java Virtual Machines.
vmbuf x Pointer to JavaVM pointer.
buflen d Max number of vms returned.
nvms d Number of JavaVMs returned.
ret d Zero on success, negative on error.

GetDefaultJavaVMInitArgs Returns default vm configuration.
vm_args x JDK1_1InitArgs pointer
ret d Zero if JDK1_1InitArgs version field supporter, negative otherwise.

GetDirectBufferAddress Returns starting memory address of given Buffer.
env x JNIEnv pointer.
buf x java.nio.Buffer jobject.
ret x Address or NULL on error.

GetDirectBufferCapacity Returns size of memory region of given Buffer.
env x JNIEnv pointer.
buf x java.nio.Buffer jobject.
ret d Capacity of buffer or -1 on error.

GetDoubleArrayElements Returns jdouble array elements.
env x JNIEnv pointer.
array x jdoubleArray.
iscopy x Pointer to jboolean.
ret x Pointer to jdouble array.

GetDoubleArrayRegion Copies a region out of a jdouble array elements.
env x JNIEnv pointer.
array x jdoubleArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jdouble array pointer to copy into.
ret v Nothing to return.

GetDoubleField Get non-static jdouble field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret v Doesn't return jdouble value.

GetEnv Returns JNIEnv for current thread if attached and jni version supported.
vm x JavaVM pointer.
penv x Pointer to JNIEnv pointer.
version x JNI version requested.
ret Zero on success, negative on error.

GetFieldID Get jfieldID of a non-static field of a jclass.
env x JNIEnv pointer.
clazz x jclass object.
field s UTF-8 field name.
sig s UTF-8 signature of the field.
ret x jfieldID or NULL on failure.

GetFloatArrayElements Returns jfloat array elements.
env x JNIEnv pointer.
array x jfloatArray.
iscopy x Pointer to jboolean.
ret x Pointer to jfloat array.

GetFloatArrayRegion Copies a region out of a jfloat array elements.
env x JNIEnv pointer.
array x jfloatArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jfloat array pointer to copy into.
ret v Nothing to return.

GetFloatField Get non-static jfloat field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret v Doesn't return jfloat value.

GetIntArrayElements Returns jint array elements.
env x JNIEnv pointer.
array x jintArray.
iscopy x Pointer to jboolean.
ret x Pointer to jint array.

GetIntArrayRegion Copies a region out of a jint array elements.
env x JNIEnv pointer.
array x jintArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jint array pointer to copy into.
ret v Nothing to return.

GetIntField Get non-static jint field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret d jint value.

GetJavaVM Get the JavaVM struct associated with the current JNIEnv.
env x JNIEnv pointer.
pvm x Pointer to JavaVM pointer.
ret d Zero on success, negative on failure.

GetLongArrayElements Returns jlong array elements.
env x JNIEnv pointer.
array x jlongArray.
iscopy x Pointer to jboolean.
ret x Pointer to jlong array.

GetLongArrayRegion Copies a region out of a jlong array elements.
env x JNIEnv pointer.
array x jlongArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jlong array pointer to copy into.
ret v Nothing to return.

GetLongField Get non-static jlong field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret d jlong value.

GetMethodID Returns jmethodID of requested method.
env x JINEnv pointer.
clazz x jclass pointer.
method s Name of the method.
sig s Signature of the method.
ret x jmethodID of the requested method or NULL on failure.

GetObjectArrayElement Get Object element from array.
env x JNIEnv pointer.
array x jobjectArray.
index d Element index.
ret x jobject or NULL on failure.

GetObjectClass Returns the class of a given object.
env x JNIEnv pointer.
obj x jobject pointer.
ret x jclass of the given jobject.

GetObjectField Get non-static jobject field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret x jobject value.

GetObjectRefType Whether a jobject is a local, global or weak reference.
env x JNIEnv pointer.
obj x jobject.
ret d 0 for invalid, 1 for local, 2 for global or 3 for weak references.

GetPrimitiveArrayCritical Get pointer to primitive array elements.
env x JNIEnv pointer.
array x jarray.
iscopy x Pointer to jboolean.
ret x Address of jarray elements or NULL on error.

GetShortArrayElements Returns jshort array elements.
env x JNIEnv pointer.
array x jshortArray.
iscopy x Pointer to jboolean.
ret x Pointer to jshort array.

GetShortArrayRegion Copies a region out of a jshort array elements.
env x JNIEnv pointer.
array x jshortArray to copy from.
start d Starting index.
len d Number of elements to copy.
buf x Native jshort array pointer to copy into.
ret v Nothing to return.

GetShortField Get non-static jshort field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret d jshort value.

GetStaticBooleanField Get static jboolean field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jboolean value.

GetStaticByteField Get static jbyte field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jbyte value.

GetStaticCharField Get static jchar field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jchar value.

GetStaticDoubleField Get static jdouble field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret v Does not return jdouble value.

GetStaticFieldID Get jfieldID of a static field of a jclass.
env x JNIEnv pointer.
clazz x jclass object.
field s UTF-8 field name.
sig s UTF-8 signature of the field.
ret x jfieldID or NULL on failure.

GetStaticFloatField Get static jfloat field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret v Does not return jfloat value.

GetStaticIntField Get static jint field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jint value.

GetStaticLongField Get static jlong field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jlong value.

GetStaticMethodID Returns jmethodID of requested static method.
env x JINEnv pointer.
clazz x jclass pointer.
method s Name of the method.
sig s Signature of the method.
ret x jmethodID of the requested method or NULL on failure.

GetStaticObjectField Get static jobject field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jobject value.

GetStaticShortField Get static jshort field value.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret d jshort value.

GetStringChars Get unicode jchar array of jstring.
env x JNIEnv pointer.
str x jstring.
iscopy x Pointer to jboolean.
ret x Pointer to jchar array.

GetStringCritical Get critical unicode jchar array of jstring.
env x JNIEnv pointer.
str x jstring.
iscopy x Pointer to jboolean.
ret x Pointer to jchar array.

GetStringLength Returns number of unicode jchars in jstring.
env x JNIEnv pointer.
str x jstring.
ret d Length of string.

GetStringRegion Retrieves jchar unicode characters from jstring.
env x JNIEnv pointer.
str x jstring.
start d Starting character to copy.
len d Number of jchars to copy.
buf x Pointer to jchar buffer to copy unicode characters in.
ret v Nothing to return.

GetStringUTFChars Retrieves UTF-8 encoded chars from jstring.
env x JNIEnv pointer.
str x jstring pointer.
iscopy x pointer to a jboolean.
ret s Pointer to a UTF-8 string or NULL when called failed.

GetStringUTFLength Returns length of jstring in UTF-8 encoded chars.
env x JNIEnv pointer.
str x jstring pointer.
ret d Number of UTF-8 chars in jstring.

GetStringUTFRegion 
env x JNIEnv pointer.
str x jstring.
start d jchar offset to start at.
len d Number of jchars to get from jstring.
buf x Native char array to put UTF-8 encoded strings in.
ret v Nothing to return.

GetSuperclass Returns super class of given jclass.
env x JNIEnv pointer.
clazz x jclass.
ret x Super jclass or NULL if the given jclass is Object or an interface.

GetVersion Returns JNI version.
env x JNIEnv pointer.
ret x JNI version.

IsAssignableFrom Whether a given jclass can be cast to another jclass.
env x JNIEnv pointer.
clazz1 x jclass to cast from.
clazz2 x jclass to cast to.
ret d One if clazz1 can be cast to clazz2, zero otherwise.

IsInstanceOf Whether a given jobject is an instance of a jclass.
env x JNIEnv pointer.
obj x jobject.
clazz x jclass.
ret d One if obj can be cast to clazz, zero otherwise.

IsSameObject Whether two jobjects identify the same java object.
env x JNIEnv pointer.
obj1 x jobject.
obj2 x jobject.
ret d One if obj1 and obj2 are references to the same java object.

MonitorEnter Enter monitor for given jobject.
env x JNIEnv pointer.
obj x jobject.
ret d Zero on success, negative on failure.

MonitorExit Exit monitor for given jobject.
env x JNIEnv pointer.
obj x jobject.
ret d Zero on success, negative on failure.

NewBooleanArray Create new boolean array.
env x JNIEnv pointer.
length d size of the array.
ret x jbooleanArray or NULL on failure.

NewByteArray Create new byte array.
env x JNIEnv pointer.
length d size of the array.
ret x jbyteArray or NULL on failure.

NewCharArray Create new char array.
env x JNIEnv pointer.
length d size of the array.
ret x jcharArray or NULL on failure.

NewDirectByteBuffer Create DirectByteBuffer for given address and size.
env x JNIEnv pointer.
addr x Address to start.
size d Capacity of the buffer.
ret x DirectByteBuffer jobject or NULL on failure.

NewDoubleArray Create new double array.
env x JNIEnv pointer.
length d size of the array.
ret x jdoubleArray or NULL on failure.

NewFloatArray Create new floar array.
env x JNIEnv pointer.
length d size of the array.
ret x jfloatArray or NULL on failure.

NewGlobalRef Create a new global reference for a jobject.
env x JNIEnv pointer.
obj x jobject to create a global reference for.
ret x Global jobject reference, or NULL on failure.

NewIntArray Create new int array.
env x JNIEnv pointer.
length d size of the array.
ret x jintArray or NULL on failure.

NewLocalRef Create a new local reference for a jobject.
env x JNIEnv pointer.
obj x jobject to create a local reference for.
ret x Global jobject reference, or NULL on failure.

NewLongArray Create new long array.
env x JNIEnv pointer.
length d size of the array.
ret x jlongArray or NULL on failure.

NewObjectA Create a new object from jclass from arguments in array.
env x JNIEnv pointer.
clazz x jclass.
methodid x jmethodID of constructor to call.
ret x jobject or NULL on failure.

NewObjectArray Create new jobject array of given element type.
env x JNIEnv pointer.
length d size of the array.
element x jclass of the elements in the array.
initial x jobject initial value.
ret x jarray or NULL on failure.

NewObject Create a new object from jclass using the jmethodID constructor.
env x JNIEnv pointer.
clazz x jclass.
methodid x jmethodID of constructor to call.
ret x jobject or NULL on failure.

NewObjectV Create a new object from jclass from va_list arguments.
env x JNIEnv pointer.
clazz x jclass.
methodid x jmethodID of constructor to call.
ret x jobject or NULL on failure.

NewShortArray Create new short array.
env x JNIEnv pointer.
length d size of the array.
ret x jlongArray or NULL on failure.

NewString Create a new string from jchar unicode characters.
env x JNIEnv pointer.
chars x jchar array.
len d Length of jchar array.
ret x jstring or NULL on error.

NewStringUTF Creates a new string from a UTF-8 array.
env x JNIEnv pointer.
bytes s UTF-8 array.
ret x jstring created or NULL on failure.

NewWeakGlobalRef Create a new weak reference for a jobject.
env x JNIEnv pointer.
obj x jobject to create a weak reference for.
ret x jweak reference, or NULL on failure.

PopLocalFrame Pops local reference frame.
env x JNIEnv pointer.
obj x jobject reference in current frame.
ret x jobject reference in previous frame for given obj or NULL when non given.

PushLocalFrame Pushes local reference frame.
env x JNIEnv pointer.
capacity d Minimum number of references needed.
ret d Zero on success, negative on failure.

RegisterNatives Registers native methods for class.
env x JNIEnv pointer.
clazz x jclass to register methods for.
methods x pointer to JNINativeMethods array.
nmethods x number of methods.
ret d Zero on success, negative otherwise.

ReleaseBooleanArrayElements Releases boolean array elements.
env x JNIEnv pointer.
array x jbooleanArray.
elems x jboolean array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleaseByteArrayElements Releases byte array elements.
env x JNIEnv pointer.
array x jbyteArray.
elems x jbyte array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleaseCharArrayElements Releases char array elements.
env x JNIEnv pointer.
array x jcharArray.
elems x jchar array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleaseDoubleArrayElements Releases double array elements.
env x JNIEnv pointer.
array x jdoubleArray.
elems x jdouble array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleaseFloatArrayElements Releases float array elements.
env x JNIEnv pointer.
array x jfloatArray.
elems x jfloat array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleaseIntArrayElements Releases int array elements.
env x JNIEnv pointer.
array x jintArray.
elems x jint array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleaseLongArrayElements Releases long array elements.
env x JNIEnv pointer.
array x jlongArray.
elems x jlong array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing returned.

ReleasePrimitiveArrayCritical Releases critical array elements.
env x JNIEnv pointer.
array x jarray.
carray x Native elements pointer.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back).
ret v Nothing to return.

ReleaseShortArrayElements Releases short array elements.
env x JNIEnv pointer.
array x jshortArray.
elems x jshort array.
mode d How array should be released (0 commit back and free, 1 commit back and do not free, 2 free but do not commit back)
ret v Nothing to return.

ReleaseStringChars Releases GetStringChar jchar array.
env x JNIEnv pointer.
str x jstring.
chars x jchar array to release.
ret v Nothing to return.

ReleaseStringCritical Releases GetStringCritical jchar array.
env x JNIEnv pointer.
str x jstring.
chars x jchar array to release.
ret v Nothing to return.

ReleaseStringUTFChars Releases GetStringUTF char array.
env x JNIEnv pointer.
str x jstring pointer.
utf s Pointer to utf-8 chars to release.
ret v Returns nothing

SetBooleanArrayRegion Copies a region into a jboolean array.
env x JNIEnv pointer.
array x jbooleanArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jboolean array pointer to copy from.
ret v Nothing to return.

SetBooleanField Set non-static jboolean field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value d jboolean value.
ret v Nothing to return.

SetByteArrayRegion Copies a region into a jbyte array.
env x JNIEnv pointer.
array x jbyteArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jbyte array pointer to copy from.
ret v Nothing to return.

SetByteField Set non-static jbyte field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value d jbyte value.
ret v Nothing to return.

SetCharArrayRegion Copies a region into a jchar array.
env x JNIEnv pointer.
array x jcharArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jchar array pointer to copy from.
ret v Nothing to return.

SetCharField Set non-static jchar field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value d jchar value.
ret v Nothing to return.

SetDoubleArrayRegion Copies a region into a jdouble array.
env x JNIEnv pointer.
array x jdoubleArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jdouble array pointer to copy from.
ret v Nothing to return.

SetDoubleField Set non-static jdouble field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret v Nothing to return.

SetFloatArrayRegion Copies a region into a jfloat array.
env x JNIEnv pointer.
array x jfloatArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jfloat array pointer to copy from.
ret v Nothing to return.

SetFloatField Set non-static jfloat field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
ret v Nothing to return.

SetIntArrayRegion Copies a region into a jint array.
env x JNIEnv pointer.
array x jintArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jint array pointer to copy from.
ret v Nothing to return.

SetIntField Set non-static jint field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value d jint value.
ret v Nothing to return.

SetLongArrayRegion Copies a region into a jlong arry.
env x JNIEnv pointer.
array x jlongArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x Native jlong array pointer to copy from.
ret v Nothing to return.

SetLongField Set non-static jlong field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value d jlong value.
ret v Nothing to return.

SetObjectArrayElement Set jobjectArray element.
env x JNIEnv pointer.
array x jobjectArray.
index d Element index to set.
value x jobject value.
ret v Nothing to return.

SetObjectField Set non-static jobject field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value x jobject value.
ret v Nothing to return.

SetShortArrayRegion Copies a region into a jshort array.
env x JNIEnv pointer.
array x jshortArray to copy into.
start d Starting index.
len d Number of elements to copy.
buf x jshort array pointer to copy from.
ret v Nothing to return.

SetShortField Set non-static jshort field value.
env x JNIEnv pointer.
obj x jobject.
field x jfieldID.
value d jshort value.
ret v Nothing to return.

SetStaticBooleanField Set static jboolean field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value d jboolean value.
ret v Nothing to return.

SetStaticByteField Set static jbyte field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value d jbyte value.
ret v Nothing to return.

SetStaticCharField Set static jchar field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value d jchar value.
ret v Nothing to return.

SetStaticDoubleField Set static jdouble field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
ret v Nothing to return.

SetStaticFloatField Set static jfloat field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
ret v Nothing to return.

SetStaticIntField Set static jint field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value d jint value.
ret v Nothing to return.

SetStaticLongField Set static jlong field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value d jlong value.
ret v Nothing to return.

SetStaticObjectField Set static jobject field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value x jobject value.
ret v Nothing to return.

SetStaticShortField Set static jshort field value.
env x JNIEnv pointer.
clazz x jclazz.
field x jfieldID.
value d jshort value.
ret v Nothing to return.

Throw Throws a given jthrowable object.
env x JNIEnv pointer.
obj x jthrowable to throw.
ret d Zero on success, negative on error.

ThrowNew Throws a new instance of the given jclass throwable with message.
env x JNIEnv pointer.
clazz x jclass of the throwable.
msg s Message of the throwable.
ret d Zero on success, negative on error.

ToReflectedField Get Field object from jfieldID.
env x JNIEnv pointer.
clazz x jclass.
field x jfieldID.
ret x jobject to instance of Field or NULL on failure

ToReflectedMethod Get Method object from jmethodID.
env x JNIEnv pointer.
clazz x jclass.
method x jmethodID.
ret x jobject to instance of Method or NULL on failure

UnregisterNatives Unregisters native methods from the given jclass.
env x JNIEnv pointer.
clazz x jclass to unregister native methods from.
ret d Zero on success, negative on error.