Home
last modified time | relevance | path

Searched refs:next_ch (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/cpio/cpio-2.13/
H A DCVE-2021-38185.patch313 int next_ch;
321 - next_ch = getc (f);
322 - while (next_ch != eos && next_ch != EOF)
323 + while ((next_ch = getc (f)) != eos && next_ch != EOF)
330 - s->ds_string[insize++] = next_ch;
331 - next_ch = getc (f);
333 + s->ds_string[s->ds_idx++] = next_ch;
339 - if (insize == 1 && next_ch == EOF)
340 + if (s->ds_idx == 0 && next_ch == EOF)
543 while ((next_ch = getc (f)) != eos && next_ch != EOF)
[all …]
/OK3568_Linux_fs/buildroot/package/cpio/
H A D0002-Rewrite-dynamic-string-support.patch309 int next_ch;
317 - next_ch = getc (f);
318 - while (next_ch != eos && next_ch != EOF)
319 + while ((next_ch = getc (f)) != eos && next_ch != EOF)
326 - s->ds_string[insize++] = next_ch;
327 - next_ch = getc (f);
329 + s->ds_string[s->ds_idx++] = next_ch;
335 - if (insize == 1 && next_ch == EOF)
336 + if (s->ds_idx == 0 && next_ch == EOF)
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/
H A Dphl_scan_fsm.c321 goto next_ch; in scan_select_channel()
342 next_ch: in scan_select_channel()
366 goto next_ch; in scan_select_channel()
H A Dphl_cmd_scan.c156 next_ch: in _cmd_scan_select_chnl()
187 goto next_ch; in _cmd_scan_select_chnl()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/
H A Dphl_scan_fsm.c321 goto next_ch; in scan_select_channel()
342 next_ch: in scan_select_channel()
366 goto next_ch; in scan_select_channel()
H A Dphl_cmd_scan.c156 next_ch: in _cmd_scan_select_chnl()
187 goto next_ch; in _cmd_scan_select_chnl()
/OK3568_Linux_fs/kernel/tools/lib/traceevent/
H A Devent-parse.c996 int ch, last_ch, quote_ch, next_ch; in __read_token() local
1025 next_ch = peek_char(); in __read_token()
1026 if (next_ch == '>') { in __read_token()