Lines Matching refs:directory
31 directory: The work directory where the objects were built.
39 directory_help = ('specify the output directory used for the kernel build '
40 '(defaults to the working directory)')
41 parser.add_argument('-d', '--directory', type=str, default='.',
59 'If nothing is specified, the current directory is searched')
65 os.path.abspath(args.directory),
68 args.paths if len(args.paths) > 0 else [args.directory])
71 def cmdfiles_in_dir(directory):
72 """Generate the iterator of .cmd files found under the directory.
74 Walk under the given directory, and yield every .cmd file found.
77 directory: The directory to search for .cmd files.
85 for dirpath, _, filenames in os.walk(directory):
162 root_directory: The directory that was searched for .cmd files. Usually
163 used directly in the "directory" entry in compile_commands.json.
186 'directory': root_directory,
193 """Walks through the directory and finds and parses .cmd files."""
194 log_level, directory, output, ar, paths = parse_arguments()
204 # If 'path' is a directory, handle all .cmd files under it.
225 entry = process_line(directory, result.group(1),