forked from pelya/commandergenius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exports-eclair.txt
1679 lines (1679 loc) · 19.8 KB
/
exports-eclair.txt
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
abort
accept
access
acct
acos
acosf
acosh
acoshf
__adddf3
__addsf3
adler32
adler32_combine
__aeabi_atexit
__aeabi_cdcmpeq
__aeabi_cdcmple
__aeabi_cdrcmple
__aeabi_cfcmpeq
__aeabi_cfcmple
__aeabi_cfrcmple
__aeabi_d2f
__aeabi_d2iz
__aeabi_d2lz
__aeabi_d2uiz
__aeabi_d2ulz
__aeabi_dadd
__aeabi_dcmpeq
__aeabi_dcmpge
__aeabi_dcmpgt
__aeabi_dcmple
__aeabi_dcmplt
__aeabi_dcmpun
__aeabi_ddiv
__aeabi_dmul
__aeabi_drsub
__aeabi_dsub
__aeabi_f2d
__aeabi_f2iz
__aeabi_f2lz
__aeabi_f2ulz
__aeabi_fadd
__aeabi_fcmpeq
__aeabi_fcmpge
__aeabi_fcmpgt
__aeabi_fcmple
__aeabi_fcmplt
__aeabi_fcmpun
__aeabi_fdiv
__aeabi_fmul
__aeabi_frsub
__aeabi_fsub
__aeabi_i2d
__aeabi_i2f
__aeabi_idiv
__aeabi_idiv0
__aeabi_idivmod
__aeabi_l2d
__aeabi_l2f
__aeabi_ldiv0
__aeabi_ldivmod
__aeabi_lmul
__aeabi_memclr
__aeabi_memclr4
__aeabi_memclr8
__aeabi_memcpy
__aeabi_memcpy4
__aeabi_memcpy8
__aeabi_memmove
__aeabi_memmove4
__aeabi_memmove8
__aeabi_memset
__aeabi_memset4
__aeabi_memset8
__aeabi_ui2d
__aeabi_ui2f
__aeabi_uidiv
__aeabi_uidivmod
__aeabi_ul2d
__aeabi_ul2f
__aeabi_uldivmod
__aeabi_unwind_cpp_pr0
__aeabi_unwind_cpp_pr1
__aeabi_unwind_cpp_pr2
alarm
alphasort
android_closeEventTagMap
android_log_addFilterRule
android_log_addFilterString
__android_log_assert
__android_log_btwrite
__android_log_buf_print
__android_log_buf_write
__android_log_bwrite
__android_log_dev_available
android_log_format_free
android_log_formatFromString
android_log_formatLogLine
android_log_format_new
__android_log_print
android_log_printLogLine
android_log_processBinaryLogBuffer
android_log_processLogBuffer
android_log_setPrintFormat
android_log_shouldPrintLine
__android_log_vprint
__android_log_write
android_lookupEventTag
android_openEventTagMap
__arc4_getbyte
arc4random
arc4random_addrandom
arc4random_buf
arc4random_stir
arc4random_uniform
asctime
asctime64
asctime64_r
asctime_r
asin
asinf
asinh
asinhf
asprintf
__assert
__assert2
atan
atan2
atan2f
atanf
atanh
atanhf
atexit
__atexit
__atexit_invalid
__atexit_register_cleanup
atoi
atol
atoll
__atomic_cmpxchg
__atomic_dec
__atomic_inc
__atomic_swap
__b64_ntop
__b64_pton
basename
basename_r
bcopy
bind
bindresvport
__bionic_brk
__bionic_clone
__bionic_clone_entry
__bionic_libgcc_compat_hooks
brk
__brk
bsd_signal
bsearch
__bss_end__
_bss_end__
__bss_start
__bss_start__
btowc
bzero
cacheflush
calloc
capget
capset
cbrt
cbrtf
_C_ctype_
ceil
ceilf
ceill
chdir
chmod
chown
chroot
_cleanup
clearenv
clearerr
clock
clock_getres
clock_gettime
clock_nanosleep
clock_settime
clone
close
closedir
closelog
closelog_r
__cmpdf2
__cmpsf2
compress
compress2
compressBound
connect
copysign
copysignf
copysignl
copy_tm_to_TM
copy_TM_to_tm
cos
cosf
cosh
coshf
cpuacct_add
crc32
crc32_combine
creat
ctime
ctime64
ctime64_r
ctime_r
_C_tolower_
_C_toupper_
_ctype_
__cxa_atexit
__cxa_finalize
daemon
__data_start
daylight
deflate
deflateBound
deflateCopy
deflate_copyright
deflateEnd
deflateInit_
deflateInit2_
deflateParams
deflatePrime
deflateReset
deflateSetDictionary
deflateSetHeader
deflateTune
delete_module
difftime
dirfd
dirname
dirname_r
_dist_code
div
__div0
__divdf3
__divdi3
__divsf3
__divsi3
dlcalloc
dlfree
dlindependent_calloc
dlindependent_comalloc
dlmallinfo
dlmalloc
dlmalloc_footprint
dlmalloc_max_footprint
dlmalloc_stats
dlmalloc_trim
dlmalloc_usable_size
dlmalloc_walk_free_pages
dlmalloc_walk_heap
dlmallopt
dlmemalign
dlpvalloc
dlrealloc
dlvalloc
__dn_comp
__dn_count_labels
dn_expand
dns_change_prop
_dns_gethtbyaddr
_dns_gethtbyname
__dn_skipname
dns_last_change_counter
_dorand48
__dorand48
drand48
drem
dremf
__dso_handle
__dtoa
dump
dup
dup2
_edata
_end
__end__
_endhtent
endpwent
endservent
endusershell
endutent
environ
epoll_create
epoll_ctl
epoll_wait
__eqdf2
__eqsf2
erand48
erf
erfc
erfcf
erff
err
__errno
errx
__evAddTime
__evCmpTime
__evConsIovec
__evConsTime
__evNowTime
__evOptMonoTime
__evSubTime
__evTimeSpec
__evTimeVal
__evUTCTime
execl
execle
execlp
execv
execve
execvp
__exidx_end
__exidx_start
exit
_exit
_exit_thread
_exit_with_stack_teardown
exp
exp2
exp2f
__exp__D
expf
expm1
expm1f
__extendsfdf2
fabs
fabsf
fabsl
fake_gmtime_r
fake_localtime_r
fchdir
fchmod
fchmodat
fchown
fchownat
fclose
fcntl
__fcntl
__fcntl64
fdim
fdimf
fdiml
fdopen
fdopendir
fdprintf
__fe_dfl_env
feof
ferror
fflush
ffs
fgetc
fgetln
fgetpos
fgets
fgetwc
fgetws
fileno
__findenv
finite
finitef
__fixdfdi
__fixdfsi
__fixsfdi
__fixsfsi
__fixunsdfdi
__fixunsdfsi
__fixunssfdi
__floatdidf
__floatdisf
__floatsidf
__floatsisf
__floatundidf
__floatundisf
__floatunsidf
__floatunsisf
flock
flockfile
floor
floorf
floorl
fma
fmaf
fmax
fmaxf
fmaxl
fmin
fminf
fminl
fmod
fmodf
fnmatch
fopen
fork
__fork
fpathconf
__fpclassifyd
__fpclassifyf
__fpclassifyl
__fp_nquery
__fp_query
fprintf
fpurge
fputc
fputs
fputwc
fputws
fread
free
freeaddrinfo
freedtoa
free_malloc_leak_info
__fremovelock
freopen
frexp
frexpf
fscanf
fseek
fseeko
fsetpos
fstat
fstatat
fstatfs
fsync
ftell
ftello
ftime
ftok
ftruncate
ftrylockfile
fts_children
fts_close
fts_open
fts_read
fts_set
funlockfile
funopen
futex
__futex_syscall3
__futex_syscall4
__futex_wait
__futex_wake
_fwalk
fwide
fwprintf
fwrite
fwscanf
gai_strerror
gAllocationsMutex
gamma
gammaf
gammaf_r
gamma_r
__gedf2
__gesf2
getaddrinfo
getc
getchar
getchar_unlocked
get_crc_table
getc_unlocked
getcwd
__getcwd
getdents
getdtablesize
getegid
getenv
geteuid
getgid
getgrgid
getgrnam
getgrouplist
getgroups
__get_h_errno
gethostbyaddr
gethostbyname
gethostbyname2
gethostbyname_r
gethostent
gethostname
_gethtbyaddr
_gethtbyname
_gethtbyname2
_gethtent
getitimer
getlogin
_getlong
get_malloc_leak_info
getmntent
getnameinfo
getnetbyaddr
getnetbyname
getopt
getopt_long
getopt_long_only
__get_pc
getpeername
getpgid
getpgrp
getpid
getppid
getpriority
__getpriority
getprotobyname
getprotobynumber
getpt
getpwnam
getpwuid
__get_res_cache
getresgid
getresuid
getrlimit
getrusage
gets
getservbyname
getservbyport
getservent
getservent_r
_getshort
getsockname
getsockopt
__get_sp
__get_stack_base
__get_thread
gettid
gettimeofday
getuid
getusershell
getutent
getwc
getwchar
gHashTable
gMallocLeakZygoteChild
gmtime
gmtime64
gmtime64_r
gmtime_r
__gnu_ldivmod_helper
__gnu_uldivmod_helper
__gnu_Unwind_Backtrace
__gnu_unwind_execute
__gnu_Unwind_Find_exidx
__gnu_Unwind_ForcedUnwind
__gnu_unwind_frame
__gnu_Unwind_RaiseException
__gnu_Unwind_Restore_VFP
__gnu_Unwind_Restore_VFP_D
__gnu_Unwind_Restore_VFP_D_16_to_31
__gnu_Unwind_Restore_WMMXC
__gnu_Unwind_Restore_WMMXD
__gnu_Unwind_Resume
__gnu_Unwind_Resume_or_Rethrow
__gnu_Unwind_Save_VFP
__gnu_Unwind_Save_VFP_D
__gnu_Unwind_Save_VFP_D_16_to_31
__gnu_Unwind_Save_WMMXC
__gnu_Unwind_Save_WMMXD
__gtdf2
__gtsf2
gzclearerr
gzclose
gzdirect
gzdopen
gzeof
gzerror
gzflush
gzgetc
gzgets
gzopen
gzprintf
gzputc
gzputs
gzread
gzrewind
gzseek
gzsetparams
gztell
gzungetc
gzwrite
h_errlist
herror
h_nerr
__hostalias
hstrerror
hypot
hypotf
__ieee754_rem_pio2
__ieee754_rem_pio2f
if_indextoname
if_nametoindex
ilogb
ilogbf
ilogbl
index
inet_addr
inet_aton
inet_nsap_addr
inet_nsap_ntoa
inet_ntoa
inet_ntop
inet_pton
inflate
inflateBack
inflateBackEnd
inflateBackInit_
inflateCopy
inflate_copyright
inflateEnd
inflate_fast
inflateGetHeader
inflateInit_
inflateInit2_
inflatePrime
inflateReset
inflateSetDictionary
inflateSync
inflateSyncPoint
inflate_table
initgroups
init_module
_init_thread
__init_tls
inotify_add_watch
inotify_init
inotify_rm_watch
ioctl
__ioctl
ioprio_get
ioprio_set
isalnum
isalpha
isascii
isatty
isblank
iscntrl
isdigit
__isfinite
__isfinitef
__isfinitel
isgraph
__isinf
__isinff
__isinfl
islower
isnan
isnanf
__isnanl
__isnormal
__isnormalf
__isnormall
isprint
ispunct
issetugid
isspace
__isthreaded
isupper
iswalnum
iswalpha
iswcntrl
iswctype
iswdigit
iswgraph
iswlower
iswprint
iswpunct
iswspace
iswupper
iswxdigit
isxdigit
j0
j0f
j1
j1f
jn
jnf
jrand48
__kernel_cos
__kernel_cosdf
__kernel_rem_pio2
__kernel_sin
__kernel_sindf
__kernel_tan
__kernel_tandf
kill
killpg
klogctl
lchown
ldexp
ldexpf
ldexpl
ldiv
__ledf2
_length_code
__lesf2
lgamma
lgammaf
lgammaf_r
lgamma_r
__libc_android_abort
__libc_android_log_assert
__libc_android_log_print
__libc_android_log_vprint
__libc_init
__libc_init_common
__libc_malloc_default_dispatch
__libc_malloc_dispatch
__libc_prenit
link
listen
lldiv
llrint
llrintf
llround
llroundf
llroundl
__llseek
load_domain_search_list
localtime
localtime64
localtime64_r
localtime_r
__loc_aton
__loc_ntoa
log
log10
log10f
log1p
log1pf
logb
logbf
__log__D
logf
logprint_run_tests
longjmp
_longjmp
longjmperror
lrand48
lrint
lrintf
lround
lroundf
lroundl
lseek
lseek64
lstat
__ltdf2
__ltsf2
madvise
mallinfo
malloc
malloc_debug_init
mbrlen
mbrtowc
mbsinit
mbsrtowcs
mbstowcs
MD5_Final
MD5_Init
MD5_Update
memalign
memccpy
memchr
memcmp
__memcmp16
memcpy
memmem
memmove
memrchr
memset
memswap
mincore
mkdir
mkdirat
mkdtemp
mknod
mkstemp
mkstemps
mktemp
_mktemp
mktime
mktime64
mlock
mmap
__mmap2
modf
modff
mount
mprotect
mrand48
mremap
msync
__muldf3
__muldi3
__mulsf3
munlock
munmap
nanosleep
nearbyint
nearbyintf
__nedf2
__nesf2
nextafter
nextafterf
nexttowardf
nice
nrand48
_nres
nsdispatch
_ns_flagdata
__ns_format_ttl
__ns_get16
__ns_get32
__ns_initparse
__ns_makecanon
__ns_msg_getflag
__ns_name_compress
__ns_name_ntol
__ns_name_ntop
__ns_name_pack
__ns_name_pton
__ns_name_rollback
__ns_name_skip
__ns_name_uncompress
__ns_name_unpack
__ns_parserr
__ns_put16
__ns_put32
__ns_samename
__ns_skiprr
__ns_sprintrr
__ns_sprintrrf
open
__open
openat
__openat
opendir
openlog
openlog_r
optarg
opterr
optind
optopt
optreset
__page_shift
__page_size
pathconf
pause
__p_cdname
__p_cdnname
__p_cert_syms
__p_class
__p_class_syms
pclose
__p_default_section_syms
perror
__p_fqname
__p_fqnname
pipe
__p_key_syms
poll
popen
__p_option
pow
powf
__p_query
__p_rcode
__p_rcode_syms
prctl
pread
__pread64
printf
__progname
__p_secstodate
__p_section
pselect
__p_sockun
pthread_attr_destroy
pthread_attr_getdetachstate
pthread_attr_getguardsize
pthread_attr_getschedparam
pthread_attr_getschedpolicy
pthread_attr_getscope
pthread_attr_getstack
pthread_attr_getstackaddr
pthread_attr_getstacksize
pthread_attr_init
pthread_attr_setdetachstate
pthread_attr_setguardsize
pthread_attr_setschedparam
pthread_attr_setschedpolicy
pthread_attr_setscope
pthread_attr_setstack
pthread_attr_setstackaddr
pthread_attr_setstacksize
__pthread_cleanup_pop
__pthread_cleanup_push
__pthread_clone
pthread_condattr_destroy
pthread_condattr_getpshared
pthread_condattr_init
pthread_condattr_setpshared
pthread_cond_broadcast
pthread_cond_destroy
pthread_cond_init
pthread_cond_signal
__pthread_cond_timedwait
pthread_cond_timedwait
pthread_cond_timedwait_monotonic
pthread_cond_timedwait_monotonic_np
__pthread_cond_timedwait_relative
pthread_cond_timedwait_relative_np
pthread_cond_timeout_np
pthread_cond_wait
pthread_create
pthread_detach
pthread_equal
pthread_exit
pthread_getattr_np
pthread_getcpuclockid
pthread_getschedparam
pthread_getspecific
pthread_join
pthread_key_create
pthread_key_delete
pthread_kill
pthread_mutexattr_destroy
pthread_mutexattr_getpshared
pthread_mutexattr_gettype
pthread_mutexattr_init
pthread_mutexattr_setpshared
pthread_mutexattr_settype
pthread_mutex_destroy
pthread_mutex_init
pthread_mutex_lock
pthread_mutex_lock_timeout_np
pthread_mutex_trylock
pthread_mutex_unlock
pthread_once
pthread_self
pthread_setschedparam
pthread_setspecific
pthread_sigmask
__p_time
ptrace
__ptrace
ptsname
ptsname_r
__p_type
__p_type_syms
__p_update_section_syms
putc
putchar
putchar_unlocked
putc_unlocked
putenv
__putlong
puts
__putshort
pututline
putw
putwc
putwchar
pwrite
__pwrite64
qsort
raise
__rand48_add
_rand48_add
__rand48_mult
_rand48_mult
__rand48_seed
_rand48_seed
read
readdir
readdir_r
readlink
readv
realloc
realpath
reboot
__reboot
recv
recvfrom
recvmsg
regcomp
regerror
regexec
regfree
remainder
remainderf
remove
remquo
remquof