Home
last modified time | relevance | path

Searched refs:FILE (Results 1 - 25 of 25) sorted by relevance

/arkcompiler/runtime_core/scripts/
H A Drun_check_atomic_format.py25 FILE = sys.argv[1] variable
51 with open(FILE) as parsed_file:
111 "specified for atomic operation".format(FILE, index))
116 "atomic operation".format(FILE, index))
/arkcompiler/runtime_core/static_core/tests/fuzztest/openuncompressedarchive_fuzzer/
H A Dopenuncompressedarchive_fuzzer.cpp21 void CloseAndRemoveZipFile(ark::ZipArchiveHandle &handle, FILE *fp, const char *filename) in CloseAndRemoveZipFile()
46 FILE *fp = fopen(zip_filename, mode); in OpenUncompressedArchiveFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/openuncompressedarchive_fuzzer/
H A Dopenuncompressedarchive_fuzzer.cpp21 void CloseAndRemoveZipFile(panda::ZipArchiveHandle &handle, FILE *fp, const char *filename) in CloseAndRemoveZipFile()
45 FILE *fp = fopen(zip_filename, mode); in OpenUncompressedArchiveFuzzTest()
/arkcompiler/runtime_core/static_core/libziparchive/tests/
H A Dlibziparchive_tests.cpp113 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckDirectory()
161 static void CloseArchiveAndCurrentFile(ZipArchiveHandle zipfile, FILE *myfile) in CloseArchiveAndCurrentFile()
168 static std::string OpenArchiveAndCurrentFile(ZipArchiveHandle &zipfile, char *filename, FILE *myfile, in OpenArchiveAndCurrentFile()
194 static std::string ExtractFile(ZipArchiveHandle &zipfile, FILE *myfile, uint32_t uncompressedLength, char *buf) in ExtractFile()
236 static std::string ExtractPandaFile(ZipArchiveHandle &zipfile, FILE *myfile, uint32_t uncompressedLength, in ExtractPandaFile()
292 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckTxt()
340 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckPandaFile()
398 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckInDirectory()
/arkcompiler/runtime_core/static_core/tests/fuzztest/open_fuzzer/
H A Dopen_fuzzer.cpp23 FILE *fp = fopen(filename, "w"); in OpenFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/load_fuzzer/
H A Dload_fuzzer.cpp27 FILE *fp = fopen(name, "wb"); in LoadFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/open_fuzzer/
H A Dopen_fuzzer.cpp23 FILE *fp = fopen(filename, "w"); in OpenFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/readosfile_fuzzer/
H A Dreadosfile_fuzzer.cpp25 FILE *fp = fopen(filename, "w"); in ReadOsFileFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/resolvesymbol_fuzzer/
H A Dresolvesymbol_fuzzer.cpp27 FILE *fp = fopen(name, "wb"); in ResolveSymbolFuzzTest()
/arkcompiler/runtime_core/static_core/tests/fuzztest/checkheader_fuzzer/
H A Dcheckheader_fuzzer.cpp24 FILE *fp = fopen(filename, "w+"); in CheckHeaderFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/checkheader_fuzzer/
H A Dcheckheader_fuzzer.cpp24 FILE *fp = fopen(filename, "w+"); in CheckHeaderFuzzTest()
/arkcompiler/runtime_core/static_core/scripts/sdk/
H A Dbuild_sdk.sh96 for FILE in $(cat "$file_list"); do
97 for F in $(find "$FILE" -type f | grep "$include_pattern" | grep -v "$exclude_pattern"); do
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dmpl_logging.h151 void SetLogDevice(FILE &stream) in SetLogDevice()
159 FILE *outStream;
/arkcompiler/runtime_core/static_core/libziparchive/
H A Dzip_archive.h89 * Open a Zip archive from opened file FILE* fp, and sets handle for the file.
95 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp);
H A Dzip_archive.cpp42 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp) in OpenArchiveFile()
46 LOG(ERROR, ZIPARCHIVE) << "OpenArchive failed from FILE *fp"; in OpenArchiveFile()
/arkcompiler/runtime_core/tests/fuzztest/ziparchivehandle_fuzzer/
H A Dziparchivehandle_fuzzer.cpp61 FILE* fp = nullptr; in ZipArchiveHandleFuzzTest()
/arkcompiler/runtime_core/libziparchive/
H A Dzip_archive.h85 * Open a Zip archive from opened file FILE* fp, and sets handle for the file.
91 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp);
H A Dzip_archive.cpp42 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp) in OpenArchiveFile()
46 LOG(ERROR, ZIPARCHIVE) << "OpenArchive failed from FILE *fp"; in OpenArchiveFile()
/arkcompiler/runtime_core/libziparchive/tests/
H A Dlibziparchive_tests.cpp93 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckDirectory()
149 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckTxt()
264 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckPandaFile()
382 FILE *myfile = fopen(archivename, "rbe"); in UnzipFileCheckInDirectory()
/arkcompiler/runtime_core/compiler/tests/
H A Ddraw_cfg_test.cpp36 #include <bits/types/FILE.h>
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dfile_writer.h218 FILE *file_;
H A Dfile.cpp174 std::unique_ptr<const panda_file::File> HandleArchive(ZipArchiveHandle &handle, FILE *fp, std::string_view location, in HandleArchive()
190 static std::unique_ptr<const panda_file::File> OpenZipPandaFile(FILE *fp, std::string_view location, in OpenZipPandaFile()
255 FILE *fp = fopen(std::string(location).c_str(), MODE); in OpenPandaFile()
/arkcompiler/runtime_core/libpandafile/
H A Dfile_writer.h241 FILE *file_;
H A Dfile.cpp172 std::unique_ptr<const panda_file::File> HandleArchive(ZipArchiveHandle &handle, FILE *fp, std::string_view location, in HandleArchive()
188 std::unique_ptr<const panda_file::File> OpenPandaFileFromZip(FILE *fp, std::string_view location, in OpenPandaFileFromZip()
248 FILE *fp = fopen(std::string(location).c_str(), mode); in OpenPandaFile()
/arkcompiler/runtime_core/static_core/irtoc/lang/
H A Dirtoc.rb32 // THIS FILE WAS GENERATED FOR #{Options.arch.upcase}

Completed in 12 milliseconds