Home
last modified time | relevance | path

Searched refs:file_index (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.1.0/build/demos/wm/wireless-all/src/
Dtest.c36 static int file_index = -1; variable
65 if (FS_OpenFileEx(file, file_path[file_index], FS_FILEMODE_R)) in BeginFileTest()
166 if (--file_index < 0) in UpdateFrame()
168 file_index = file_max - 1; in UpdateFrame()
173 if (++file_index > file_max - 1) in UpdateFrame()
175 file_index = 0; in UpdateFrame()
320 PrintString(3, 16 + file_index, PLTT_YELLOW, ">"); in DrawFrame()
323 PrintString(5, 16 + i, (i == file_index) ? PLTT_YELLOW : PLTT_WHITE, file_path[i]); in DrawFrame()
364 file_index = 0; in ExecuteDataSharing()
/TwlSDK-5.1.0/build/demos/mb/multiboot-wfs/child/src/
Dchild.c70 static int file_index; variable
292 if (--file_index < 0) in ModeChildFile()
294 file_index = file_max - 1; in ModeChildFile()
299 if (++file_index > file_max - 1) in ModeChildFile()
301 file_index = 0; in ModeChildFile()
307 PrintString(2, 7 + file_index, COLOR_WHITE, ">"); in ModeChildFile()
329 if (!FS_OpenFileEx(file, file_path[file_index], FS_FILEMODE_R)) in ModeChildFile()
331 file_index = 0; in ModeChildFile()
332 OS_TPrintf("No file:\"%s\"\n", file_path[file_index]); in ModeChildFile()
/TwlSDK-5.1.0/build/tools/mic2wav/
Dmain.cpp253 int file_index = 0; in main() local
259 sprintf(path, "%s%08d.wav", s_dir, file_index++); in main()