Home
last modified time | relevance | path

Searched refs:aos_open (Results 1 – 25 of 41) sorted by relevance

12

/AliOS-Things-master/components/amp/main/
A Damp_engine.c60 if ((js_app_fd = aos_open(js_app_file_name, O_RDONLY)) >= 0) { in search_js_app_main_entry()
70 if ((js_app_fd = aos_open(js_app_file_name, O_RDONLY)) >= 0) { in search_js_app_main_entry()
78 if ((json_fd = aos_open(js_app_file_name, O_RDONLY)) < 0) { in search_js_app_main_entry()
108 if ((js_app_fd = aos_open(js_app_file_name, O_RDONLY)) < 0) { in search_js_app_main_entry()
/AliOS-Things-master/components/fatfs/example/
A Dfatfs_example.c21 int fd1 = aos_open("/sdcard/test5.txt", O_CREAT | O_RDWR | O_APPEND); in fatfs_comp_example()
43 int fd2 = aos_open("/sdcard/test5.txt", O_RDWR); in fatfs_comp_example()
/AliOS-Things-master/components/littlefs/example/
A Dlittlefs_example.c26 fd1 = aos_open(TEST_FILE, O_CREAT | O_RDWR | O_APPEND); in read_write()
48 fd2 = aos_open(TEST_FILE, O_RDWR); in read_write()
/AliOS-Things-master/components/epoll/src/
A Depoll.c39 ret = aos_open("C:\\epoll.bin", flag == EPOLL_CLOEXEC ? O_CLOEXEC : 0); in aos_epoll_create1()
41 ret = aos_open("/dev/epoll", flag == EPOLL_CLOEXEC ? O_CLOEXEC : 0); in aos_epoll_create1()
/AliOS-Things-master/components/select/example/
A Dselect_example.c35 test_fd = aos_open("/dev/test", O_RDWR); in select_example()
69 test_fd = aos_open("/dev/test", O_RDWR); in poll_example()
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/utils/fs/
A Dmodule_fs.c20 fp = aos_open(testfile, O_RDWR | O_CREAT | O_TRUNC); in check_fs_is_support()
82 fp = aos_open(path, O_RDONLY); in native_fs_read()
187 fp = aos_open(path, aos_flag); in native_fs_write()
/AliOS-Things-master/components/littlefs/
A DREADME.md121 aos_open fd1=xxx
123 aos_open fd2=xxx
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/utils/fs/
A Dmodule_fs.c27 fp = aos_open(testfile, O_RDWR | O_CREAT | O_TRUNC); in check_fs_is_support()
96 fp = aos_open(path, O_RDONLY); in native_fs_read()
215 fp = aos_open(path, aos_flag); in native_fs_write()
/AliOS-Things-master/components/py_engine/external/app_mgr/
A Dapp_mgr.c110 int fd = aos_open(filepath, O_CREAT | O_RDWR); in task_http_download_func()
168 int fp = aos_open("/data/pyamp/app.zip", O_CREAT | O_RDWR); in pyamp_download_apppack()
/AliOS-Things-master/components/fatfs/
A DREADME.md138 aos_open fd1=xxx
140 aos_open fd2=xxx
/AliOS-Things-master/components/epoll/example/
A Depoll_example.c26 test_fd = aos_open("/dev/test", O_RDWR); in epoll_example()
/AliOS-Things-master/components/ulog/internal/
A Dulog_session_file.h66 #define aos_open open macro
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/utils/builtin/
A Dmodule_builtin.c38 if ((json_fd = aos_open(json_dir, O_RDONLY)) < 0) { in native_add_global_appconfig()
/AliOS-Things-master/components/amp/engine/duktape_engine/
A Dbe.c119 int fp = aos_open(resolved_path, O_RDONLY); in resolve_path()
195 int fp = aos_open(filename, O_RDONLY); in cb_load_module()
558 int fp = aos_open(filename, O_RDONLY); in jsengine_eval_file()
/AliOS-Things-master/components/ota/hal/
A Dota_hal_fs_plat.c18 fd = aos_open(filename, mode); in ota_fopen()
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/utils/builtin/
A Dmodule_builtin.c75 if ((json_fd = aos_open(json_dir, O_RDONLY)) < 0) { in native_add_global_appconfig()
/AliOS-Things-master/components/ulog/src/
A Dulog_session_file.c267 fd = aos_open(ulog_file_name, (O_RDWR | O_CREAT | O_EXCL) in log_file_exist()
303 fd = aos_open(ulog_file_name, (O_RDWR | O_CREAT | O_TRUNC) in open_create_log_file()
325 fd = aos_open(ulog_file_name, flag); in open_log_file()
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/tftp/
A Dtftp_server.c357 fd_tftp_fs = aos_open(fname, O_RDWR); in tftp_fopen()
359 fd_tftp_fs = aos_open(fname, O_RDONLY); in tftp_fopen()
/AliOS-Things-master/components/amp_adapter/platform/linux/
A Daos_fs.c19 int aos_open(const char *path, int flags) in aos_open() function
/AliOS-Things-master/components/py_engine/external/amp_boot/
A Damp_boot_file_transfer.c208 fp = aos_open(path, O_WRONLY | O_CREAT | O_TRUNC); in pyamp_ymodem_receive_open_file()
/AliOS-Things-master/components/vfs/
A Dvfs_aos.c46 int aos_open(const char *path, int flags) in aos_open() function
A DREADME.md83 int aos_open(const char *path, int flags);
/AliOS-Things-master/components/py_engine/modules/driver/
A Dboard_mgr.c655 json_fd = aos_open(json_path, O_RDONLY); in board_get_json_buff()
981 json_fd = aos_open(sdcard_root_path, O_RDONLY); in py_board_mgr_init()
988 json_fd = aos_open(data_root_path, O_RDONLY); in py_board_mgr_init()
996 json_fd = aos_open(sdcard_board_json_path, O_RDONLY); in py_board_mgr_init()
/AliOS-Things-master/components/vfs/include/aos/
A Dvfs.h160 int aos_open(const char *path, int flags);
/AliOS-Things-master/components/amp_adapter/portfiles/aos/
A Dvfs.h160 int aos_open(const char *path, int flags);

Completed in 29 milliseconds

12