Home
last modified time | relevance | path

Searched refs:fopen (Results 1 – 25 of 192) sorted by relevance

12345678

/AliOS-Things-master/hardware/board/haaseduk1/board_test/
A Dsd_test.c31 testfd = fopen(SDTEST_FILE_NAME, "w"); in sdtest_write()
54 testfd = fopen(SDTEST_FILE_NAME, "r"); in sdtest_write()
83 testfd = fopen(SDTEST_FILE_NAME, "w"); in sdtest_write()
123 testfd = fopen(SDTEST_FILE_NAME, "r"); in sdtest_read()
204 testfd = fopen(SDTEST_FILE_NAME, "w"); in sdcard_test()
/AliOS-Things-master/components/amp_adapter/platform/linux/
A Daos_kv.c23 FILE *fp = fopen(key, "wb"); in aos_kv_set()
34 FILE *fp = fopen(key, "rb"); in aos_kv_get()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/microfrontend/lib/
A Dfrontend_io.c28 FILE* fp = fopen(header, "w"); in WriteFrontendStateMemmap()
44 fp = fopen(source, "w"); in WriteFrontendStateMemmap()
/AliOS-Things-master/components/ota/2ndboot/updater/
A Dota_nbpatch.c35 old_fd = fopen (old_file, "rb" ); in ota_patch_init()
58 old_fd = fopen (patch_file, "rb" ); in ota_patch_init()
99 all_fd = fopen (name, "wb" ); in ota_patch_dump_flash()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/minizip/
A Dmztools.c38 FILE* fpZip = fopen(file, "rb");
39 FILE* fpOut = fopen(fileOut, "wb");
40 FILE* fpOutCD = fopen(fileOutTmp, "wb");
257 fpOutCD = fopen(fileOutTmp, "rb");
A Dioapi.h49 #define fopen64 fopen
54 #define fopen64 fopen
59 #define fopen64 fopen
/AliOS-Things-master/components/mbedtls/programs/pkey/
A Drsa_verify.c97 if( ( f = fopen( "rsa_pub.txt", "rb" ) ) == NULL ) in main()
121 if( ( f = fopen( filename, "rb" ) ) == NULL ) in main()
A Drsa_encrypt.c120 if( ( f = fopen( "rsa_pub.txt", "rb" ) ) == NULL ) in main()
171 if( ( f = fopen( "result-enc.txt", "wb+" ) ) == NULL ) in main()
A Drsa_sign.c103 if( ( f = fopen( "rsa_priv.txt", "rb" ) ) == NULL ) in main()
174 if( ( f = fopen( filename, "wb+" ) ) == NULL ) in main()
A Drsa_decrypt.c126 if( ( f = fopen( "rsa_priv.txt", "rb" ) ) == NULL ) in main()
166 if( ( f = fopen( "result-enc.txt", "rb" ) ) == NULL ) in main()
A Drsa_genkey.c129 if( ( fpub = fopen( "rsa_pub.txt", "wb+" ) ) == NULL ) in main()
145 if( ( fpriv = fopen( "rsa_priv.txt", "wb+" ) ) == NULL ) in main()
/AliOS-Things-master/components/SDL2/src/file/cocoa/
A DSDL_rwopsbundlesupport.m42 return fopen(file, mode);
52 fp = fopen([full_path_with_file_to_try fileSystemRepresentation], mode);
54 fp = fopen(file, mode);
/AliOS-Things-master/components/uvoice/test/
A Dtest_tts.c77 fp = fopen(tts_filename, "w"); in alicloud_tts_recv_data()
83 fp = fopen(tts_filename, "a+"); in alicloud_tts_recv_data()
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dexample.c114 if ((outfile = fopen(filename, "wb")) == NULL) { in write_JPEG_file()
306 if ((infile = fopen(filename, "rb")) == NULL) { in read_JPEG_file()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/examples/
A Diccfrompng.c94 FILE *fp = fopen(filename, "rb"); in extract_one_file()
124 of = fopen(output, "wb"); in extract_one_file()
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/unused/
A Djmemname.c103 if ((tfile = fopen(fname, READ_BINARY)) == NULL) { in select_file_name()
251 if ((info->temp_file = fopen(info->temp_name, RW_BINARY)) == NULL) in jpeg_open_backing_store()
A Dwrjpgcom.c443 if ((comment_file = fopen(argv[argn], "r")) == NULL) { in main()
501 if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) { in main()
528 if ((outfile = fopen(argv[argn+1], WRITE_BINARY)) == NULL) { in main()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/powerpc-vsx/
A Dlinux.c41 f = fopen("/proc/cpuinfo", "r"); in png_have_vsx()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/mips-msa/
A Dlinux.c30 FILE *f = fopen("/proc/cpuinfo", "rb"); in png_have_msa()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/iptcutil/
A Diptcutil.c433 ifile = fopen(argv[++i], "rb"); in main()
435 ifile = fopen(argv[++i], "rt"); in main()
444 ofile = fopen(argv[++i], "wt"); in main()
446 ofile = fopen(argv[++i], "wb"); in main()
/AliOS-Things-master/components/mbedtls/programs/aes/
A Daescrypt2.c169 if( ( fin = fopen( argv[2], "rb" ) ) == NULL ) in main()
175 if( ( fout = fopen( argv[3], "wb+" ) ) == NULL ) in main()
184 if( ( fkey = fopen( argv[4], "rb" ) ) != NULL ) in main()
/AliOS-Things-master/components/lwip/lwip2.0.0/port/
A Dperf.c63 f = fopen(fname, "w"); in perf_init()
/AliOS-Things-master/components/posix/src/
A Dtemp.c49 return fopen(path, "w+"); in tmpfile()
/AliOS-Things-master/components/py_engine/adapter/
A Dmain.c105 FILE *fd = fopen(path, "r"); in is_file_exist()
117 FILE *fd = fopen(AMP_PY_ENTRY_DEFAULE, "r"); in is_mainpy_exist()
124 fd = fopen(AMP_PY_ENTRY_BAK, "r"); in is_mainpy_exist()
250 FILE *json_fd = fopen(data_root_path, "r"); in get_logLevel()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminus/
A Dpng2pnm.c65 if ((fp_al = fopen (argv[argi], "wb")) == NULL) in main()
88 if ((fp_rd = fopen (argv[argi], "rb")) == NULL) in main()
97 if ((fp_wr = fopen (argv[argi], "wb")) == NULL) in main()

Completed in 21 milliseconds

12345678