Home | History | Annotate | Download | only in drd

Lines Matching refs:zf

85  * @param[in] zf Z-encoded name of the interception function.
90 #define PTH_FUNC(ret_ty, zf, implf, argl_decl, argl) \
91 ret_ty VG_WRAP_FUNCTION_ZZ(VG_Z_LIBPTHREAD_SONAME,zf) argl_decl; \
92 ret_ty VG_WRAP_FUNCTION_ZZ(VG_Z_LIBPTHREAD_SONAME,zf) argl_decl \
97 * Z-encoded name zf, one with ZAZa ("@*") appended to the name zf and one
98 * with ZDZa ("$*") appended to the name zf. The second generated interception
102 #define PTH_FUNCS(ret_ty, zf, implf, argl_decl, argl) \
103 PTH_FUNC(ret_ty, zf, implf, argl_decl, argl); \
104 PTH_FUNC(ret_ty, zf ## ZAZa, implf, argl_decl, argl); \
105 PTH_FUNC(ret_ty, zf ## ZDZa, implf, argl_decl, argl);