Lines Matching refs:dirpath
32 const char *dirpath; in files_add() local
39 dirpath = prefix_roota(root, path); in files_add()
41 dir = opendir(dirpath); in files_add()
46 return log_debug_errno(errno, "Failed to open directory '%s': %m", dirpath); in files_add()
59 log_debug("Skipping overridden file '%s/%s'.", dirpath, de->d_name); in files_add()
65 log_debug("File '%s/%s' is masked by previous entry.", dirpath, de->d_name); in files_add()
72 … log_debug_errno(errno, "Failed to stat '%s/%s', ignoring: %m", dirpath, de->d_name); in files_add()
86 log_debug("File '%s/%s' is a mask.", dirpath, de->d_name); in files_add()
94 … log_debug("Ignoring '%s/%s', as it does not have the right type.", dirpath, de->d_name); in files_add()
105 … log_debug("Ignoring '%s/%s', as it is not marked executable.", dirpath, de->d_name); in files_add()
116 p = path_join(dirpath, de->d_name); in files_add()