| 179 | |
| 180 | |
| 181 | static void class_module_stat( struct hashstats * stats, OBJECT * module, const char * name ) |
| 182 | { |
| 183 | if ( stats->item_size ) |
| 184 | { |
| 185 | string id[ 1 ]; |
| 186 | string_new( id ); |
| 187 | string_append( id, object_str( module ) ); |
| 188 | string_append( id, " object " ); |
| 189 | string_append( id, name ); |
| 190 | |
| 191 | hashstats_print( stats, id->value ); |
| 192 | |
| 193 | string_free( id ); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | |
| 198 | static void stat_module( void * xmodule, void * data ) |
no test coverage detected