MCPcopy Create free account
hub / github.com/boostorg/build / module_stat

Function module_stat

src/engine/modules.cpp:161–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

159
160
161static void module_stat( struct hash * hp, OBJECT * module, const char * name )
162{
163 if ( hp )
164 {
165 struct hashstats stats[ 1 ];
166 string id[ 1 ];
167 hashstats_init( stats );
168 string_new( id );
169 string_append( id, object_str( module ) );
170 string_push_back( id, ' ' );
171 string_append( id, name );
172
173 hashstats_add( stats, hp );
174 hashstats_print( stats, id->value );
175
176 string_free( id );
177 }
178}
179
180
181static void class_module_stat( struct hashstats * stats, OBJECT * module, const char * name )

Callers 1

stat_moduleFunction · 0.85

Calls 8

hashstats_initFunction · 0.85
string_newFunction · 0.85
string_appendFunction · 0.85
object_strFunction · 0.85
string_push_backFunction · 0.85
hashstats_addFunction · 0.85
hashstats_printFunction · 0.85
string_freeFunction · 0.85

Tested by

no test coverage detected