Searched refs:in_ptr (Results 1 – 2 of 2) sorted by relevance
41 const char* in_ptr = file_name; in realpath() local47 while (*in_ptr) { in realpath()51 const char* end_of_path_component = strchrnul(in_ptr, '/'); in realpath()52 size_t path_component_len = end_of_path_component - in_ptr; in realpath()55 (path_component_len == 1 && in_ptr[0] == '.')) { in realpath()57 } else if (path_component_len == 2 && in_ptr[0] == '.' && in_ptr[1] == '.') { in realpath()88 memcpy(out_ptr, in_ptr, path_component_len); in realpath()95 in_ptr += path_component_len; in realpath()96 if (*in_ptr != '\0') { in realpath()98 ++in_ptr; in realpath()
42 for (char *in_ptr = line; argc < argv_size - 1; ++in_ptr) { in esp_console_split_argv() local43 int char_in = (unsigned char) *in_ptr; in esp_console_split_argv()