Lines Matching defs:choice
417 int choice = 0;
423 printf("Please enter your choice:");
425 int32_t ret = CheckInputName(INPUT_INT, (void *)&choice);
430 *palyModeFlag = choice;
569 int choice = 0;
575 printf("Please enter your choice:");
577 int32_t ret = CheckInputName(INPUT_INT, (void *)&choice);
582 switch (choice) {
1009 printf("Please input your choice:\n");
1036 printf("Please input your choice:\n");
1064 printf("Please input your choice:\n");
1101 printf("Please input your choice:\n");
1224 static void ProcessMenu(int32_t choice)
1226 if (choice == GET_RENDER_POSITION + 1) {
1230 if (g_render == NULL && choice != 1) {
1237 if ((choice == (int32_t)g_processRenderMenuSwitchList[i - 1].cmd) &&
1246 int32_t choice = 0;
1248 while (choice < GET_RENDER_POSITION + 1 && choice >= 0) {
1251 printf("your choice is:\n");
1253 int32_t ret = CheckInputName(INPUT_INT, (void *)&choice);
1258 if (choice < RENDER_START || choice > GET_RENDER_POSITION + 1) {
1260 choice = 0;
1264 ProcessMenu(choice);