Home | History | Annotate | Download | only in profiles

Lines Matching refs:counts

58 bool CountProfileInformation(ProfileManager* manager, ProfileCounts* counts) {
61 counts->total = number_of_profiles;
73 counts->unused++;
76 counts->supervised++;
78 counts->signedin++;
80 counts->gaia_icon++;
147 ProfileCounts counts;
148 if (CountProfileInformation(manager, &counts)) {
149 int limited_total = counts.total;
150 int limited_signedin = counts.signedin;
154 (int)((float)(counts.signedin * limited_total)
155 / counts.total + 0.5);
162 ProfileCounts counts;
163 bool success = CountProfileInformation(manager, &counts);
164 UMA_HISTOGRAM_COUNTS_100("Profile.NumberOfProfiles", counts.total);
169 counts.supervised);
171 100 * counts.supervised / counts.total);
173 counts.signedin);
175 counts.unused);
177 counts.gaia_icon);
180 UpdateReportedOSProfileStatistics(counts.total, counts.signedin);