2015-01-11 10:12:39 +01:00
|
|
|
<?xml version="1.0"?>
|
2017-07-23 12:09:41 +02:00
|
|
|
<def format="2">
|
2015-01-11 10:12:39 +01:00
|
|
|
<memory>
|
|
|
|
<dealloc>free</dealloc>
|
|
|
|
<alloc init="true">get_current_dir_name</alloc>
|
|
|
|
</memory>
|
2019-02-27 15:17:34 +01:00
|
|
|
<memory>
|
|
|
|
<alloc init="true" arg="1">asprintf</alloc>
|
|
|
|
<dealloc>free</dealloc>
|
|
|
|
</memory>
|
2019-02-28 22:36:52 +01:00
|
|
|
<memory>
|
2019-03-20 06:46:55 +01:00
|
|
|
<alloc init="false" buffer-size="malloc">xmalloc</alloc>
|
2019-03-21 10:44:18 +01:00
|
|
|
<alloc init="true" buffer-size="calloc">xcalloc</alloc>
|
2019-07-16 08:12:21 +02:00
|
|
|
<alloc init="true" buffer-size="strdup">xstrdup</alloc>
|
|
|
|
<realloc init="false" buffer-size="malloc:2">xrealloc</realloc>
|
2019-02-28 22:36:52 +01:00
|
|
|
<dealloc>free</dealloc>
|
2019-08-02 07:41:32 +02:00
|
|
|
<dealloc>xfree</dealloc>
|
2019-02-28 22:36:52 +01:00
|
|
|
</memory>
|
2019-03-13 16:17:16 +01:00
|
|
|
<!-- https://linux.die.net/man/3/backtrace -->
|
|
|
|
<memory>
|
|
|
|
<alloc init="true">backtrace_symbols</alloc>
|
|
|
|
<dealloc>free</dealloc>
|
|
|
|
</memory>
|
2019-03-18 11:44:35 +01:00
|
|
|
<memory>
|
2019-03-20 06:46:55 +01:00
|
|
|
<alloc init="false" buffer-size="malloc">pvalloc</alloc>
|
2019-03-18 11:44:35 +01:00
|
|
|
<dealloc>free</dealloc>
|
|
|
|
</memory>
|
2019-04-01 14:25:59 +02:00
|
|
|
<define name="bswap_16(x)" value="((unsigned short int) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8)))"/>
|
|
|
|
<define name="__bswap_constant_16(x)" value="bswap_16(x)"/>
|
|
|
|
<define name="__builtin_bswap16(x)" value="bswap_16(x)"/>
|
|
|
|
<define name="__bswap_16(x)" value="bswap_16(x)"/>
|
|
|
|
<define name="bswap_32(x)" value="((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | (((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))"/>
|
|
|
|
<define name="__bswap_constant_32(x)" value="bswap_32(x)"/>
|
|
|
|
<define name="__builtin_bswap32(x)" value="bswap_32(x)"/>
|
|
|
|
<define name="__bswap_32(x)" value="bswap_32(x)"/>
|
|
|
|
<define name="bswap_64(x)" value="((((x) & 0xff00000000000000ull) >> 56) | (((x) & 0x00ff000000000000ull) >> 40) | (((x) & 0x0000ff0000000000ull) >> 24) | (((x) & 0x000000ff00000000ull) >> 8) | (((x) & 0x00000000ff000000ull) << 8) | (((x) & 0x0000000000ff0000ull) << 24) | (((x) & 0x000000000000ff00ull) << 40) | (((x) & 0x00000000000000ffull) << 56))"/>
|
|
|
|
<define name="__bswap_constant_64(x)" value="bswap_64(x)"/>
|
|
|
|
<define name="__builtin_bswap64(x)" value="bswap_64(x)"/>
|
|
|
|
<define name="__bswap_64(x)" value="bswap_64(x)"/>
|
2019-03-18 11:44:35 +01:00
|
|
|
<!-- https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html -->
|
2019-03-19 15:24:02 +01:00
|
|
|
<define name="__builtin_alloca(size)" value="alloca(size)"/>
|
2019-08-02 12:27:46 +02:00
|
|
|
<define name="__builtin_memcpy(dest, source, size)" value="memcpy(dest, source, size)"/>
|
|
|
|
<define name="__builtin_signbit(value)" value="signbit(value)"/>
|
|
|
|
<define name="__builtin_offsetof(st, m)" value="offsetof(st, m)"/>
|
|
|
|
<define name="__builtin_nan(str)" value="nan(str)"/>
|
|
|
|
<define name="__builtin_nanf(str)" value="nanf(str)"/>
|
|
|
|
<define name="__builtin_nanl(str)" value="nanl(str)"/>
|
|
|
|
<define name="__builtin_signbit(value)" value="signbit(value)"/>
|
2019-09-19 12:27:21 +02:00
|
|
|
<define name="__extension__" value=""/>
|
2019-10-14 08:20:22 +02:00
|
|
|
<define name="__typeof__(T)" value="typeof(T)"/>
|
2019-10-14 12:16:28 +02:00
|
|
|
<define name="__glibc_unlikely(x)" value="(x)"/>
|
|
|
|
<define name="__glibc_likely(x)" value="(x)"/>
|
2019-08-02 12:27:46 +02:00
|
|
|
<!-- void *__builtin_alloca (size_t size) -->
|
|
|
|
<!-- alloca() is often defined as __builtin_alloca() so the define above does not work always -->
|
|
|
|
<!-- void *alloca(size_t size); -->
|
|
|
|
<function name="__builtin_alloca">
|
|
|
|
<use-retval/>
|
|
|
|
<returnValue type="void *"/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-10-10 10:23:21 +02:00
|
|
|
<!-- void * __builtin_assume_aligned (const void *exp, size_t align, ...) -->
|
|
|
|
<!-- This function can have either two or three arguments, if it has three, the third argument should have integer type. -->
|
|
|
|
<function name="__builtin_assume_aligned">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="void *">arg1</returnValue>
|
|
|
|
<use-retval/>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="in"/>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="in" default="0">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-08-02 13:16:48 +02:00
|
|
|
<!-- void * __builtin_memcpy(void *dest, const void *source, size_t size);-->
|
|
|
|
<!-- memcpy() is sometimes defined as __builtin_memcpy() so the define above does not work -->
|
|
|
|
<function name="__builtin_memcpy">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="void *"/>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="out">
|
|
|
|
<not-null/>
|
|
|
|
<minsize type="argvalue" arg="3"/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
<minsize type="argvalue" arg="3"/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-08-02 12:27:46 +02:00
|
|
|
<!-- void __builtin_prefetch (const void *addr, ...) -->
|
|
|
|
<function name="__builtin_prefetch">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="void"/>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="in"/>
|
|
|
|
<arg nr="variadic" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-10-14 20:59:38 +02:00
|
|
|
<!-- https://gcc.gnu.org/onlinedocs/gcc-6.2.0/gcc/Alignment.html -->
|
|
|
|
<!-- __alignof__ is used like sizeof -->
|
|
|
|
<!-- Declaration for this GNU compiler extension could look like this: -->
|
|
|
|
<!-- size_t __alignof__(type); -->
|
|
|
|
<!-- size_t __alignof__(expression); -->
|
|
|
|
<function name="__alignof__">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<use-retval/>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="in"/>
|
|
|
|
</function>
|
2019-09-08 19:17:15 +02:00
|
|
|
<!-- int timerisset(struct timeval *tvp); -->
|
|
|
|
<function name="timerisset">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<use-retval/>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- void timerclear(struct timeval *tvp); -->
|
|
|
|
<function name="timerclear">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<returnValue type="void"/>
|
|
|
|
<arg nr="1" direction="inout">
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- void timeradd(struct timeval *a, struct timeval *b, struct timeval *res);-->
|
|
|
|
<!-- void timersub(struct timeval *a, struct timeval *b, struct timeval *res);-->
|
|
|
|
<function name="timeradd,timersub">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<returnValue type="void"/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="out">
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- int timercmp(struct timeval *a, struct timeval *b, CMP)-->
|
|
|
|
<define name="timercmp(a,b,CMP)" value="(((a)->tv_sec == (b)->tv_sec) ? ((a)->tv_usec CMP (b)->tv_usec) : ((a)->tv_sec CMP (b)->tv_sec))"/>
|
2019-08-02 12:27:46 +02:00
|
|
|
<!-- int __builtin_types_compatible_p (type1, type2) -->
|
|
|
|
<function name="__builtin_types_compatible_p">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<use-retval/>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1"/>
|
|
|
|
<arg nr="2"/>
|
|
|
|
</function>
|
|
|
|
<!-- void __builtin_trap (void) -->
|
|
|
|
<function name="__builtin_trap">
|
|
|
|
<noreturn>true</noreturn>
|
|
|
|
</function>
|
|
|
|
<!-- int __builtin_popcount (unsigned int x) -->
|
|
|
|
<!-- int __builtin_parity (unsigned int x) -->
|
|
|
|
<!-- int __builtin_ffs (int x) -->
|
|
|
|
<!-- int __builtin_ffsl (long) -->
|
|
|
|
<!-- int __builtin_ffsll (long long) -->
|
|
|
|
<!-- int __builtin_clz (unsigned int x) -->
|
|
|
|
<function name="__builtin_popcount,__builtin_parity,__builtin_ffs,__builtin_ffsl,__builtin_ffsll,__builtin_clz">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<use-retval/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-02-28 22:55:17 +01:00
|
|
|
<!-- void xexit(int status); -->
|
|
|
|
<function name="xexit">
|
|
|
|
<noreturn>true</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-02-28 22:55:17 +01:00
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2019-02-28 22:55:17 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-02-28 22:36:52 +01:00
|
|
|
<!-- void * xmalloc(size_t size); -->
|
|
|
|
<function name="xmalloc">
|
|
|
|
<use-retval/>
|
|
|
|
<returnValue type="void *"/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-02-28 22:36:52 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2019-02-28 22:36:52 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-02-28 22:46:16 +01:00
|
|
|
<!-- char *xstrdup(const char *s); -->
|
|
|
|
<function name="xstrdup">
|
|
|
|
<returnValue type="char *"/>
|
|
|
|
<use-retval/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-02-28 22:46:16 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-08-02 07:41:32 +02:00
|
|
|
<!-- void xfree(void *block); -->
|
|
|
|
<function name="xfree">
|
|
|
|
<returnValue type="void"/>
|
|
|
|
<arg nr="1">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-04-26 16:39:04 +02:00
|
|
|
<!-- ssize_t splice(int fd_in, loff_t *off_in, int fd_out, loff_t *off_out, size_t len, unsigned int flags); -->
|
|
|
|
<function name="splice">
|
2019-04-26 17:55:47 +02:00
|
|
|
<leak-ignore/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<returnValue type="ssize_t"/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="inout"/>
|
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="4" direction="inout"/>
|
|
|
|
<arg nr="5" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="6" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-04-26 17:55:47 +02:00
|
|
|
<!-- ssize_t tee(int fd_in, int fd_out, size_t len, unsigned int flags); -->
|
|
|
|
<function name="tee">
|
|
|
|
<returnValue type="ssize_t"/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="4" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-04-26 16:39:04 +02:00
|
|
|
<!-- int pipe2(int pipefd[2],int flags); -->
|
|
|
|
<function name="pipe2">
|
2019-03-30 15:50:18 +01:00
|
|
|
<returnValue type="int"/>
|
|
|
|
<noreturn>false</noreturn>
|
2019-05-03 22:15:46 +02:00
|
|
|
<use-retval/>
|
2019-03-30 15:50:18 +01:00
|
|
|
<arg nr="1" direction="out">
|
|
|
|
<not-null/>
|
|
|
|
<not-bool/>
|
|
|
|
<minsize type="value" value="2"/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-02-28 22:36:52 +01:00
|
|
|
<!-- void * xcalloc(size_t nitems, size_t size); -->
|
|
|
|
<function name="xcalloc">
|
|
|
|
<use-retval/>
|
|
|
|
<returnValue type="void *"/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-02-28 22:36:52 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-02-28 22:48:39 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2019-02-28 22:48:39 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- void * xrealloc(void *block, size_t newsize); -->
|
|
|
|
<function name="xrealloc">
|
2019-02-28 23:45:51 +01:00
|
|
|
<use-retval/>
|
2019-02-28 22:48:39 +01:00
|
|
|
<returnValue type="void *"/>
|
|
|
|
<arg nr="1">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-02-28 22:36:52 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2019-02-28 22:36:52 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-18 11:44:35 +01:00
|
|
|
<!-- https://linux.die.net/man/3/pvalloc -->
|
|
|
|
<!-- void *pvalloc(size_t size); -->
|
|
|
|
<function name="pvalloc">
|
|
|
|
<use-retval/>
|
|
|
|
<returnValue type="void *"/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-02-27 15:17:34 +01:00
|
|
|
<!-- http://man7.org/linux/man-pages/man3/asprintf.3.html -->
|
|
|
|
<!-- int asprintf(char **strp, const char *fmt, ...); -->
|
|
|
|
<function name="asprintf">
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<use-retval/>
|
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="out">
|
2019-02-27 15:17:34 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
<formatstr/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-02-27 15:17:34 +01:00
|
|
|
<formatstr/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-05-31 11:24:41 +02:00
|
|
|
<!-- int isascii_l(int c, locale_t locale); -->
|
|
|
|
<function name="isascii_l">
|
|
|
|
<use-retval/>
|
|
|
|
<pure/>
|
|
|
|
<returnValue type="int">arg1>=0 && arg1<=0x7F</returnValue>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:255</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-02-27 15:17:34 +01:00
|
|
|
<!-- http://man7.org/linux/man-pages/man3/asprintf.3.html -->
|
|
|
|
<!-- int vasprintf(char **strp, const char *fmt, va_list ap); -->
|
|
|
|
<function name="vasprintf">
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<use-retval/>
|
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="out">
|
2019-02-27 15:17:34 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-02-27 15:17:34 +01:00
|
|
|
<formatstr/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-09-09 15:02:55 +02:00
|
|
|
<arg nr="3" direction="in">
|
2019-02-27 15:17:34 +01:00
|
|
|
<not-uninit/>
|
2019-09-09 15:02:55 +02:00
|
|
|
<not-bool/>
|
2019-02-27 15:17:34 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2015-07-14 09:07:47 +02:00
|
|
|
<!-- http://man7.org/linux/man-pages/man2/accept.2.html -->
|
|
|
|
<!-- int accept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags); -->
|
2019-01-28 23:26:53 +01:00
|
|
|
<function name="accept4">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-07-14 09:07:47 +02:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
2019-04-25 17:07:44 +02:00
|
|
|
<valid>0:</valid>
|
2015-07-14 09:07:47 +02:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="inout">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-07-14 09:07:47 +02:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
2019-03-13 16:17:16 +01:00
|
|
|
<!-- https://www.gnu.org/software/libc/manual/html_node/Getopt-Long-Options.html#Getopt-Long-Options -->
|
2019-02-05 21:29:56 +01:00
|
|
|
<!-- int getopt_long(int argc, char * const argv[],
|
|
|
|
const char *optstring,
|
2019-02-27 15:17:34 +01:00
|
|
|
const struct option *longopts, int *longindex); -->
|
2019-02-05 21:29:56 +01:00
|
|
|
<function name="getopt_long,getopt_long_only">
|
|
|
|
<leak-ignore/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<use-retval/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-02-05 21:29:56 +01:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-02-05 21:29:56 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="in">
|
2019-02-05 21:29:56 +01:00
|
|
|
<not-null/>
|
|
|
|
<strz/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="in">
|
2019-02-05 21:29:56 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="5" direction="out">
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
2019-02-05 21:29:56 +01:00
|
|
|
</function>
|
2018-10-27 18:25:05 +02:00
|
|
|
<!-- void *__builtin_memset(void *s, int c, size_t n); -->
|
2018-10-30 15:37:20 +01:00
|
|
|
<define name="__builtin_memset" value="memset"/>
|
2015-05-11 08:53:54 +02:00
|
|
|
<!-- long long atoq(const char *nptr); -->
|
|
|
|
<function name="atoq">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="long long"/>
|
2015-05-11 08:53:54 +02:00
|
|
|
<use-retval/>
|
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-05-11 08:53:54 +02:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-05-11 08:53:54 +02:00
|
|
|
</arg>
|
|
|
|
</function>
|
2016-01-21 16:32:00 +01:00
|
|
|
<!-- char *strndupa(const char *s, size_t n); -->
|
2015-02-16 22:19:51 +01:00
|
|
|
<function name="strndupa">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2015-02-16 22:19:51 +01:00
|
|
|
<use-retval/>
|
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-02-16 22:19:51 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-02-16 22:19:51 +01:00
|
|
|
<not-uninit/>
|
2016-12-05 10:37:13 +01:00
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-02-16 22:19:51 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-04-26 16:57:43 +02:00
|
|
|
<!-- int dup3(int oldfd, int newfd, int flags); -->
|
|
|
|
<function name="dup3">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2017-02-22 10:27:05 +01:00
|
|
|
<!-- http://man7.org/linux/man-pages/man3/strsep.3.html -->
|
|
|
|
<!-- char *strsep(char **stringp, const char *delim); -->
|
|
|
|
<function name="strsep">
|
|
|
|
<use-retval/>
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2017-02-22 10:27:05 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="inout">
|
2017-02-22 10:27:05 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2017-02-22 10:27:05 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2017-02-22 10:27:05 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2016-01-21 16:32:00 +01:00
|
|
|
<!-- char *strdupa(const char *s); -->
|
2015-02-16 22:19:51 +01:00
|
|
|
<function name="strdupa">
|
|
|
|
<use-retval/>
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2015-02-16 22:19:51 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-02-16 22:19:51 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-02-16 22:19:51 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2015-02-21 11:08:58 +01:00
|
|
|
<!-- http://www.gnu.org/software/libc/manual/html_node/Backtraces.html -->
|
|
|
|
<!-- int backtrace (void **buffer, int size) -->
|
|
|
|
<function name="backtrace">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-02-21 11:08:58 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="out">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-null/>
|
2015-10-23 09:46:39 +02:00
|
|
|
<minsize type="argvalue" arg="2"/>
|
2015-02-21 11:08:58 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-02-21 11:08:58 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- char ** backtrace_symbols (void *const *buffer, int size) -->
|
|
|
|
<function name="backtrace_symbols">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char **"/>
|
2015-02-21 11:08:58 +01:00
|
|
|
<noreturn>false</noreturn>
|
2015-03-08 14:24:54 +01:00
|
|
|
<use-retval/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2015-10-23 09:46:39 +02:00
|
|
|
<minsize type="argvalue" arg="2"/>
|
2015-02-21 11:08:58 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-02-21 11:08:58 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- void backtrace_symbols_fd (void *const *buffer, int size, int fd) -->
|
|
|
|
<function name="backtrace_symbols_fd">
|
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<returnValue type="void"/>
|
|
|
|
<arg nr="1" direction="in">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2015-10-23 09:46:39 +02:00
|
|
|
<minsize type="argvalue" arg="2"/>
|
2015-02-21 11:08:58 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="in">
|
2015-02-21 11:08:58 +01:00
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<valid>0:</valid>
|
2015-02-21 11:08:58 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2015-03-01 20:18:26 +01:00
|
|
|
<!-- char *qecvt(long double value, int ndigit, int * decpt, int * sign); -->
|
2019-03-13 16:17:16 +01:00
|
|
|
<function name="qecvt">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- char *qfcvt(double value, int ndigit, int * decpt, int * sign); -->
|
|
|
|
<function name="qfcvt">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- char *qgcvt(long double value, int ndigit, char *buf); -->
|
|
|
|
<function name="qgcvt">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-13 16:17:16 +01:00
|
|
|
<!-- https://linux.die.net/man/3/ecvt_r -->
|
2015-03-01 20:18:26 +01:00
|
|
|
<!-- int ecvt_r (double value, int ndigit, int *decpt, int *neg, char *buf, size_t len); -->
|
|
|
|
<function name="ecvt_r">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2015-03-08 14:24:54 +01:00
|
|
|
<pure/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="5" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<minsize type="argvalue" arg="6"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="6" direction="in">
|
2016-12-05 10:37:13 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2016-12-05 10:37:13 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<warn severity="style" reason="Obsolescent" alternatives="sprintf"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</function>
|
|
|
|
<!-- int fcvt_r (double value, int ndigit, int *decpt, int *neg, char *buf, size_t len); -->
|
2015-03-05 06:48:44 +01:00
|
|
|
<function name="fcvt_r">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2015-03-08 14:24:54 +01:00
|
|
|
<pure/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="5" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<minsize type="argvalue" arg="6"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="6" direction="in">
|
2016-12-05 10:37:13 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2016-12-05 10:37:13 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<warn severity="style" reason="Obsolescent" alternatives="sprintf"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</function>
|
|
|
|
<!-- int qecvt_r (long double value, int ndigit, int *decpt, int *neg, char *buf, size_t len); -->
|
|
|
|
<function name="qecvt_r">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2015-03-08 14:24:54 +01:00
|
|
|
<pure/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="5" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<minsize type="argvalue" arg="6"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="6" direction="in">
|
2016-12-05 10:37:13 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2016-12-05 10:37:13 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<warn severity="style" reason="Obsolescent" alternatives="sprintf"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</function>
|
|
|
|
<!-- int qfcvt_r (long double value, int ndigit, int *decpt, int *neg, char *buf, size_t len); -->
|
|
|
|
<function name="qfcvt_r">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
<noreturn>false</noreturn>
|
2015-03-08 14:24:54 +01:00
|
|
|
<pure/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="4" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="5" direction="out">
|
2015-03-01 20:18:26 +01:00
|
|
|
<not-null/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<minsize type="argvalue" arg="6"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="6" direction="in">
|
2016-12-05 10:37:13 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2016-12-05 10:37:13 +01:00
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<warn severity="style" reason="Obsolescent" alternatives="sprintf"/>
|
2015-03-01 20:18:26 +01:00
|
|
|
</function>
|
2015-03-08 14:04:09 +01:00
|
|
|
<!-- https://www.gnu.org/software/gnulib/manual/html_node/c_002dstrcasestr.html -->
|
|
|
|
<!-- size_t strcasestr(const char *s1, const char *s2); -->
|
|
|
|
<function name="strcasestr">
|
|
|
|
<use-retval/>
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="size_t"/>
|
2015-03-08 14:04:09 +01:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2015-03-08 14:24:54 +01:00
|
|
|
<pure/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-03-08 14:04:09 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-13 16:17:16 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-03-08 14:04:09 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2019-03-13 16:17:16 +01:00
|
|
|
<not-bool/>
|
2015-03-08 14:04:09 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2015-07-14 09:07:47 +02:00
|
|
|
<!-- http://linux.die.net/man/2/getresuid -->
|
|
|
|
<!-- int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid); -->
|
|
|
|
<function name="getresuid">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-07-14 09:07:47 +02:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<pure/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2015-07-14 09:07:47 +02:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- http://linux.die.net/man/2/getresuid -->
|
|
|
|
<!-- int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid); -->
|
|
|
|
<function name="getresgid">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-07-14 09:07:47 +02:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<pure/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="out">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2015-07-14 09:07:47 +02:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- http://man7.org/linux/man-pages/man2/setresuid.2.html -->
|
|
|
|
<!-- int setresuid(uid_t ruid, uid_t euid, uid_t suid);-->
|
|
|
|
<function name="setresuid">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-07-14 09:07:47 +02:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2015-07-14 09:07:47 +02:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
|
|
|
<!-- http://man7.org/linux/man-pages/man2/setresuid.2.html -->
|
|
|
|
<!-- int setresgid(gid_t rgid, gid_t egid, gid_t sgid);-->
|
|
|
|
<function name="setresgid">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2015-07-14 09:07:47 +02:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2015-07-14 09:07:47 +02:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2015-07-14 09:07:47 +02:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
2016-01-08 10:59:00 +01:00
|
|
|
<!-- int inet_aton (const char *name, struct in_addr *addr); -->
|
|
|
|
<function name="inet_aton">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<arg nr="1">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2">
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
|
|
|
<!-- uint32_t inet_network (const char *name); -->
|
|
|
|
<function name="inet_network">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="uint32_t"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
|
|
|
<!-- struct in_addr inet_makeaddr (uint32_t net, uint32_t local); -->
|
|
|
|
<function name="inet_makeaddr">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="struct in_addr"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
2016-12-05 10:37:13 +01:00
|
|
|
<valid>0:4294967295</valid>
|
|
|
|
<!-- 0:UINT32_MAX-->
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
2016-12-05 10:37:13 +01:00
|
|
|
<valid>0:4294967295</valid>
|
|
|
|
<!-- 0:UINT32_MAX-->
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- https://linux.die.net/man/3/inet_lnaof -->
|
2016-01-08 10:59:00 +01:00
|
|
|
<!-- uint32_t inet_lnaof (struct in_addr addr); -->
|
|
|
|
<function name="inet_lnaof">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="uint32_t"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
|
|
|
<!-- uint32_t inet_netof (struct in_addr addr); -->
|
|
|
|
<function name="inet_netof">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="uint32_t"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
|
|
|
<!-- int inet_pton (int af, const char *cp, void *buf); -->
|
|
|
|
<function name="inet_pton">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="out">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- https://linux.die.net/man/3/inet_ntop -->
|
2016-01-08 10:59:00 +01:00
|
|
|
<!-- const char * inet_ntop (int af, const void *cp, char *buf, socklen_t len);-->
|
|
|
|
<function name="inet_ntop">
|
2019-03-14 09:26:27 +01:00
|
|
|
<returnValue type="const char *"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="out">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<minsize type="argvalue" arg="4"/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="4" direction="in">
|
2016-01-08 10:59:00 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-08 10:59:00 +01:00
|
|
|
</arg>
|
|
|
|
<leak-ignore/>
|
|
|
|
</function>
|
2016-01-11 15:00:36 +01:00
|
|
|
<!-- char *canonicalize_file_name(const char *path); -->
|
|
|
|
<function name="canonicalize_file_name">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2016-01-11 15:00:36 +01:00
|
|
|
<use-retval/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-11 15:00:36 +01:00
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-11 15:00:36 +01:00
|
|
|
</arg>
|
2016-01-11 15:22:40 +01:00
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- https://linux.die.net/man/3/execvpe -->
|
2016-01-13 11:57:21 +01:00
|
|
|
<!-- int execvpe(const char *file, char *const argv[], char *const envp[]); -->
|
|
|
|
<function name="execvpe">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-13 11:57:21 +01:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-13 11:57:21 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-13 11:57:21 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2016-01-13 11:57:21 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-13 11:57:21 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- https://linux.die.net/man/3/mkostemp -->
|
2016-01-21 16:32:00 +01:00
|
|
|
<!-- int mkostemp(char *template, int flags);
|
|
|
|
int mkstemps(char *template, int suffixlen);-->
|
|
|
|
<function name="mkostemp,mkstemps">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-21 16:32:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="inout">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-21 16:32:00 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- int mkostemps(char *template, int suffixlen, int flags); -->
|
|
|
|
<function name="mkostemps">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-21 16:32:00 +01:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="inout">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-21 16:32:00 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- see http://man7.org/linux/man-pages/man3/memmem.3.html -->
|
2016-01-21 16:32:00 +01:00
|
|
|
<!-- void *memmem(const void *haystack, size_t haystacklen,
|
|
|
|
const void *needle, size_t needlelen);-->
|
|
|
|
<function name="memmem">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2016-12-04 20:30:33 +01:00
|
|
|
<use-retval/>
|
2017-10-05 11:45:46 +02:00
|
|
|
<returnValue type="void *"/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<minsize type="argvalue" arg="2"/>
|
2016-01-21 16:32:00 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
2016-12-04 20:30:33 +01:00
|
|
|
<valid>0:</valid>
|
2016-01-21 16:32:00 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<minsize type="argvalue" arg="4"/>
|
2016-01-21 16:32:00 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="4" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
2016-12-04 20:30:33 +01:00
|
|
|
<valid>0:</valid>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-21 16:32:00 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- http://man7.org/linux/man-pages/man3/memrchr.3.html -->
|
|
|
|
<!-- void *memrchr(const void *s, int c, size_t n); -->
|
|
|
|
<function name="memrchr">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2017-10-05 11:45:46 +02:00
|
|
|
<returnValue type="void *"/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<use-retval/>
|
|
|
|
<arg nr="1" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-uninit/>
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- http://man7.org/linux/man-pages/man3/rawmemchr.3.html -->
|
|
|
|
<!-- void *rawmemchr(const void *s, int c); -->
|
|
|
|
<function name="rawmemchr">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2017-10-05 11:45:46 +02:00
|
|
|
<returnValue type="void *"/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<use-retval/>
|
|
|
|
<arg nr="1" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-21 16:32:00 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2016-01-22 10:40:04 +01:00
|
|
|
<!-- http://man7.org/linux/man-pages/man3/ffs.3.html -->
|
|
|
|
<!-- int ffsl(long int i);
|
|
|
|
int ffsll(long long int i); -->
|
|
|
|
<function name="ffsl,ffsll">
|
|
|
|
<use-retval/>
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-22 10:40:04 +01:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-22 10:40:04 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-22 10:40:04 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- http://man7.org/linux/man-pages/man3/strchr.3.html -->
|
|
|
|
<!-- char *strchrnul(const char *s, int c); -->
|
|
|
|
<function name="strchrnul">
|
|
|
|
<use-retval/>
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="char *"/>
|
2016-01-22 10:40:04 +01:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-22 10:40:04 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
<strz/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-22 10:40:04 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-bool/>
|
2016-01-22 10:40:04 +01:00
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- http://man7.org/linux/man-pages/man2/setrlimit.2.html -->
|
|
|
|
<!-- int prlimit(pid_t pid, int resource, const struct rlimit *new_limit,
|
|
|
|
struct rlimit *old_limit); -->
|
|
|
|
<function name="prlimit">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2016-01-22 10:40:04 +01:00
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2016-01-22 10:40:04 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2016-01-22 10:40:04 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2016-01-22 10:40:04 +01:00
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="4" direction="out">
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
2016-01-22 10:40:04 +01:00
|
|
|
</function>
|
2015-08-10 20:21:30 +02:00
|
|
|
<!-- see https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html -->
|
|
|
|
<define name="__builtin_expect(X,Y)" value="(X)"/>
|
2019-03-19 15:24:02 +01:00
|
|
|
<define name="__builtin_expect_with_probability(exp,c,probability)" value="(exp)"/>
|
2015-08-10 20:21:30 +02:00
|
|
|
<!-- see http://kernelnewbies.org/FAQ/LikelyUnlikely -->
|
2015-08-08 12:49:42 +02:00
|
|
|
<define name="likely(X)" value="(X)"/>
|
|
|
|
<define name="unlikely(X)" value="(X)"/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<!-- int epoll_create(int size); -->
|
|
|
|
<function name="epoll_create">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
<!-- Since Linux 2.6.8, the size argument is ignored, but must be greater than zero in order to
|
|
|
|
ensure backward compatibility when new epoll applications are run on older kernels. -->
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- int epoll_create1(int flags); -->
|
|
|
|
<function name="epoll_create1">
|
2017-05-29 00:47:24 +02:00
|
|
|
<noreturn>false</noreturn>
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- https://linux.die.net/man/2/epoll_ctl -->
|
2017-05-29 00:47:24 +02:00
|
|
|
<!-- int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); -->
|
|
|
|
<function name="epoll_ctl">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2017-05-29 00:47:24 +02:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<valid>0:</valid>
|
2017-05-29 00:47:24 +02:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<valid>0:</valid>
|
2017-05-29 00:47:24 +02:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="4" direction="inout">
|
|
|
|
<not-uninit/>
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- int epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout); -->
|
|
|
|
<function name="epoll_wait">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2017-05-29 00:47:24 +02:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<valid>0:</valid>
|
2017-05-29 00:47:24 +02:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="out">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="4" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- int epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const sigset_t *sigmask); -->
|
|
|
|
<function name="epoll_pwait">
|
2017-08-02 14:34:06 +02:00
|
|
|
<returnValue type="int"/>
|
2017-05-29 00:47:24 +02:00
|
|
|
<noreturn>false</noreturn>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
2019-04-26 16:39:04 +02:00
|
|
|
<valid>0:</valid>
|
2017-05-29 00:47:24 +02:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="out">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-null/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="4" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="5" direction="in">
|
2017-05-29 00:47:24 +02:00
|
|
|
<not-bool/>
|
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2018-07-18 09:40:06 +02:00
|
|
|
<!-- int sethostname(const char *name, size_t len); -->
|
|
|
|
<function name="sethostname">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2018-07-18 09:40:06 +02:00
|
|
|
<not-null/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<not-uninit/>
|
2018-07-18 09:40:06 +02:00
|
|
|
<minsize type="argvalue" arg="2"/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-01-24 23:08:42 +01:00
|
|
|
<!-- https://www.gnu.org/software/libc/manual/html_node/Translation-with-gettext.html -->
|
|
|
|
<!-- char * gettext (const char *msgid); -->
|
|
|
|
<function name="gettext">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="char *"/>
|
|
|
|
<use-retval/>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-01-24 23:08:42 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
<strz/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-06 10:57:59 +01:00
|
|
|
<!-- _(string) is often defined as gettext(string) or string somewhere in projects. -->
|
|
|
|
<!-- See https://www.gnu.org/software/gettext//manual/html_node/Mark-Keywords.html -->
|
2019-04-03 16:02:55 +02:00
|
|
|
<!-- <define name="_(string)" value="string"/> does not work always, so use a very conservative
|
|
|
|
function configuration instead if nothing else is seen by Cppcheck -->
|
|
|
|
<function name="_">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<arg nr="1"/>
|
|
|
|
</function>
|
|
|
|
<!-- For N_ often something like "#define N_(String) gettext_noop (String)" is used. To be safe
|
|
|
|
a conservative function configuration is used here like for "_" -->
|
|
|
|
<function name="N_">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<arg nr="1"/>
|
|
|
|
</function>
|
2019-03-14 09:26:27 +01:00
|
|
|
<!-- https://linux.die.net/man/3/dgettext -->
|
2019-01-24 23:08:42 +01:00
|
|
|
<!-- char * dgettext (const char *domainname, const char *msgid); -->
|
|
|
|
<function name="dgettext">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="char *"/>
|
|
|
|
<use-retval/>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-01-24 23:08:42 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<strz/>
|
2019-01-24 23:08:42 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-01-24 23:08:42 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
<strz/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- char * dcgettext (const char *domainname, const char *msgid, int category); -->
|
|
|
|
<function name="dcgettext">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="char *"/>
|
|
|
|
<use-retval/>
|
|
|
|
<leak-ignore/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="1" direction="in">
|
2019-01-24 23:08:42 +01:00
|
|
|
<not-uninit/>
|
2019-03-14 09:26:27 +01:00
|
|
|
<strz/>
|
2019-01-24 23:08:42 +01:00
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="2" direction="in">
|
2019-01-24 23:08:42 +01:00
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
<strz/>
|
|
|
|
</arg>
|
2019-03-14 09:26:27 +01:00
|
|
|
<arg nr="3" direction="in">
|
2019-01-24 23:08:42 +01:00
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-19 15:24:02 +01:00
|
|
|
<!-- https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html -->
|
|
|
|
<!-- void __builtin_trap (void) -->
|
|
|
|
<function name="__builtin_trap">
|
|
|
|
<noreturn>true</noreturn>
|
|
|
|
</function>
|
|
|
|
<!-- int __builtin_constant_p (exp) -->
|
|
|
|
<function name="__builtin_constant_p">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<arg nr="1"/>
|
|
|
|
</function>
|
|
|
|
<!-- https://gcc.gnu.org/onlinedocs/gcc/Return-Address.html -->
|
|
|
|
<!-- void * __builtin_return_address (unsigned int level) -->
|
|
|
|
<!-- void * __builtin_frame_address (unsigned int level) -->
|
|
|
|
<function name="__builtin_return_address,__builtin_frame_address">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="void *"/>
|
|
|
|
<use-retval/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- void * __builtin_extract_return_addr (void *addr) -->
|
|
|
|
<!-- void * __builtin_frob_return_address (void *addr) -->
|
|
|
|
<function name="__builtin_extract_return_addr,__builtin_frob_return_address">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<returnValue type="void *"/>
|
|
|
|
<use-retval/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-10-30 09:39:50 +01:00
|
|
|
<!-- http://man7.org/linux/man-pages/man2/mmap.2.html -->
|
|
|
|
<!-- void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset); -->
|
|
|
|
<!-- In contrast to POSIX, the GNU mmap allows/requires (depends on the implementation) fd to be -1 if MAP_ANONYMOUS or MAP_ANON is specified -->
|
|
|
|
<function name="mmap">
|
|
|
|
<use-retval/>
|
|
|
|
<returnValue type="void *"/>
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>1:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="4" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="5" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>-1:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="6" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2020-05-08 09:16:59 +02:00
|
|
|
<!-- Note: fstatat64() is a large-file version of the fstatat() function -->
|
|
|
|
<!-- int fstatat64(int dirfd, const char *pathname, struct stat64 *statbuf, int flags); -->
|
|
|
|
<function name="fstatat64">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="out">
|
|
|
|
<not-null/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="4" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
|
|
|
<!-- int __fxstatat64 (int __ver, int __fildes, const char *__filename, struct stat64 *__stat_buf, int __flag); -->
|
|
|
|
<function name="__fxstatat64">
|
|
|
|
<noreturn>false</noreturn>
|
|
|
|
<leak-ignore/>
|
|
|
|
<returnValue type="int"/>
|
|
|
|
<arg nr="1" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="2" direction="in">
|
|
|
|
<not-uninit/>
|
|
|
|
<valid>0:</valid>
|
|
|
|
</arg>
|
|
|
|
<arg nr="3" direction="in">
|
|
|
|
<not-null/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="4" direction="out">
|
|
|
|
<not-null/>
|
|
|
|
<not-bool/>
|
|
|
|
</arg>
|
|
|
|
<arg nr="5" direction="in">
|
|
|
|
<not-bool/>
|
|
|
|
<not-uninit/>
|
|
|
|
</arg>
|
|
|
|
</function>
|
2019-03-19 15:24:02 +01:00
|
|
|
<!-- ########## Resource allocation ########## -->
|
2019-05-17 09:32:14 +02:00
|
|
|
<resource>
|
2019-05-16 16:02:05 +02:00
|
|
|
<alloc init="true">mkostemp</alloc>
|
|
|
|
<alloc init="true">mkstemps</alloc>
|
|
|
|
<alloc init="true">mkostemps</alloc>
|
|
|
|
<dealloc>close</dealloc>
|
|
|
|
</resource>
|
2017-05-29 00:47:24 +02:00
|
|
|
<resource>
|
|
|
|
<dealloc>close</dealloc>
|
|
|
|
<alloc init="true">epoll_create</alloc>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<dealloc>close</dealloc>
|
|
|
|
<alloc init="true">epoll_create1</alloc>
|
|
|
|
</resource>
|
|
|
|
<podtype name="epoll_event"/>
|
2019-04-25 12:17:26 +02:00
|
|
|
<!-- see http://man7.org/linux/man-pages/man7/signal.7.html -->
|
|
|
|
<define name="SIGIOT" value="6"/>
|
|
|
|
<define name="SIGSTKFLT" value="16"/>
|
|
|
|
<define name="SIGWINCH" value="28"/>
|
|
|
|
<define name="SIGIO" value="29"/>
|
|
|
|
<define name="SIGPWR" value="30"/>
|
|
|
|
<define name="SIGUNUSED" value="31"/>
|
2015-01-11 10:12:39 +01:00
|
|
|
</def>
|