Lines Matching refs:colon
129 char * colon; in parse_booter_path() local
133 colon = strchr(start, ':'); in parse_booter_path()
134 if (colon == NULL) { in parse_booter_path()
137 *colon = '\0'; in parse_booter_path()
143 start = colon + 1; in parse_booter_path()
144 colon = strchr(start, ':'); in parse_booter_path()
145 if (colon == NULL) { in parse_booter_path()
148 *colon = '\0'; in parse_booter_path()
152 start = colon + 1; in parse_booter_path()
153 colon = strchr(start, ':'); in parse_booter_path()
155 if (colon == NULL) { in parse_booter_path()
159 *colon = '\0'; in parse_booter_path()
160 start = colon + 1; in parse_booter_path()
177 char * colon; in find_colon() local
179 while ((colon = strchr(start, ':')) != NULL) { in find_colon()
183 if (colon == start) { in find_colon()
186 if (colon[-1] != '\\') { in find_colon()
189 for (dst = colon - 1, src = colon; *dst != '\0'; dst++, src++) { in find_colon()
192 start = colon; in find_colon()
194 return colon; in find_colon()
217 char * colon; in parse_netboot_path() local
226 colon = strchr(start, ':'); in parse_netboot_path()
227 if (colon == NULL) { in parse_netboot_path()
230 *colon = '\0'; in parse_netboot_path()
236 start = colon + 1; in parse_netboot_path()
237 colon = find_colon(start); in parse_netboot_path()
239 if (colon == NULL) { in parse_netboot_path()
243 *colon = '\0'; in parse_netboot_path()
244 start = colon + 1; in parse_netboot_path()