Home | History | Annotate | Download | only in recovery

Lines Matching defs:info

130         key_timer_t* info = new key_timer_t;
131 info->ui = this;
132 info->key_code = key_code;
133 info->count = key_down_count;
134 pthread_create(&th, NULL, &RecoveryUI::time_key_helper, info);
177 key_timer_t* info = (key_timer_t*) cookie;
178 info->ui->time_key(info->key_code, info->count);
179 delete info;