Lines Matching defs:tmp
26 char *tmp;
37 tmp = cpuidle_state_name(cpu, idlestate);
38 if (!tmp)
40 printf(" %s", tmp);
41 free(tmp);
53 tmp = cpuidle_state_name(cpu, idlestate);
54 if (!tmp)
56 printf("%s%s:\n", tmp, (disabled) ? " (DISABLED) " : "");
57 free(tmp);
59 tmp = cpuidle_state_desc(cpu, idlestate);
60 if (!tmp)
62 printf(_("Flags/Description: %s\n"), tmp);
63 free(tmp);
76 char *tmp;
78 tmp = cpuidle_get_driver();
79 if (!tmp) {
84 printf(_("CPUidle driver: %s\n"), tmp);
85 free(tmp);
87 tmp = cpuidle_get_governor();
88 if (!tmp) {
93 printf(_("CPUidle governor: %s\n"), tmp);
94 free(tmp);