Lines Matching refs:MYSQLND_DEBUG

28 	enum_func_status (*open)(MYSQLND_DEBUG * self, zend_bool reopen);
29 void (*set_mode)(MYSQLND_DEBUG * self, const char * const mode);
30 enum_func_status (*log)(MYSQLND_DEBUG * self, unsigned int line, const char * const file,
32 enum_func_status (*log_va)(MYSQLND_DEBUG * self, unsigned int line, const char * const file,
34 zend_bool (*func_enter)(MYSQLND_DEBUG * self, unsigned int line, const char * const file,
36 …enum_func_status (*func_leave)(MYSQLND_DEBUG * self, unsigned int line, const char * const file, u…
37 enum_func_status (*close)(MYSQLND_DEBUG * self);
38 enum_func_status (*free_handle)(MYSQLND_DEBUG * self);
62 MYSQLND_DEBUG * (*trace_instance_init)(const char * skip_functions[]);
68 PHPAPI MYSQLND_DEBUG * mysqlnd_debug_init(const char * skip_functions[]);
104 #define DBG_BLOCK_ENTER_EX(dbg_obj, block_name) DBG_BLOCK_ENTER_EX2((dbg_obj), (MYSQLND_DEBUG *) NU…
105 #define DBG_BLOCK_LEAVE_EX(dbg_obj) DBG_BLOCK_LEAVE_EX2((dbg_obj), (MYSQLND_DEBUG *) NULL)
116 #define DBG_ENTER_EX(dbg_obj, func_name) DBG_ENTER_EX2((dbg_obj), (MYSQLND_DEBUG *) NULL, (func_nam…
117 #define DBG_LEAVE_EX(dbg_obj, leave) DBG_LEAVE_EX2((dbg_obj), (MYSQLND_DEBUG *) NULL, leave)
168 static inline void DBG_INF_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} in DBG_INF_EX()
169 static inline void DBG_ERR_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} in DBG_ERR_EX()
170 static inline void DBG_INF_FMT_EX(MYSQLND_DEBUG * dbg_obj, ...) {} in DBG_INF_FMT_EX()
171 static inline void DBG_ERR_FMT_EX(MYSQLND_DEBUG * dbg_obj, ...) {} in DBG_ERR_FMT_EX()
172 static inline void DBG_ENTER_EX(MYSQLND_DEBUG * dbg_obj, const char * const func_name) {} in DBG_ENTER_EX()