Lines Matching refs:sep
449 char *sep, *endptr;
461 sep = memchr(fixup_str, ':', fixup_len);
462 if (!sep || *sep != ':')
465 path_len = sep - path;
470 name = sep + 1;
471 sep = memchr(name, ':', fixup_len);
472 if (!sep || *sep != ':')
475 name_len = sep - name;
479 poffset = strtoul(sep + 1, &endptr, 10);
480 if ((*endptr != '\0') || (endptr <= (sep + 1)))