Searched refs:ss_strategy_calls (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/BootCache-109/
H A Dlibrary.c1103 fprintf(fp, "total strategy calls %u\n", ss->ss_strategy_calls);
1104 if (ss->ss_strategy_calls > 0) {
1105 fprintf(fp, " filled calls %-10u %3.0f%%\n", ss->ss_strategy_calls - ss->ss_strategy_bypassed, ((float)(ss->ss_strategy_calls - ss->ss_strategy_bypassed) / ss->ss_strategy_calls) * 100);
1106 fprintf(fp, " bypassed calls %-10u %3.0f%%\n", ss->ss_strategy_bypassed, ((float)ss->ss_strategy_bypassed / ss->ss_strategy_calls) * 100);
1123 fprintf(fp, " noncached calls %-10u %3.0f%%\n", ss->ss_strategy_bypass_nocache + ss->ss_strategy_hit_nocache, ((float)(ss->ss_strategy_bypass_nocache + ss->ss_strategy_hit_nocache) / ss->ss_strategy_calls) * 100);
1128 fprintf(fp, " throttled calls %-10u %3.0f%%\n", ss->ss_strategy_throttled, ((float)ss->ss_strategy_throttled / ss->ss_strategy_calls) * 100);
1129 fprintf(fp, " calls during readahead %-10u %3.0f%%\n", ss->ss_strategy_duringio, ((float)ss->ss_strategy_duringio / ss->ss_strategy_calls) * 100);
H A DBootCache.h195 u_int ss_strategy_calls; /* total strategy calls we received */ member in struct:BC_statistics

Completed in 100 milliseconds