Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 25 of 39) sorted by relevance

12

/ohos5.0/build/lite/toolchain/
H A Dclang.gni58 outputs = [ outfile ]
65 unstripped_outfile = outfile
67 rspfile = "$outfile.rsp"
81 description = "SOLINK $outfile"
84 outputs = [ outfile ]
85 if (unstripped_outfile != outfile) {
91 unstripped_outfile = outfile
93 rspfile = "$outfile.rsp"
104 description = "LLVM LINK $outfile"
107 outputs = [ outfile ]
[all …]
H A Dgcc.gni68 outputs = [ outfile ]
76 unstripped_outfile = outfile
78 rspfile = "$outfile.rsp"
88 description = "SOLINK $outfile"
89 outputs = [ outfile ]
90 if (unstripped_outfile != outfile) {
99 unstripped_outfile = outfile
101 rspfile = "$outfile.rsp"
111 description = "LINK $outfile"
114 outputs = [ outfile ]
[all …]
H A Diccarm.gni80 outputs = [ outfile ]
88 unstripped_outfile = outfile
90 rspfile = "$outfile.rsp"
100 description = "iccarm SOLINK $outfile"
101 outputs = [ outfile ]
102 if (unstripped_outfile != outfile) {
111 unstripped_outfile = outfile
113 rspfile = "$outfile.rsp"
131 description = "iccarm LINK $outfile"
134 outputs = [ outfile ]
[all …]
/ohos5.0/build/lite/ndk/build/toolchain/
H A Dclang.gni67 outputs = [ outfile ]
74 rspfile = "$outfile.rsp"
76 command = "$ld -shared {{ldflags}} {{inputs}} -o $outfile"
78 unstripped_outfile = outfile
82 description = "SOLINK $outfile"
85 outputs = [ outfile ]
88 outfile = "bin/{{target_output_name}}{{output_extension}}"
89 rspfile = "$outfile.rsp"
93 command += " && $strip $outfile"
96 description = "LLVM LINK $outfile"
[all …]
H A Dgcc.gni68 outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}"
74 outputs = [ outfile ]
81 outfile = "{{output_dir}}/{{target_output_name}}{{output_extension}}"
86 "-Wl,--start-group {{inputs}} {{libs}} -Wl,--end-group -o $outfile"
88 command += "&& $strip $outfile"
90 description = "SOLINK $outfile"
91 outputs = [ outfile ]
99 rspfile = "$outfile.rsp"
104 command += "&& $strip $outfile"
107 description = "LINK $outfile"
[all …]
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/
H A Dplugin_config.py43 with open(output_file, "w") as outfile:
46 outfile.write("".join(static_declare))
48 outfile.write("(void)(reg);")
49 outfile.write("".join(static_register))
51 outfile.write("".join(static_unregister))
53 outfile.write(line)
/ohos5.0/build/toolchain/
H A Dgcc_toolchain.gni506 outfile = "{{output_dir}}/$exename"
508 unstripped_outfile = outfile
589 outputs = [ outfile ]
590 if (outfile != unstripped_outfile) {
649 outputs = [ outfile ]
668 outputs = [ outfile ]
704 outputs += [ outfile ]
711 outfile = "{{output_dir}}/$exename"
733 outputs += [ outfile ]
764 outputs += [ outfile ]
[all …]
/ohos5.0/base/security/crypto_framework/test/unittest/src/aes_cipher/
H A Daes_common.cpp100 ofstream outfile(fileName, ios::out|ios::binary|ios::app); in GeneratorFile() local
101 if (outfile.is_open()) { in GeneratorFile()
110 outfile.close(); in GeneratorFile()
152 ofstream outfile; in AesMultiBlockEncrypt() local
158 outfile.open("/data/test_aes_enc.txt", ios::out|ios::binary); in AesMultiBlockEncrypt()
188 outfile.write(reinterpret_cast<const char *>(output.data), output.len); in AesMultiBlockEncrypt()
196 outfile.close(); in AesMultiBlockEncrypt()
206 ofstream outfile; in AesMultiBlockDecrypt() local
212 outfile.open("/data/test_aes_new.txt", ios::out|ios::binary); in AesMultiBlockDecrypt()
242 outfile.write(reinterpret_cast<const char *>(output.data), output.len); in AesMultiBlockDecrypt()
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/common/
H A Drs_common_tools.cpp52 std::ofstream outfile(fileName, std::fstream::out); in SavePixelmapToFile() local
53 if (!outfile.is_open()) { in SavePixelmapToFile()
57 outfile.write(reinterpret_cast<const char*>(pixelMap->GetPixels()), totalSize); in SavePixelmapToFile()
58 outfile.close(); in SavePixelmapToFile()
/ohos5.0/base/startup/init/services/log/
H A Dinit_log.c48 FILE *outfile = NULL; in LogToFile() local
49 INIT_CHECK_ONLY_RETURN((outfile = fopen(logFile, "a+")) != NULL); in LogToFile()
55 …(void)fprintf(outfile, "[%s.%ld][pid=%d %d][%s]%s \n", dateTime, curr.tv_nsec, getpid(), gettid(),… in LogToFile()
56 (void)fflush(outfile); in LogToFile()
57 (void)fclose(outfile); in LogToFile()
/ohos5.0/foundation/arkui/ace_engine/interfaces/inner_api/ace/
H A Dace_forward_compatibility.cpp134 std::ofstream outfile(path); in ReclaimFileCache() local
135 if (outfile.is_open()) { in ReclaimFileCache()
136 outfile << content; in ReclaimFileCache()
137 outfile.close(); in ReclaimFileCache()
/ohos5.0/foundation/arkui/ace_engine/test/tools/event_tree_to_graph/src/
H A Dpre_process.py38 with os.fdopen(os.open(output_file, flags, mode), 'w') as outfile:
46 outfile.write(newline)
48 outfile.write(line)
/ohos5.0/base/web/webview/ohos_interface/
H A DBUILD.gn33 "--outfile",
51 "--outfile",
71 "--outfile",
89 "--outfile",
/ohos5.0/commonlibrary/c_utils/base/test/unittest/common/
H A Dutils_unique_fd_test.cpp41 ofstream outfile; in SetUpTestCase() local
42 outfile.open(testfilename, ios::out | ios::trunc); in SetUpTestCase()
43 outfile << "testdata\n" in SetUpTestCase()
45 outfile.close(); in SetUpTestCase()
/ohos5.0/base/hiviewdfx/hitrace/tools/hitrace_converter/
H A Dhitrace_converter.py121 outfile = os.fdopen(os.open(out_file, outfile_flags, outfile_mode), "w+", encoding="utf-8")
135 outfile.write(line)
137 outfile.close()
456 outfile = os.fdopen(os.open(out_file, outfile_flags, outfile_mode), 'w', encoding="utf-8")
461 outfile.write(TRACE_TXT_HEADER_FORMAT)
470 outfile.write("{}\n".format(line[1]))
472 outfile.close()
/ohos5.0/docs/zh-cn/application-dev/file-management/
H A Drequest-dir-permission.md208 std::ofstream outfile;
209 outfile.open(filePath.c_str());
210 if (!outfile) {
215 outfile.write(msg.c_str(), sizeof(msg));
216 outfile.close();
/ohos5.0/build/scripts/
H A Dcargo2gn.py178 self.outfile.write(s + '\n')
480 with open(outfile_name, 'a') as outfile:
481 self.outfile = outfile
482 other.outfile = outfile
538 with open(self.outfile_name, 'a') as outfile:
539 self.outfile = outfile
984 with open('BUILD.gn', 'a') as outfile:
985 outfile.write(line)
995 with open(name, 'w') as outfile:
996 outfile.write(BUILD_GN_HEADER)
[all …]
/ohos5.0/build/ohos/ndk/
H A Darchive_ndk.py51 with zipfile.ZipFile(output, 'a') as outfile:
58 build_utils.add_to_zip_hermetic(outfile,
67 with zipfile.ZipFile(output, 'w') as outfile:
/ohos5.0/commonlibrary/c_utils/base/test/benchmarktest/unique_fd_benchmark_test/
H A Dunique_fd_benchmark_test.cpp44 ofstream outfile; in SetUp() local
45 outfile.open(TEST_FILE_NAME, ios::out | ios::trunc); in SetUp()
46 outfile << "testdata\n" in SetUp()
48 outfile.close(); in SetUp()
/ohos5.0/build/ohos/
H A Dcopy_files.py50 write_file(args.outfile, '\n'.join(copy_out_list))
58 args.outfile,
/ohos5.0/build/ohos/testfwk/
H A Dtest_py_file_copy.py53 write_file(args.outfile, '\n'.join(copy_out_list))
58 args.outfile,
/ohos5.0/foundation/graphic/graphic_surface/surface/test/unittest/
H A Dbuffer_utils_test.cpp57 std::ofstream outfile(flagPath); in SetUpTestCase() local
58 outfile << "touch" << std::endl; in SetUpTestCase()
59 outfile.close(); in SetUpTestCase()
/ohos5.0/build/ohos/sa_profile/
H A Dsa_profile_binary.py95 with zipfile.ZipFile(args.sa_output_zipfile, 'w') as outfile:
97 build_utils.add_to_zip_hermetic(outfile,
/ohos5.0/base/startup/init/services/modules/trace/
H A Dinit_trace.c179 FILE *outfile = fopen(realPath, "w"); in WriteStrToFile() local
180 PLUGIN_CHECK(outfile != NULL, return false, "Failed to open file %s.", workspace->buffer); in WriteStrToFile()
181 (void)fprintf(outfile, "%s", str); in WriteStrToFile()
182 (void)fflush(outfile); in WriteStrToFile()
183 (void)fclose(outfile); in WriteStrToFile()
/ohos5.0/docs/en/application-dev/file-management/
H A Drequest-dir-permission.md208 std::ofstream outfile;
209 outfile.open(filePath.c_str());
210 if (!outfile) {
215 outfile.write(msg.c_str(), sizeof(msg));
216 outfile.close();

12