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
|
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class BluetoothGattCharacteristic */
#ifndef _Included_BluetoothGattCharacteristic
#define _Included_BluetoothGattCharacteristic
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: BluetoothGattCharacteristic
* Method: getBluetoothType
* Signature: ()LBluetoothType;
*/
JNIEXPORT jobject JNICALL Java_BluetoothGattCharacteristic_getBluetoothType
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: clone
* Signature: ()LBluetoothGattCharacteristic;
*/
JNIEXPORT jobject JNICALL Java_BluetoothGattCharacteristic_clone
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: readValue
* Signature: ()Ljava/util/List;
*/
JNIEXPORT jobject JNICALL Java_BluetoothGattCharacteristic_readValue
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: writeValue
* Signature: (Ljava/util/List;)Z
*/
JNIEXPORT jboolean JNICALL Java_BluetoothGattCharacteristic_writeValue
(JNIEnv *, jobject, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: startNotify
* Signature: ()Z
*/
JNIEXPORT jboolean JNICALL Java_BluetoothGattCharacteristic_startNotify
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: stopNotify
* Signature: ()Z
*/
JNIEXPORT jboolean JNICALL Java_BluetoothGattCharacteristic_stopNotify
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: getUuid
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_BluetoothGattCharacteristic_getUuid
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: getService
* Signature: ()LBluetoothGattService;
*/
JNIEXPORT jobject JNICALL Java_BluetoothGattCharacteristic_getService
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: getValue
* Signature: ()Ljava/util/List;
*/
JNIEXPORT jobject JNICALL Java_BluetoothGattCharacteristic_getValue
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: getNotifying
* Signature: ()Z
*/
JNIEXPORT jboolean JNICALL Java_BluetoothGattCharacteristic_getNotifying
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: getFlags
* Signature: ()[Ljava/lang/String;
*/
JNIEXPORT jobjectArray JNICALL Java_BluetoothGattCharacteristic_getFlags
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: getDescriptors
* Signature: ()Ljava/util/List;
*/
JNIEXPORT jobject JNICALL Java_BluetoothGattCharacteristic_getDescriptors
(JNIEnv *, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: init
* Signature: (LBluetoothGattCharacteristic;)V
*/
JNIEXPORT void JNICALL Java_BluetoothGattCharacteristic_init
(JNIEnv *, jobject, jobject);
/*
* Class: BluetoothGattCharacteristic
* Method: delete
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_BluetoothGattCharacteristic_delete
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif
|