Searched refs:in_index (Results 1 – 1 of 1) sorted by relevance
385 in_index++; in __fdio_cleanpath()390 while (in[in_index] != 0) { in __fdio_cleanpath()392 if (in[in_index] == '/') { in __fdio_cleanpath()394 CHECK_CAN_INCREMENT(in_index); in __fdio_cleanpath()395 in_index++; in __fdio_cleanpath()396 } else if (in[in_index] == '.' && IS_SEPARATOR(in[in_index + 1])) { in __fdio_cleanpath()398 CHECK_CAN_INCREMENT(in_index); in __fdio_cleanpath()399 in_index++; in __fdio_cleanpath()400 } else if (in[in_index] == '.' && in[in_index + 1] == '.' && in __fdio_cleanpath()402 CHECK_CAN_INCREMENT(in_index + 1); in __fdio_cleanpath()[all …]
Completed in 7 milliseconds