-
Notifications
You must be signed in to change notification settings - Fork 3
/
JtuxFile.h
executable file
·437 lines (383 loc) · 9.26 KB
/
JtuxFile.h
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
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class jtux_UFile */
#ifndef _Included_jtux_UFile
#define _Included_jtux_UFile
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: jtux_UFile
* Method: access
* Signature: (Ljava/lang/String;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_access
(JNIEnv *, jclass, jstring, jint);
/*
* Class: jtux_UFile
* Method: chmod
* Signature: (Ljava/lang/String;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_chmod
(JNIEnv *, jclass, jstring, jint);
/*
* Class: jtux_UFile
* Method: chown
* Signature: (Ljava/lang/String;JJ)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_chown
(JNIEnv *, jclass, jstring, jlong, jlong);
/*
* Class: jtux_UFile
* Method: close
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_close
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: dup
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_dup
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: dup2
* Signature: (II)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_dup2
(JNIEnv *, jclass, jint, jint);
/*
* Class: jtux_UFile
* Method: fchmod
* Signature: (II)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_fchmod
(JNIEnv *, jclass, jint, jint);
/*
* Class: jtux_UFile
* Method: fchown
* Signature: (IJJ)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_fchown
(JNIEnv *, jclass, jint, jlong, jlong);
/*
* Class: jtux_UFile
* Method: fcntl
* Signature: (III)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_fcntl
(JNIEnv *, jclass, jint, jint, jint);
/*
* Class: jtux_UFile
* Method: FD_ZERO
* Signature: (Ljtux/UFile$fd_set;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_FD_1ZERO
(JNIEnv *, jclass, jobject);
/*
* Class: jtux_UFile
* Method: FD_SET
* Signature: (ILjtux/UFile$fd_set;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_FD_1SET
(JNIEnv *, jclass, jint, jobject);
/*
* Class: jtux_UFile
* Method: FD_CLR
* Signature: (ILjtux/UFile$fd_set;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_FD_1CLR
(JNIEnv *, jclass, jint, jobject);
/*
* Class: jtux_UFile
* Method: FD_ISSET
* Signature: (ILjtux/UFile$fd_set;)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_FD_1ISSET
(JNIEnv *, jclass, jint, jobject);
/*
* Class: jtux_UFile
* Method: fdatasync
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_fdatasync
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: fstat
* Signature: (ILjtux/UFile$s_stat;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_fstat
(JNIEnv *, jclass, jint, jobject);
/*
* Class: jtux_UFile
* Method: fstatvfs
* Signature: (ILjtux/UFile$s_statvfs;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_fstatvfs
(JNIEnv *, jclass, jint, jobject);
/*
* Class: jtux_UFile
* Method: fsync
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_fsync
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: ftruncate
* Signature: (IJ)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_ftruncate
(JNIEnv *, jclass, jint, jlong);
/*
* Class: jtux_UFile
* Method: lchown
* Signature: (Ljava/lang/String;JJ)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_lchown
(JNIEnv *, jclass, jstring, jlong, jlong);
/*
* Class: jtux_UFile
* Method: link
* Signature: (Ljava/lang/String;Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_link
(JNIEnv *, jclass, jstring, jstring);
/*
* Class: jtux_UFile
* Method: lockf
* Signature: (IIJ)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_lockf
(JNIEnv *, jclass, jint, jint, jlong);
/*
* Class: jtux_UFile
* Method: lseek
* Signature: (IJI)J
*/
JNIEXPORT jlong JNICALL Java_jtux_UFile_lseek
(JNIEnv *, jclass, jint, jlong, jint);
/*
* Class: jtux_UFile
* Method: lstat
* Signature: (Ljava/lang/String;Ljtux/UFile$s_stat;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_lstat
(JNIEnv *, jclass, jstring, jobject);
/*
* Class: jtux_UFile
* Method: mkfifo
* Signature: (Ljava/lang/String;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_mkfifo
(JNIEnv *, jclass, jstring, jint);
/*
* Class: jtux_UFile
* Method: mknod
* Signature: (Ljava/lang/String;II)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_mknod
(JNIEnv *, jclass, jstring, jint, jint);
/*
* Class: jtux_UFile
* Method: mkstemp
* Signature: (Ljava/lang/StringBuffer;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_mkstemp
(JNIEnv *, jclass, jobject);
/*
* Class: jtux_UFile
* Method: open
* Signature: (Ljava/lang/String;II)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_open
(JNIEnv *, jclass, jstring, jint, jint);
/*
* Class: jtux_UFile
* Method: pipe
* Signature: ([I)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_pipe
(JNIEnv *, jclass, jintArray);
/*
* Class: jtux_UFile
* Method: poll
* Signature: ([Ljtux/UFile$s_pollfd;II)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_poll
(JNIEnv *, jclass, jobjectArray, jint, jint);
/*
* Class: jtux_UFile
* Method: pread
* Signature: (I[BIJ)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_pread
(JNIEnv *, jclass, jint, jbyteArray, jint, jlong);
/*
* Class: jtux_UFile
* Method: pselect
* Signature: (ILjtux/UFile$fd_set;Ljtux/UFile$fd_set;Ljtux/UFile$fd_set;Ljtux/UProcess$s_timespec;Ljtux/UProcess$sigset_t;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_pselect
(JNIEnv *, jclass, jint, jobject, jobject, jobject, jobject, jobject);
/*
* Class: jtux_UFile
* Method: pwrite
* Signature: (I[BIJ)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_pwrite
(JNIEnv *, jclass, jint, jbyteArray, jint, jlong);
/*
* Class: jtux_UFile
* Method: read
* Signature: (I[BI)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_read
(JNIEnv *, jclass, jint, jbyteArray, jint);
/*
* Class: jtux_UFile
* Method: readlink
* Signature: (Ljava/lang/String;[BI)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_readlink
(JNIEnv *, jclass, jstring, jbyteArray, jint);
/*
* Class: jtux_UFile
* Method: readv
* Signature: (I[Ljtux/UFile$s_iovec;I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_readv
(JNIEnv *, jclass, jint, jobjectArray, jint);
/*
* Class: jtux_UFile
* Method: rename
* Signature: (Ljava/lang/String;Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_rename
(JNIEnv *, jclass, jstring, jstring);
/*
* Class: jtux_UFile
* Method: S_ISBLK
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISBLK
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: S_ISCHR
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISCHR
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: S_ISDIR
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISDIR
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: S_ISFIFO
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISFIFO
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: S_ISLNK
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISLNK
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: S_ISREG
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISREG
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: S_ISSOCK
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jtux_UFile_S_1ISSOCK
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UFile
* Method: select
* Signature: (ILjtux/UFile$fd_set;Ljtux/UFile$fd_set;Ljtux/UFile$fd_set;Ljtux/UProcess$s_timeval;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_select
(JNIEnv *, jclass, jint, jobject, jobject, jobject, jobject);
/*
* Class: jtux_UFile
* Method: stat
* Signature: (Ljava/lang/String;Ljtux/UFile$s_stat;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_stat
(JNIEnv *, jclass, jstring, jobject);
/*
* Class: jtux_UFile
* Method: statvfs
* Signature: (Ljava/lang/String;Ljtux/UFile$s_statvfs;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_statvfs
(JNIEnv *, jclass, jstring, jobject);
/*
* Class: jtux_UFile
* Method: symlink
* Signature: (Ljava/lang/String;Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_symlink
(JNIEnv *, jclass, jstring, jstring);
/*
* Class: jtux_UFile
* Method: sync
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_sync
(JNIEnv *, jclass);
/*
* Class: jtux_UFile
* Method: truncate
* Signature: (Ljava/lang/String;J)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_truncate
(JNIEnv *, jclass, jstring, jlong);
/*
* Class: jtux_UFile
* Method: unlink
* Signature: (Ljava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_unlink
(JNIEnv *, jclass, jstring);
/*
* Class: jtux_UFile
* Method: utime
* Signature: (Ljava/lang/String;Ljtux/UFile$s_utimbuf;)V
*/
JNIEXPORT void JNICALL Java_jtux_UFile_utime
(JNIEnv *, jclass, jstring, jobject);
/*
* Class: jtux_UFile
* Method: write
* Signature: (I[BI)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_write
(JNIEnv *, jclass, jint, jbyteArray, jint);
/*
* Class: jtux_UFile
* Method: writev
* Signature: (I[Ljtux/UFile$s_iovec;I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UFile_writev
(JNIEnv *, jclass, jint, jobjectArray, jint);
#ifdef __cplusplus
}
#endif
#endif