Lines Matching refs:from
110 count_common_nodes(char *to, char *from) in count_common_nodes() argument
115 if (!to || !from) in count_common_nodes()
128 from_node = next_node(&from, &err); in count_common_nodes()
136 ++from; in count_common_nodes()
191 node_offset(char *from, int offset) in node_offset() argument
195 if (!from || !offset) in node_offset()
198 for (path = from; *path != '\0'; path++) { in node_offset()
212 relative_path_to(char *from, char *to, int *err) in relative_path_to() argument
225 strnlen(from, MAX_NAME_LEN) == MAX_NAME_LEN) { in relative_path_to()
239 from_absolute = realpath(from, NULL); in relative_path_to()
241 EPRINTF("failed to get absolute path of %s\n", from); in relative_path_to()