Home
last modified time | relevance | path

Searched refs:input_file (Results 1 – 5 of 5) sorted by relevance

/system/sepolicy/build/
Dfile_utils.py33 def filter_out(pattern_files, input_file): argument
43 with open(input_file, 'r') as in_file:
52 shutil.copyfile(tmp_output.name, input_file)
/system/bt/gd/packet/parser/
Dmain.cc64 bool parse_declarations_one_file(const std::filesystem::path& input_file, Declarations* declaration… in parse_declarations_one_file() argument
68 FILE* in_file = fopen(input_file.string().c_str(), "r"); in parse_declarations_one_file()
70 std::cerr << "can't open " << input_file << ": " << strerror(errno) << std::endl; in parse_declarations_one_file()
101 …l generate_cpp_headers_one_file(const Declarations& decls, const std::filesystem::path& input_file, in generate_cpp_headers_one_file() argument
104 auto gen_relative_path = input_file.lexically_relative(include_dir).parent_path(); in generate_cpp_headers_one_file()
106 …auto input_filename = input_file.filename().string().substr(0, input_file.filename().string().find… in generate_cpp_headers_one_file()
255 …erate_pybind11_sources_one_file(const Declarations& decls, const std::filesystem::path& input_file, in generate_pybind11_sources_one_file() argument
258 auto gen_relative_path = input_file.lexically_relative(include_dir).parent_path(); in generate_pybind11_sources_one_file()
260 …auto input_filename = input_file.filename().string().substr(0, input_file.filename().string().find… in generate_pybind11_sources_one_file()
/system/tools/aidl/build/
Daidl_to_jni.py73 with open(aidl_mappings) as input_file:
75 for line in input_file:
/system/tools/aidl/
Daidl.cpp157 const string& input_file, const string& output_file) { in write_dep_file() argument
173 vector<string> source_aidl = {input_file}; in write_dep_file()
756 for (const string& input_file : options.InputFiles()) { in compile_aidl() local
761 AidlError aidl_err = internals::load_and_validate_aidl(input_file, options, io_delegate, in compile_aidl()
780 if (!write_dep_file(options, *defined_type, imported_files, io_delegate, input_file, in compile_aidl()
814 for (const string& input_file : options.InputFiles()) { in dump_mappings() local
818 AidlError aidl_err = internals::load_and_validate_aidl(input_file, options, io_delegate, in dump_mappings()
/system/sepolicy/tools/
Dcheck_seapp.c947 file_info *input_file; in handle_options() local
980 input_file = calloc(1, sizeof(*input_file)); in handle_options()
981 if (!input_file) { in handle_options()
985 input_file->name = argv[c]; in handle_options()
986 list_append(&input_file_list, &input_file->listify); in handle_options()