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

123

/seL4-refos-master/libs/libmuslc/src/fcntl/
H A Dcreat.c6 return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
H A Dopen.c6 int open(const char *filename, int flags, ...) function
24 LFS64(open); variable
/seL4-refos-master/libs/libmuslc/src/dirent/
H A Dopendir.c13 if ((fd = open(name, O_RDONLY|O_DIRECTORY|O_CLOEXEC)) < 0)
/seL4-refos-master/libs/libmuslc/src/legacy/
H A Ddaemon.c11 if ((fd = open("/dev/null", O_RDWR)) < 0) return -1;
H A Dgetpass.c15 if ((fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0) return 0;
/seL4-refos-master/libs/libmuslc/src/misc/
H A Dopenpty.c15 m = open("/dev/ptmx", O_RDWR|O_NOCTTY);
25 if ((s = open(name, O_RDWR|O_NOCTTY)) < 0)
H A Dpty.c11 return open("/dev/ptmx", flags);
H A Dfmtmsg.c42 consolefd = open("/dev/console", O_WRONLY);
/seL4-refos-master/kernel/manual/tools/
H A Dgen_env.py41 with open(sys.argv[1], "r") as f:
46 with open(sys.argv[1], "w") as f:
/seL4-refos-master/projects/refos/impl/
H A Dcidl_compile43 TEMPLATE_ROOT = open('cidl_templates/root.py', 'r').read()
44 TEMPLATE_CLIENT_HEADER = open('cidl_templates/client_header.py', 'r').read()
45 TEMPLATE_CLIENT = open('cidl_templates/client.py', 'r').read()
46 TEMPLATE_SERVER_HEADER = open('cidl_templates/server_header.py', 'r').read()
47 TEMPLATE_SERVER = open('cidl_templates/server.py', 'r').read()
48 TEMPLATE_DISPATCHER = open('cidl_templates/dispatcher.py', 'r').read()
49 TEMPLATE_DISPATCHER_CONTAINER = open('cidl_templates/dispatcher_container.py', 'r').read()
50 TEMPLATE_ENUM = open('cidl_templates/enum.py', 'r').read()
/seL4-refos-master/
H A Dcidl_compile43 TEMPLATE_ROOT = open('cidl_templates/root.py', 'r').read()
44 TEMPLATE_CLIENT_HEADER = open('cidl_templates/client_header.py', 'r').read()
45 TEMPLATE_CLIENT = open('cidl_templates/client.py', 'r').read()
46 TEMPLATE_SERVER_HEADER = open('cidl_templates/server_header.py', 'r').read()
47 TEMPLATE_SERVER = open('cidl_templates/server.py', 'r').read()
48 TEMPLATE_DISPATCHER = open('cidl_templates/dispatcher.py', 'r').read()
49 TEMPLATE_DISPATCHER_CONTAINER = open('cidl_templates/dispatcher_container.py', 'r').read()
50 TEMPLATE_ENUM = open('cidl_templates/enum.py', 'r').read()
/seL4-refos-master/projects/util_libs/libpci/include/pci/
H A Dhelper_gen.py14 helper_lines = open("helper.h", "r").readlines();
15 helper_out = open("../../src/helper.c", "w");
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/include/
H A Dmacconf.h89 # define open macopen macro
H A Dsystem.h101 # define open _open macro
196 E int FDECL(open, (const char *,int));
204 E int FDECL(open, (const char *,int,...));
266 E int VDECL(open, (const char *,int,unsigned,...));
H A Dvmsconf.h243 #define open(f,k,m) vms_open(f,k,m) /* vmsfiles.c */ macro
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/include/
H A Dmacconf.h89 # define open macopen macro
/seL4-refos-master/libs/libmuslc/src/temp/
H A Dmkostemps.c22 if ((fd = open(template, flags | O_RDWR | O_CREAT | O_EXCL, 0600))>=0)
/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_setname_np.c22 if ((fd = open(f, O_WRONLY)) < 0 || write(fd, name, len) < 0) status = errno;
H A Dsem_open.c72 /* Early failure check for exclusive open; otherwise the case
83 fd = open(name, FLAGS);
114 fd = open(tmp, O_CREAT|O_EXCL|FLAGS, mode);
130 /* Failure is only fatal when doing an exclusive open;
131 * otherwise, next iteration will try to open the
/seL4-refos-master/libs/libmuslc/include/
H A Dfcntl.h34 int open(const char *, int, ...);
174 #define open64 open
/seL4-refos-master/libs/libmuslc/src/mman/
H A Dshm_open.c35 int fd = open(name, flag|O_NOFOLLOW|O_CLOEXEC|O_NONBLOCK, mode);
/seL4-refos-master/seL4_tools/cmake-tool/helpers/
H A Delf_sift.py55 with open(filename, 'rb') as f:
/seL4-refos-master/seL4_tools/misc/
H A Dfilter.py33 with open(filters_file, 'r') as outfile:
37 logging.warning("Failed to open filter file %s: %s", filters_file, exception)
/seL4-refos-master/projects/util_libs/libplatsupport/tools/
H A Ddevice_header_gen.py50 with open(args.device_list) as device_list:
/seL4-refos-master/libs/libplatsupport/tools/
H A Ddevice_header_gen.py50 with open(args.device_list) as device_list:

Completed in 88 milliseconds

123