| 64 | void unregister_profiling_handler(profiling_handlers_t *handlers); |
| 65 | |
| 66 | static inline int profiling_enabled(unsigned int data_type_mask) |
| 67 | { |
| 68 | profiling_handlers_t *handlers; |
| 69 | |
| 70 | for (handlers = profiling_handlers; handlers; handlers = handlers->next) |
| 71 | if (handlers->accepted_data_types & data_type_mask) |
| 72 | return 1; |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | static inline void profiling_msg_start(struct sip_msg *msg, int route_type, |
| 77 | const char *route_name, int depth) |
no outgoing calls
no test coverage detected