Searched defs:weight_total (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/cmds/dumpstate/
H A Dutils.cpp1180 int weight_total = WEIGHT_TOTAL; variable
1192 if (progress > weight_total) {
1193 int new_total = weight_total * 1.2;
1194 MYLOGD("Adjusting total weight from %d to %d\n", weight_total, new_total);
1195 weight_total = new_total;
1197 snprintf(value, sizeof(value), "%d", weight_total);
1210 MYLOGD("Setting progress (%s): %s/%d\n", key, value, weight_total);
1214 fprintf(stderr, "Setting progress (%s): %s/%d\n", key, value, weight_total);
1218 dprintf(control_socket_fd, "PROGRESS:%d/%d\n", progress, weight_total);

Completed in 493 milliseconds