Lines Matching refs:next
79 const char *bootargs, *next, *quote; in linux_cmdline_legacy() local
87 next = bootargs; in linux_cmdline_legacy()
91 next = strchr(bootargs, ' '); in linux_cmdline_legacy()
93 while (next && quote && quote < next) { in linux_cmdline_legacy()
98 next = strchr(quote + 1, '"'); in linux_cmdline_legacy()
99 if (next) { in linux_cmdline_legacy()
100 quote = strchr(next + 1, '"'); in linux_cmdline_legacy()
101 next = strchr(next + 1, ' '); in linux_cmdline_legacy()
105 if (!next) in linux_cmdline_legacy()
106 next = bootargs + strlen(bootargs); in linux_cmdline_legacy()
108 linux_cmdline_set(bootargs, next - bootargs); in linux_cmdline_legacy()
110 if (*next) in linux_cmdline_legacy()
111 next++; in linux_cmdline_legacy()
113 bootargs = next; in linux_cmdline_legacy()