Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 11 of 11) sorted by relevance

/frameworks/rs/tests/java_api/RSUnitTests/
DRSUnitTests.py322 with open(in_path, 'r') as in_file, open(out_path, 'w') as out_file:
323 out_file.write(
331 out_file.write(line)
338 with open(out_path, 'w') as out_file:
339 out_file.write(
344 out_file.write(in_file.read())
/frameworks/rs/
Dupdate-prebuilts.py126 with open(out_file_path, 'w') as out_file:
130 stdout=out_file)
/frameworks/base/tools/aapt2/format/proto/
DProtoSerialize.h81 void SerializeCompiledFileToPb(const ResourceFile& file, pb::internal::CompiledFile* out_file);
DProtoDeserialize.h60 ResourceFile* out_file, std::string* out_error);
DProtoSerialize.cpp731 void SerializeCompiledFileToPb(const ResourceFile& file, pb::internal::CompiledFile* out_file) { in SerializeCompiledFileToPb() argument
732 out_file->set_resource_name(file.name.to_string()); in SerializeCompiledFileToPb()
733 out_file->set_source_path(file.source.path); in SerializeCompiledFileToPb()
734 out_file->set_type(SerializeFileReferenceTypeToPb(file.type)); in SerializeCompiledFileToPb()
735 SerializeConfig(file.config, out_file->mutable_config()); in SerializeCompiledFileToPb()
738 pb::internal::CompiledFile_Symbol* pb_symbol = out_file->add_exported_symbol(); in SerializeCompiledFileToPb()
DProtoDeserialize.cpp604 ResourceFile* out_file, std::string* out_error) { in DeserializeCompiledFileFromPb() argument
613 out_file->name = name_ref.ToResourceName(); in DeserializeCompiledFileFromPb()
614 out_file->source.path = pb_file.source_path(); in DeserializeCompiledFileFromPb()
615 out_file->type = DeserializeFileReferenceTypeFromPb(pb_file.type()); in DeserializeCompiledFileFromPb()
618 if (!DeserializeConfigFromPb(pb_file.config(), &out_file->config, &config_error)) { in DeserializeCompiledFileFromPb()
638 out_file->exported_symbols.push_back(SourcedResourceName{name_ref.ToResourceName(), line}); in DeserializeCompiledFileFromPb()
/frameworks/libs/binary_translation/assembler/
Dgen_asm_x86.py461 with open(out_filename, 'w') as out_file:
462 _gen_generic_functions_h(out_file, loaded_defs, binary_assembler)
464 _gen_memory_function_specializations_h(out_file, loaded_defs)
/frameworks/base/tools/aapt2/format/
DContainer.h62 bool GetResFileOffsets(pb::internal::CompiledFile* out_file, off64_t* out_offset,
DContainer.cpp202 bool ContainerReaderEntry::GetResFileOffsets(pb::internal::CompiledFile* out_file, in GetResFileOffsets() argument
243 if (!out_file->ParseFromCodedStream(&coded_in)) { in GetResFileOffsets()
/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/
Dgen_vulkan.go128 out_file, err := os.OpenFile(output_file_name, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
132 defer out_file.Close()
134 _, err = fmt.Fprintf(out_file,
150 err = printAliasTypes(out_file, sorted_type_names, types)
155 err = printEnums(out_file, sorted_type_names, types)
160 err = printEnumAliases(out_file, sorted_type_names, types)
170 err = printHostStructTypes(out_file, sorted_struct_type_names, types)
175 err = printFunctionPointerTypes(out_file, sorted_command_names, commands)
180 err = printExtensionsMap(out_file, extensions)
185 _, err = fmt.Fprint(out_file, "} // namespace\n\n")
[all …]
/frameworks/native/libs/binder/rust/tests/
Dserialization.cpp353 unique_fd out_file, in_file; in TEST_F() local
354 ASSERT_TRUE(binder::Pipe(&out_file, &in_file)); in TEST_F()
357 file_descriptors.push_back(ParcelFileDescriptor(std::move(out_file))); in TEST_F()