Lines Matching refs:colon
128 char * colon; in parse_booter_path() local
132 colon = strchr(start, ':'); in parse_booter_path()
133 if (colon == NULL) { in parse_booter_path()
136 *colon = '\0'; in parse_booter_path()
142 start = colon + 1; in parse_booter_path()
143 colon = strchr(start, ':'); in parse_booter_path()
144 if (colon == NULL) { in parse_booter_path()
147 *colon = '\0'; in parse_booter_path()
151 start = colon + 1; in parse_booter_path()
152 colon = strchr(start, ':'); in parse_booter_path()
154 if (colon == NULL) { in parse_booter_path()
158 *colon = '\0'; in parse_booter_path()
159 start = colon + 1; in parse_booter_path()
176 char * colon; in find_colon() local
178 while ((colon = strchr(start, ':')) != NULL) { in find_colon()
182 if (colon == start) { in find_colon()
185 if (colon[-1] != '\\') { in find_colon()
188 for (dst = colon - 1, src = colon; *dst != '\0'; dst++, src++) { in find_colon()
191 start = colon; in find_colon()
193 return colon; in find_colon()
216 char * colon; in parse_netboot_path() local
225 colon = strchr(start, ':'); in parse_netboot_path()
226 if (colon == NULL) { in parse_netboot_path()
229 *colon = '\0'; in parse_netboot_path()
235 start = colon + 1; in parse_netboot_path()
236 colon = find_colon(start); in parse_netboot_path()
238 if (colon == NULL) { in parse_netboot_path()
242 *colon = '\0'; in parse_netboot_path()
243 start = colon + 1; in parse_netboot_path()