Lines Matching refs:__attribute__
184 #define __attribute__(x) /* delete __attribute__ if non-gcc or gcc1 */ macro
198 #define __unused __attribute__((__unused__))
203 #define __pure2 __attribute__((__const__)) /* Android-added: used by FreeBSD libm */
206 #define __used __attribute__((__used__))
212 #define __packed __attribute__((__packed__))
213 #define __aligned(x) __attribute__((__aligned__(x)))
214 #define __section(x) __attribute__((__section__(x)))
237 #define __nonnull(args) __attribute__((__nonnull__ args))
239 #define __printflike(x, y) __attribute__((__format__(printf, x, y))) __nonnull((x))
240 #define __scanflike(x, y) __attribute__((__format__(scanf, x, y))) __nonnull((x))
316 #define __noreturn __attribute__((__noreturn__))
317 #define __mallocfunc __attribute__((malloc))
318 #define __purefunc __attribute__((pure))
326 #define __always_inline __attribute__((__always_inline__))
332 #define __wur __attribute__((__warn_unused_result__))
338 #define __errorattr(msg) __attribute__((__error__(msg)))
339 #define __warnattr(msg) __attribute__((__warning__(msg)))
547 …BIONIC_FORTIFY_INLINE extern __inline__ __always_inline __attribute__((gnu_inline)) __attribute__(…
549 #define __BIONIC_FORTIFY_INLINE extern __inline__ __always_inline __attribute__((gnu_inline))
555 #define __LIBC_HIDDEN__ __attribute__((visibility("hidden")))
565 #define __LIBC_ABI_PUBLIC__ __attribute__((visibility ("default")))