1 Star 0 Fork 537

zzulilyw/third_party_musl_4

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
libc.map.txt 33.32 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
{
global:
___environ;
__adjtime64;
__adjtimex_time64;
__aeabi_atexit;
__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_read_tp;
__aio_suspend_time64;
__assert_fail;
__cfi_fail_report;
__clock_adjtime64;
__clock_getres_time64;
__clock_gettime64;
__clock_nanosleep_time64;
__clock_settime64;
__cnd_timedwait_time64;
__ctime64;
__ctime64_r;
__ctype_b_loc;
__ctype_get_mb_cur_max;
__ctype_tolower_loc;
__ctype_toupper_loc;
__cxa_atexit;
__cxa_finalize;
__cxa_thread_atexit_impl;
__daylight;
__difftime64;
__dls2b;
__dls3;
__dlsym_time64;
__duplocale;
__environ;
__errno_location;
__fbufsize;
__fd_chk;
__fgets_chk;
__fgetwc_unlocked;
__flbf;
__flt_rounds;
__fortify_error;
__fpclassify;
__fpclassifyf;
__fpclassifyl;
__fpending;
__fpurge;
__fputwc_unlocked;
__fread_chk;
__freadable;
__freadahead;
__freading;
__freadptr;
__freadptrinc;
__freelocale;
__fseterr;
__fsetlocking;
__fstat_time64;
__fstatat_time64;
__ftime64;
__futimens_time64;
__futimes_time64;
__futimesat_time64;
__fwritable;
__fwrite_chk;
__fwriting;
__fxstat;
__fxstat64;
__fxstatat;
__fxstatat64;
__getcwd_chk;
__getdelim;
# __getgmtoff;
__getitimer_time64;
__getrusage_time64;
__gettimeofday_time64;
# __getzonename;
__gmtime64;
__gmtime64_r;
__gnu_Unwind_Find_exidx;
__h_errno_location;
__hook_enable_hook_flag;
__isalnum_l;
__isalpha_l;
__isblank_l;
__iscntrl_l;
__isdigit_l;
__isgraph_l;
__islower_l;
__isoc99_fscanf;
__isoc99_fwscanf;
__isoc99_scanf;
__isoc99_sscanf;
__isoc99_swscanf;
__isoc99_vfscanf;
__isoc99_vfwscanf;
__isoc99_vscanf;
__isoc99_vsscanf;
__isoc99_vswscanf;
__isoc99_vwscanf;
__isoc99_wscanf;
__isprint_l;
__ispunct_l;
__isspace_l;
__isupper_l;
__iswalnum_l;
__iswalpha_l;
__iswblank_l;
__iswcntrl_l;
__iswctype_l;
__iswdigit_l;
__iswgraph_l;
__iswlower_l;
__iswprint_l;
__iswpunct_l;
__iswspace_l;
__iswupper_l;
__iswxdigit_l;
__isxdigit_l;
__lgammal_r;
libc_gwp_asan_unwind_fast;
libc_gwp_asan_has_free_mem;
libc_gwp_asan_ptr_is_mine;
may_init_gwp_asan;
get_platform_gwp_asan_tls_slot;
__libc_current_sigrtmax;
__libc_current_sigrtmin;
__libc_free;
__libc_malloc;
__libc_malloc_default_dispatch;
# __libc_mmap;
# __libc_munmap;
__libc_start_main;
__lldb_mmap;
__localtime64;
__localtime64_r;
__lstat_time64;
__lutimes_time64;
__lxstat;
__lxstat64;
__memchr_chk;
__memcpy_chk;
# __memmove_aarch64;
__memmove_chk;
__mempcpy_chk;
__memrchr_chk;
__memset_chk;
__mktime64;
# __mq_timedreceive_time64;
# __mq_timedsend_time64;
__mtx_timedlock_time64;
__musl_libc_globals;
__nanosleep_time64;
__newlocale;
__nl_langinfo;
__nl_langinfo_l;
__open_chk;
__open64_chk;
__openat_chk;
__openat64_chk;
# __optpos;
__optreset;
__overflow;
__poll_chk;
__posix_getopt;
__ppoll_chk;
__ppoll_time64;
__pread_chk;
__progname;
__progname_full;
__pselect_time64;
__pthread_cond_timedwait_time64;
__pthread_gettid_np;
__pthread_mutex_timedlock_time64;
# __pthread_release_signal_stack;
# __pthread_reserve_signal_stack;
__pthread_rwlock_timedrdlock_time64;
__pthread_rwlock_timedwrlock_time64;
# __pthread_timedjoin_np_time64;
__pwrite_chk;
__read_chk;
__readlink_chk;
__readlinkat_chk;
# __reboot;
__recv_chk;
__recvfrom_chk;
__recvmmsg_time64;
# __res_state;
__sched_cpualloc;
__sched_cpucount;
__sched_rr_get_interval_time64;
__select_time64;
__sem_timedwait_time64;
__semtimedop_time64;
__send_chk;
__sendto_chk;
__setitimer_time64;
__setjmp;
__settimeofday_time64;
__signbit;
__signbitf;
__signbitl;
__signgam;
__sigsetjmp;
__sigtimedwait_time64;
__snprintf_chk;
__sprintf_chk;
__stack_chk_fail;
__stack_chk_guard;
__stat_time64;
__stime64;
__stpcpy_chk;
__stpncpy_chk;
__strcasecmp_l;
__strcat_chk;
__strchr_chk;
__strcoll_l;
__strcpy_chk;
__strerror_l;
__strlcat_chk;
__strlcpy_chk;
__strlen_chk;
__strncasecmp_l;
__strncat_chk;
__strncpy_chk;
__strrchr_chk;
__strtod_l;
__strtof_l;
__strtoimax_internal;
__strtol_internal;
__strtold_l;
__strtoll_internal;
__strtoul_internal;
__strtoull_internal;
__strtoumax_internal;
__strxfrm_l;
__sysv_signal;
__thrd_sleep_time64;
__time64;
__timegm_time64;
__timer_gettime64;
__timer_settime64;
__timerfd_gettime64;
__timerfd_settime64;
__timespec_get_time64;
__timezone;
__tls_get_addr;
__tolower_l;
__toupper_l;
__towctrans_l;
__towlower_l;
__towupper_l;
__tzname;
__uflow;
__umask_chk;
__uselocale;
__utime64;
__utimensat_time64;
__utimes_time64;
__vsnprintf_chk;
__vsprintf_chk;
__wait3_time64;
__wait4_time64;
__wcscoll_l;
__wcsftime_l;
__wcsxfrm_l;
__wctrans_l;
__wctype_l;
__write_chk;
__xmknod;
__xmknodat;
__xpg_basename;
__xpg_strerror_r;
__xstat;
__xstat64;
_dl_debug_addr;
_dl_debug_state;
_dlstart;
_environ;
_Exit;
_exit;
_fini;
_flushlbf;
_init;
_IO_feof_unlocked;
_IO_ferror_unlocked;
_IO_getc;
_IO_getc_unlocked;
_IO_putc;
_IO_putc_unlocked;
_longjmp;
_ns_flagdata;
_pthread_cleanup_pop;
_pthread_cleanup_push;
_setjmp;
a64l;
abort;
abs;
accept;
accept4;
access;
acct;
acos;
acosf;
acosh;
acoshf;
acoshl;
acosl;
addmntent;
add_special_handler_at_last;
add_special_signal_handler;
adjtime;
adjtimex;
# aio_cancel;
# aio_cancel64;
# aio_error;
# aio_error64;
# aio_fsync;
# aio_fsync64;
# aio_read;
# aio_read64;
# aio_return;
# aio_return64;
# aio_suspend;
# aio_suspend64;
# aio_write;
# aio_write64;
alarm;
aligned_alloc;
alphasort;
alphasort64;
arc4random;
arc4random_buf;
arc4random_uniform;
asctime;
asctime_r;
asin;
asinf;
asinh;
asinhf;
asinhl;
asinl;
asprintf;
at_quick_exit;
atan;
atan2;
atan2f;
atan2l;
atanf;
atanh;
atanhf;
atanhl;
atanl;
atexit;
atof;
atoi;
atol;
atoll;
backtrace;
backtrace_symbols;
backtrace_symbols_fd;
backtrace_symbols_fmt;
backtrace_symbols_fd_fmt;
basename;
bcmp;
bcopy;
bind;
bind_textdomain_codeset;
bindtextdomain;
brk;
bsd_signal;
bsearch;
btowc;
bzero;
c16rtomb;
c32rtomb;
cabs;
cabsf;
cabsl;
cacos;
cacosf;
cacosh;
cacoshf;
cacoshl;
cacosl;
call_once;
calloc;
capget;
capset;
carg;
cargf;
cargl;
casin;
casinf;
casinh;
casinhf;
casinhl;
casinl;
catan;
catanf;
catanh;
catanhf;
catanhl;
catanl;
catclose;
catgets;
catopen;
cbrt;
cbrtf;
cbrtl;
ccos;
ccosf;
ccosh;
ccoshf;
ccoshl;
ccosl;
ceil;
ceilf;
ceill;
cexp;
cexpf;
cexpl;
cfgetispeed;
cfgetospeed;
cfmakeraw;
cfsetispeed;
cfsetospeed;
cfsetspeed;
chdir;
# check_asan_path;
chmod;
chown;
chroot;
cimag;
cimagf;
cimagl;
clearenv;
clearerr;
clearerr_unlocked;
clock;
clock_adjtime;
clock_getcpuclockid;
clock_getres;
clock_gettime;
clock_nanosleep;
clock_settime;
clog;
clogf;
clogl;
clone;
close;
closedir;
closelog;
cnd_broadcast;
cnd_destroy;
cnd_init;
cnd_signal;
cnd_timedwait;
cnd_wait;
# configor_free;
# configor_init;
confstr;
conj;
conjf;
conjl;
connect;
copy_file_range;
copysign;
copysignf;
copysignl;
cos;
cosf;
cosh;
coshf;
coshl;
cosl;
cpow;
cpowf;
cpowl;
cproj;
cprojf;
cprojl;
creal;
crealf;
creall;
creat;
creat64;
crypt;
# crypt_r;
csin;
csinf;
csinh;
csinhf;
csinhl;
csinl;
csqrt;
csqrtf;
csqrtl;
ctan;
ctanf;
ctanh;
ctanhf;
ctanhl;
ctanl;
ctermid;
ctime;
ctime_r;
cuserid;
daemon;
daylight;
dcgettext;
dcngettext;
delete_module;
DestroyParamList;
DFX_InstallSignalHandler;
DfxLog;
dgettext;
difftime;
dirfd;
dirname;
div;
dl_iterate_phdr;
dladdr;
dlclose;
dlerror;
dlinfo;
dlns_create;
dlns_create2;
dlns_get;
dlns_inherit;
dlns_init;
dlns_set_namespace_allowed_libs;
# dlns_set_namespace_lib_path;
dlns_set_namespace_permitted_paths;
dlns_set_namespace_separated;
dlopen;
# Sanitizer requires this symbol to be exposed.
dlopen_impl;
dlopen_ext;
dlopen_ns;
dlsym;
dlvsym;
dn_comp;
dn_expand;
dn_skipname;
dngettext;
dns_get_addr_info_from_netsys_cache;
# dns_set_addr_info_to_netsys_cache;
dprintf;
drand48;
drem;
dremf;
dup;
dup2;
dup3;
duplocale;
eaccess;
ecvt;
# encode_ptr;
# encrypt;
endgrent;
endhostent;
endmntent;
endnetent;
endprotoent;
endpwent;
endservent;
endspent;
endusershell;
endutent;
endutxent;
environ;
epoll_create;
epoll_create1;
epoll_ctl;
epoll_pwait;
epoll_wait;
erand48;
erf;
erfc;
erfcf;
erfcl;
erff;
erfl;
err;
errx;
ether_aton;
ether_aton_r;
ether_hostton;
ether_line;
ether_ntoa;
ether_ntoa_r;
ether_ntohost;
euidaccess;
eventfd;
eventfd_read;
eventfd_write;
execl;
execle;
execlp;
execv;
execve;
execvp;
execvpe;
exit;
exp;
exp10;
exp10f;
exp10l;
exp2;
exp2f;
exp2l;
expf;
expl;
explicit_bzero;
expm1;
expm1f;
expm1l;
fabs;
fabsf;
fabsl;
faccessat;
fallocate;
fallocate64;
fanotify_init;
fanotify_mark;
fchdir;
fchmod;
fchmodat;
fchown;
fchownat;
fclose;
fcntl;
fcvt;
fdatasync;
fdim;
fdimf;
fdiml;
fdopen;
fdopendir;
fdsan_create_owner_tag;
fdsan_close_with_tag;
fdsan_exchange_owner_tag;
fdsan_get_error_level;
fdsan_get_fd_table;
fdsan_get_owner_tag;
fdsan_get_tag_type;
fdsan_get_tag_value;
fdsan_set_error_level;
feclearexcept;
fegetenv;
fegetexceptflag;
fegetround;
feholdexcept;
feof;
feof_unlocked;
feraiseexcept;
ferror;
ferror_unlocked;
fesetenv;
fesetexceptflag;
fesetround;
fetestexcept;
feupdateenv;
fexecve;
fflush;
fflush_unlocked;
ffs;
ffsl;
ffsll;
fgetc;
fgetc_unlocked;
fgetgrent;
fgetln;
fgetpos;
fgetpos64;
fgetpwent;
fgets;
fgets_unlocked;
fgetspent;
fgetwc;
fgetwc_unlocked;
fgetws;
fgetws_unlocked;
fgetxattr;
fileno;
fileno_unlocked;
# find_ns_by_name;
finish_install_ohos_malloc_hooks;
finite;
finitef;
flistxattr;
flock;
flockfile;
floor;
floorf;
floorl;
fma;
fmaf;
fmal;
fmax;
fmaxf;
fmaxl;
fmemopen;
fmin;
fminf;
fminl;
fmod;
fmodf;
fmodl;
fmtmsg;
fnmatch;
fopen;
fopen64;
fopencookie;
fork;
forkpty;
fpathconf;
fprintf;
fpurge;
fputc;
fputc_unlocked;
fputs;
fputs_unlocked;
fputwc;
fputwc_unlocked;
fputws;
fputws_unlocked;
fread;
fread_unlocked;
free;
freeaddrinfo;
freeifaddrs;
freelocale;
fremovexattr;
freopen;
freopen64;
frexp;
frexpf;
frexpl;
fscanf;
fseek;
fseeko;
fseeko64;
fsetpos;
fsetpos64;
fsetxattr;
fstat;
fstat64;
fstatat;
fstatat64;
fstatfs;
fstatfs64;
fstatvfs;
fstatvfs64;
fsync;
ftell;
ftello;
ftello64;
ftime;
ftok;
ftruncate;
ftruncate64;
ftrylockfile;
ftw;
ftw64;
function_of_shared_lib;
funlockfile;
futimens;
futimes;
futimesat;
fwide;
fwprintf;
fwrite;
fwrite_unlocked;
fwscanf;
gai_strerror;
gcvt;
get_application_target_sdk_version;
get_avphys_pages;
get_current_dir_name;
# get_default_ns;
get_device_api_version;
get_fatal_message;
get_nprocs;
get_nprocs_conf;
get_phys_pages;
getaddrinfo;
getaddrinfo_ext;
getaddrinfo_hook;
getauxval;
getc;
getc_unlocked;
getchar;
getchar_unlocked;
getcwd;
getdate;
getdate_err;
getdelim;
getdents;
getdents64;
getdomainname;
getdtablesize;
getegid;
getentropy;
getenv;
geteuid;
getgid;
getgrent;
getgrgid;
getgrgid_r;
getgrnam;
getgrnam_r;
getgrouplist;
getgroups;
gethostbyaddr;
gethostbyaddr_r;
gethostbyname;
gethostbyname_r;
gethostbyname2;
gethostbyname2_r;
gethostent;
gethostid;
gethostname;
getifaddrs;
getitimer;
GetLastFatalMessage;
getline;
getloadavg;
getlogin;
getlogin_r;
getmntent;
getmntent_r;
getnameinfo;
getnetbyaddr;
getnetbyname;
getnetent;
getopt;
getopt_long;
getopt_long_only;
getpagesize;
GetParamLabel;
GetParamList;
GetParamWorkSpace;
getpass;
getpeername;
getpgid;
getpgrp;
getpid;
getppid;
getprocpid;
getproctid;
getpriority;
GetProcessName;
GetProcStatus;
getprotobyname;
getprotobynumber;
getprotoent;
getpwent;
getpwnam;
getpwnam_r;
getpwuid;
getpwuid_r;
getrandom;
getresgid;
getresuid;
getrlimit;
getrlimit64;
getrusage;
gets;
getservbyname;
getservbyname_r;
getservbyport;
getservbyport_r;
getservent;
getsid;
getsockname;
getsockopt;
getspent;
getspnam;
# getspnam_r;
getsubopt;
gettext;
GetThreadName;
gettid;
GetTimeMilliseconds;
gettimeofday;
getuid;
getusershell;
getutent;
getutid;
getutline;
getutxent;
getutxid;
getutxline;
getw;
getwc;
getwc_unlocked;
getwchar;
getwchar_unlocked;
getxattr;
glob;
glob64;
globfree;
globfree64;
gmtime;
gmtime_r;
grantpt;
h_errno;
# handle_asan_path_open;
HashMapAdd;
HashMapCreate;
HashMapDestroy;
HashMapFind;
HashMapGet;
HashMapRemove;
hasmntopt;
hcreate;
hcreate_r;
hdestroy;
hdestroy_r;
herror;
HiTraceGetId;
hsearch;
hsearch_r;
hstrerror;
htonl;
htons;
hypot;
hypotf;
hypotl;
iconv;
iconv_close;
iconv_open;
if_freenameindex;
if_indextoname;
if_nameindex;
if_nametoindex;
ilogb;
ilogbf;
ilogbl;
imaxabs;
imaxdiv;
in6addr_any;
in6addr_loopback;
index;
inet_addr;
inet_aton;
inet_lnaof;
inet_makeaddr;
inet_netof;
inet_network;
inet_ntoa;
inet_ntop;
inet_pton;
init_malloc_hook_shared_library;
init_module;
initgroups;
InitParamSelinux;
InitParamWorkSpace;
initstate;
inotify_add_watch;
inotify_init;
inotify_init1;
inotify_rm_watch;
insque;
# INVALID_SOCKET;
ioctl;
# is_accessible;
is_allow_internet;
# is_sharable;
isalnum;
isalnum_l;
isalpha;
isalpha_l;
isascii;
isastream;
isatty;
isblank;
isblank_l;
iscntrl;
iscntrl_l;
isdigit;
isdigit_l;
isgraph;
isgraph_l;
islower;
islower_l;
isprint;
isprint_l;
ispunct;
ispunct_l;
issetugid;
isspace;
isspace_l;
isupper;
isupper_l;
iswalnum;
iswalnum_l;
iswalpha;
iswalpha_l;
iswblank;
iswblank_l;
iswcntrl;
iswcntrl_l;
iswctype;
iswctype_l;
iswdigit;
iswdigit_l;
iswgraph;
iswgraph_l;
iswlower;
iswlower_l;
iswprint;
iswprint_l;
iswpunct;
iswpunct_l;
iswspace;
iswspace_l;
iswupper;
iswupper_l;
iswxdigit;
iswxdigit_l;
isxdigit;
isxdigit_l;
j0;
j0f;
j1;
j1f;
jn;
jnf;
jrand48;
kill;
killpg;
klogctl;
l64a;
labs;
lchmod;
lchown;
lckpwdf;
lcong48;
ldexp;
ldexpf;
ldexpl;
ldiv;
lfind;
lgamma;
lgamma_r;
lgammaf;
lgammaf_r;
lgammal;
lgammal_r;
lgetxattr;
link;
linkat;
# lio_listio;
# lio_listio64;
listen;
listxattr;
llabs;
lldiv;
llistxattr;
llrint;
llrintf;
llrintl;
llround;
llroundf;
llroundl;
load_malloc_hook_shared_library;
LoadParameterContextsToSharedMem;
localeconv;
localtime;
localtime_r;
lockf;
lockf64;
log;
log_print;
log10;
log10f;
log10l;
log1p;
log1pf;
log1pl;
log2;
log2f;
log2l;
logb;
logbf;
logbl;
logf;
login_tty;
logl;
longjmp;
lrand48;
lremovexattr;
lrint;
lrintf;
lrintl;
lround;
lroundf;
lroundl;
lsearch;
lseek;
lseek64;
lsetxattr;
lstat;
lstat64;
lutimes;
madvise;
mallinfo;
mallinfo2;
malloc;
malloc_usable_size;
mblen;
mbrlen;
mbrtoc16;
mbrtoc32;
mbrtowc;
mbsinit;
mbsnrtowcs;
mbsrtowcs;
mbstowcs;
mbtowc;
memalign;
membarrier;
memccpy;
memchr;
memcmp;
memcpy;
memfd_create;
memmem;
memmove;
mempcpy;
memrchr;
memset;
memtrace;
mincore;
mkdir;
mkdirat;
mkdtemp;
mkfifo;
mkfifoat;
mknod;
mknodat;
mkostemp;
mkostemp64;
mkostemps;
mkostemps64;
mkstemp;
mkstemp64;
mkstemps;
mkstemps64;
mktemp;
mktime;
mlock;
mlock2;
mlockall;
mmap;
mmap64;
modf;
modff;
modfl;
mount;
mprotect;
# mq_close;
# mq_getattr;
# mq_notify;
# mq_open;
# mq_receive;
# mq_send;
# mq_setattr;
# mq_timedreceive;
# mq_timedsend;
# mq_unlink;
mrand48;
mremap;
msgctl;
msgget;
msgrcv;
msgsnd;
msync;
mtx_destroy;
mtx_init;
mtx_lock;
mtx_timedlock;
mtx_trylock;
mtx_unlock;
munlock;
munlockall;
munmap;
musl_log;
ohos_dfx_log;
name_to_handle_at;
nan;
nanf;
nanl;
nanosleep;
nearbyint;
nearbyintf;
nearbyintl;
newlocale;
# next_key;
nextafter;
nextafterf;
nextafterl;
nexttoward;
nexttowardf;
nexttowardl;
nftw;
nftw64;
ngettext;
nice;
nl_langinfo;
nl_langinfo_l;
nrand48;
# ns_add_dso;
ns_add_inherit;
# ns_alloc;
# ns_free;
ns_get16;
ns_get32;
ns_initparse;
ns_name_uncompress;
ns_parserr;
ns_put16;
ns_put32;
# ns_set_allowed_libs;
# ns_set_asan_lib_paths;
# ns_set_asan_permitted_paths;
# ns_set_env_paths;
# ns_set_lib_paths;
# ns_set_name;
# ns_set_permitted_paths;
# ns_set_separated;
ns_skiprr;
# nslist_add_ns;
# nslist_init;
ntohl;
ntohs;
OH_HashMapAdd;
OH_HashMapCreate;
OH_HashMapDestory;
OH_HashMapFind;
OH_HashMapGet;
OH_HashMapIsEmpty;
OH_HashMapRemove;
OH_HashMapTraverse;
OH_ListAddTail;
OH_ListAddWithOrder;
OH_ListFind;
OH_ListGetCnt;
OH_ListInit;
OH_ListRemove;
OH_ListRemoveAll;
OH_ListTraversal;
ohos_malloc_hook_init_function;
ohos_malloc_hook_shared_library;
open;
open_by_handle_at;
open_memstream;
open_wmemstream;
open64;
openat;
openat64;
opendir;
openlog;
openpty;
optarg;
opterr;
optind;
optopt;
optreset;
pathconf;
pause;
pclose;
perror;
personality;
pipe;
pipe2;
pivot_root;
poll;
popen;
posix_close;
posix_fadvise;
posix_fadvise64;
posix_fallocate;
posix_fallocate64;
posix_madvise;
posix_memalign;
posix_openpt;
posix_spawn;
posix_spawn_file_actions_addchdir_np;
posix_spawn_file_actions_addclose;
posix_spawn_file_actions_adddup2;
posix_spawn_file_actions_addfchdir_np;
posix_spawn_file_actions_addopen;
posix_spawn_file_actions_destroy;
posix_spawn_file_actions_init;
posix_spawnattr_destroy;
posix_spawnattr_getflags;
posix_spawnattr_getpgroup;
posix_spawnattr_getschedparam;
posix_spawnattr_getschedpolicy;
posix_spawnattr_getsigdefault;
posix_spawnattr_getsigmask;
posix_spawnattr_init;
posix_spawnattr_setflags;
posix_spawnattr_setpgroup;
posix_spawnattr_setschedparam;
posix_spawnattr_setschedpolicy;
posix_spawnattr_setsigdefault;
posix_spawnattr_setsigmask;
posix_spawnp;
pow;
pow10;
pow10f;
pow10l;
powf;
powl;
ppoll;
prctl;
pread;
pread64;
preadv;
preadv2;
preadv64;
predefined_host_clear_all_hosts;
predefined_host_remove_host;
predefined_host_set_host;
predefined_host_set_hosts;
printf;
prlimit;
prlimit64;
process_vm_readv;
process_vm_writev;
program_invocation_name;
program_invocation_short_name;
pselect;
psiginfo;
psignal;
pthread_atfork;
pthread_attr_destroy;
pthread_attr_getdetachstate;
pthread_attr_getguardsize;
pthread_attr_getinheritsched;
pthread_attr_getschedparam;
pthread_attr_getschedpolicy;
pthread_attr_getscope;
pthread_attr_getstack;
pthread_attr_getstacksize;
pthread_attr_init;
pthread_attr_setdetachstate;
pthread_attr_setguardsize;
pthread_attr_setinheritsched;
pthread_attr_setschedparam;
pthread_attr_setschedpolicy;
pthread_attr_setscope;
pthread_attr_setstack;
pthread_attr_setstacksize;
pthread_barrier_destroy;
pthread_barrier_init;
pthread_barrier_wait;
pthread_barrierattr_destroy;
pthread_barrierattr_getpshared;
pthread_barrierattr_init;
pthread_barrierattr_setpshared;
# pthread_cancel;
pthread_cond_broadcast;
pthread_cond_clockwait;
pthread_cond_destroy;
pthread_cond_init;
pthread_cond_signal;
pthread_cond_timedwait;
pthread_cond_timedwait_monotonic_np;
pthread_cond_timeout_np;
pthread_cond_wait;
pthread_condattr_destroy;
pthread_condattr_getclock;
pthread_condattr_getpshared;
pthread_condattr_init;
pthread_condattr_setclock;
pthread_condattr_setpshared;
pthread_create;
pthread_detach;
pthread_equal;
pthread_exit;
pthread_getaffinity_np;
pthread_getattr_default_np;
pthread_getattr_np;
pthread_getconcurrency;
pthread_getcpuclockid;
pthread_getname_np;
pthread_getschedparam;
pthread_getspecific;
pthread_gettid_np;
pthread_join;
pthread_key_create;
pthread_key_delete;
pthread_kill;
pthread_tsd_run_dtors;
pthread_gettsd;
pthread_settsd;
pthread_mutex_clocklock;
# pthread_mutex_consistent;
pthread_mutex_destroy;
pthread_mutex_getprioceiling;
pthread_mutex_init;
pthread_mutex_lock;
pthread_mutex_lock_timeout_np;
pthread_mutex_setprioceiling;
pthread_mutex_timedlock;
pthread_mutex_timedlock_monotonic_np;
pthread_mutex_trylock;
pthread_mutex_unlock;
pthread_mutexattr_destroy;
pthread_mutexattr_getprotocol;
pthread_mutexattr_getpshared;
# pthread_mutexattr_getrobust;
pthread_mutexattr_gettype;
pthread_mutexattr_init;
pthread_mutexattr_setprotocol;
pthread_mutexattr_setpshared;
# pthread_mutexattr_setrobust;
pthread_mutexattr_settype;
pthread_once;
pthread_rwlock_clockrdlock;
pthread_rwlock_clockwrlock;
pthread_rwlock_destroy;
pthread_rwlock_init;
pthread_rwlock_rdlock;
pthread_rwlock_timedrdlock;
pthread_rwlock_timedrdlock_monotonic_np;
pthread_rwlock_timedwrlock;
pthread_rwlock_timedwrlock_monotonic_np;
pthread_rwlock_tryrdlock;
pthread_rwlock_trywrlock;
pthread_rwlock_unlock;
pthread_rwlock_wrlock;
pthread_rwlockattr_destroy;
pthread_rwlockattr_getpshared;
pthread_rwlockattr_init;
pthread_rwlockattr_setpshared;
pthread_self;
pthread_setaffinity_np;
pthread_setattr_default_np;
pthread_setcancelstate;
# pthread_setcanceltype;
pthread_setconcurrency;
pthread_setname_np;
pthread_setschedparam;
pthread_setschedprio;
pthread_setspecific;
pthread_sigmask;
pthread_spin_destroy;
pthread_spin_init;
pthread_spin_lock;
pthread_spin_trylock;
pthread_spin_unlock;
# pthread_testcancel;
# pthread_timedjoin_np;
# pthread_tryjoin_np;
ptrace;
ptsname;
ptsname_r;
putc;
putc_unlocked;
putchar;
putchar_unlocked;
putenv;
putgrent;
putpwent;
puts;
putspent;
pututline;
pututxline;
putw;
putwc;
putwc_unlocked;
putwchar;
putwchar_unlocked;
pwrite;
pwrite64;
pwritev;
pwritev2;
pwritev64;
qsort;
quick_exit;
quotactl;
raise;
rand;
rand_r;
random;
read;
readahead;
readdir;
readdir_r;
readdir64;
readdir64_r;
readlink;
readlinkat;
ReadParamFromSharedMem;
ReadSharedMem;
ReadStringFromFile;
readv;
realloc;
realpath;
reboot;
recv;
recvfrom;
recvmmsg;
recvmsg;
regcomp;
regerror;
regexec;
regfree;
remainder;
remainderf;
remainderl;
remap_file_pages;
remove;
remove_all_special_handler;
remove_special_signal_handler;
removednsresolvehook;
removexattr;
remque;
remquo;
remquof;
remquol;
rename;
renameat;
renameat2;
res_init;
res_mkquery;
res_query;
res_querydomain;
res_search;
res_send;
rewind;
rewinddir;
rindex;
rint;
rintf;
rintl;
rmdir;
round;
roundf;
roundl;
sbrk;
scalb;
scalbf;
scalbln;
scalblnf;
scalblnl;
scalbn;
scalbnf;
scalbnl;
scandir;
scandir64;
scanf;
sched_get_priority_max;
sched_get_priority_min;
sched_getaffinity;
sched_getcpu;
sched_getparam;
sched_getscheduler;
sched_rr_get_interval;
sched_setaffinity;
sched_setparam;
sched_setscheduler;
sched_yield;
SearchFromParamTrie;
secure_getenv;
seed48;
seekdir;
select;
sem_close;
sem_destroy;
sem_getvalue;
sem_init;
sem_open;
sem_post;
sem_timedwait;
sem_trywait;
sem_unlink;
sem_wait;
semctl;
semget;
semop;
semtimedop;
send;
sendfile;
sendfile64;
sendmmsg;
sendmsg;
sendto;
set_application_target_sdk_version;
set_fatal_message;
set_assert_callback;
setbuf;
setbuffer;
setdnsresolvehook;
setdomainname;
setegid;
setenv;
seteuid;
setfsgid;
setfsuid;
setgid;
setgrent;
setgroups;
sethostent;
sethostname;
setitimer;
setjmp;
# setkey;
setlinebuf;
setlocale;
setlogmask;
setmntent;
setnetent;
setns;
setpgid;
setpgrp;
setpriority;
setprotoent;
setpwent;
setregid;
setresgid;
setresuid;
setreuid;
setrlimit;
setrlimit64;
setservent;
setsid;
setsockopt;
setspent;
setstate;
SetThreadInfoCallback;
SetAsyncStackCallbackFunc;
settimeofday;
setuid;
setusershell;
setutent;
setutxent;
setvbuf;
setxattr;
shm_open;
shm_unlink;
shmat;
shmctl;
shmdt;
shmget;
shutdown;
sigaction;
sigaddset;
sigaltstack;
sigandset;
sigdelset;
sigemptyset;
sigfillset;
sighold;
sigignore;
siginterrupt;
sigisemptyset;
sigismember;
siglongjmp;
signal;
signalfd;
signgam;
significand;
significandf;
sigorset;
sigpause;
sigpending;
sigprocmask;
sigqueue;
sigrelse;
sigset;
sigsetjmp;
sigsuspend;
sigtimedwait;
sigwait;
sigwaitinfo;
sin;
sincos;
sincosf;
sincosl;
sinf;
sinh;
sinhf;
sinhl;
sinl;
sleep;
snprintf;
sockatmark;
socket;
SOCKET_ADDR;
# SOCKET_TYPE;
socketpair;
splice;
sprintf;
sqrt;
sqrtf;
sqrtl;
srand;
srand48;
srandom;
sscanf;
# stack_naming;
stat;
stat64;
statfs;
statfs64;
statvfs;
statvfs64;
statx;
stderr;
stdin;
stdout;
stime;
stpcpy;
stpncpy;
strcasecmp;
strcasecmp_l;
strcasestr;
strcat;
strchr;
strchrnul;
strcmp;
strcoll;
strcoll_l;
strcpy;
strcspn;
strdup;
strerror;
strerror_l;
strerror_r;
strfmon;
strfmon_l;
strftime;
strftime_l;
strlcat;
strlcpy;
strlen;
strncasecmp;
strncasecmp_l;
strncat;
strncmp;
strncpy;
strndup;
strnlen;
strpbrk;
strptime;
strrchr;
strsep;
strsignal;
strspn;
strstr;
strtod;
strtod_l;
strtof;
strtof_l;
strtoimax;
strtok;
strtok_r;
strtol;
strtold;
strtold_l;
strtoll;
strtoul;
strtoull;
strtoumax;
strverscmp;
strxfrm;
strxfrm_l;
swab;
swapoff;
swapon;
swprintf;
swscanf;
symlink;
symlinkat;
sync;
sync_file_range;
syncfs;
syscall;
sysconf;
sysinfo;
syslog;
system;
tan;
tanf;
tanh;
tanhf;
tanhl;
tanl;
tcdrain;
tcflow;
tcflush;
tcgetattr;
tcgetpgrp;
tcgetsid;
tcsendbreak;
tcsetattr;
tcsetpgrp;
tdelete;
tdestroy;
tee;
telldir;
tempnam;
textdomain;
tfind;
tgamma;
tgammaf;
tgammal;
tgkill;
thrd_create;
thrd_current;
thrd_detach;
thrd_equal;
thrd_exit;
thrd_join;
thrd_sleep;
thrd_yield;
time;
timegm;
timer_create;
timer_delete;
timer_getoverrun;
timer_gettime;
timer_settime;
timerfd_create;
timerfd_gettime;
timerfd_settime;
times;
timespec_get;
timezone;
tmpfile;
tmpfile64;
tmpnam;
toascii;
tolower;
tolower_l;
toupper;
toupper_l;
towctrans;
towctrans_l;
towlower;
towlower_l;
towupper;
towupper_l;
# trace_marker_async_begin;
# trace_marker_async_end;
trace_marker_begin;
# trace_marker_count;
# trace_marker_end;
trunc;
truncate;
truncate64;
truncf;
truncl;
tsearch;
tss_create;
tss_delete;
tss_get;
tss_set;
ttyname;
ttyname_r;
twalk;
tzname;
tzset;
ualarm;
ulckpwdf;
ulimit;
umask;
umount;
umount2;
uname;
ungetc;
ungetwc;
unlink;
unlinkat;
unlockpt;
UnmapSharedMem;
unsetenv;
unshare;
updwtmp;
updwtmpx;
uselocale;
usleep;
utime;
utimensat;
utimes;
utmpname;
utmpxname;
valloc;
vasprintf;
vdprintf;
verr;
verrx;
versionsort;
versionsort64;
vfork;
vfprintf;
vfscanf;
vfwprintf;
vfwscanf;
vhangup;
vmsplice;
vprintf;
vscanf;
vsnprintf;
vsprintf;
vsscanf;
vswprintf;
vswscanf;
vsyslog;
vwarn;
vwarnx;
vwprintf;
vwscanf;
wait;
wait3;
wait4;
waitid;
waitpid;
warn;
warnx;
wcpcpy;
wcpncpy;
wcrtomb;
wcscasecmp;
wcscasecmp_l;
wcscat;
wcschr;
wcscmp;
wcscoll;
wcscoll_l;
wcscpy;
wcscspn;
wcsdup;
wcsftime;
wcsftime_l;
wcslen;
wcsncasecmp;
wcsncasecmp_l;
wcsncat;
wcsncmp;
wcsncpy;
wcsnlen;
wcsnrtombs;
wcspbrk;
wcsrchr;
wcsrtombs;
wcsspn;
wcsstr;
wcstod;
wcstod_l;
wcstof;
wcstoimax;
wcstok;
wcstol;
wcstold;
wcstoll;
wcstombs;
wcstoul;
wcstoull;
wcstoumax;
wcswcs;
wcswidth;
wcsxfrm;
wcsxfrm_l;
wctob;
wctomb;
wctrans;
wctrans_l;
wctype;
wctype_l;
wcwidth;
wmemchr;
wmemcmp;
wmemcpy;
wmemmove;
wmemset;
wordexp;
wordfree;
wprintf;
write;
WriteSharedMem;
writev;
wscanf;
y0;
y0f;
y1;
y1f;
yn;
ynf;
dlopen_ns_ext;
init_cfi_shadow;
map_dso_to_cfi_shadow;
unmap_dso_from_cfi_shadow;
__cfi_slowpath;
__cfi_slowpath_diag;
__memleak_hook_flag;
mallopt;
reallocarray;
CachedParameterCreate;
CachedParameterGet;
CachedParameterDestroy;
CachedParameterGetChanged;
malloc_stats_print;
GetParamLabelIndex;
malloc_disable;
malloc_enable;
malloc_info;
malloc_iterate;
GetLabelIndex;
tcgetwinsize;
_Fork;
malloc_backtrace;
tcsetwinsize;
qsort_r;
set_syscall_hooks;
set_fdtrack_enabled;
fdtrack_cas_hook;
DFX_SetAppRunningUniqueId;
local:
*;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zzulilyw/third_party_musl_4.git
git@gitee.com:zzulilyw/third_party_musl_4.git
zzulilyw
third_party_musl_4
third_party_musl_4
master

搜索帮助