Home | History | Annotate | Download | only in dhdutil

Lines Matching full:idleclock

139 	{ "idleclock", dhd_idleclock, DHD_GET_VAR, DHD_SET_VAR,
140 "idleclock active | stopped | <N>\n"
1162 int32 idleclock;
1168 idleclock = DHD_IDLE_ACTIVE;
1170 idleclock = DHD_IDLE_STOP;
1172 idleclock = strtol(argv[1], &endptr, 0);
1180 strcpy(buf, "idleclock");
1182 memcpy(endptr, &idleclock, sizeof(int32));
1190 idleclock = *(int32*)buf;
1192 if (idleclock == DHD_IDLE_ACTIVE)
1193 printf("Idleclock %d (active)\n", idleclock);
1194 else if (idleclock == DHD_IDLE_STOP)
1195 printf("Idleclock %d (stopped)\n", idleclock);
1197 printf("Idleclock divisor %d\n", idleclock);