代码搜索:Open

找到约 10,000 项符合「Open」的源代码

代码结果 10,000
www.eeworm.com/read/192259/8390997

c open.c

#include "open.h" #include /* struct iovec */ /* Open the file by sending the "name" and "oflag" to the * connection server and reading a file descriptor back. */ int csopen(cha
www.eeworm.com/read/192259/8391278

c open.c

#include "db.h" /* Open or create a database. Same arguments as open(). */ DB * db_open(const char *pathname, int oflag, int mode) { DB *db; int i, len; char asciiptr[PTR_SZ + 1],
www.eeworm.com/read/192259/8391563

h open.h

#include #include #include "ourhdr.h" #define CS_OPEN "/home/stevens/opend" /* server's well-known name */ #define CL_OPEN "open" /* client's request for server */
www.eeworm.com/read/192259/8391566

c open.c

#include "open.h" #include /* struct iovec */ /* Open the file by sending the "name" and "oflag" to the * connection server and reading a file descriptor back. */ int csopen(cha
www.eeworm.com/read/291779/8395767

c open.c

/* * linux/lib/<mark>open</mark>.c * * <mark>open</mark>()系统调用用于将一个文件名转换成一个文件描述符。当调用成功时,返回的文件描述符 * 将是进程没有打开的最小数值的描述符。该调用创建一个新的打开文件,并不与任何其它进程 * 共享。在执行exec函数时,该新的文件描述符将始终保持着打开状态。文件的读写指针被设置 * 在文件开始位置。参数flag 是0_RDONLY、O ...
www.eeworm.com/read/291779/8396252

c open.c

/* passed * linux/fs/open.c * * (C) 1991 Linus Torvalds */ #include #include // 字符串头文件。主要定义了一些有关字符串操作的嵌入函数。 #include // 错误号头文件。包含系统中各种出错号。(Linus 从minix 中引进的)。 #
www.eeworm.com/read/291779/8396437

c open.c

/* * linux/lib/open.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。 // 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。 #include
www.eeworm.com/read/192246/8396453

gif open.gif

www.eeworm.com/read/291779/8396675

c open.c

/* * linux/fs/open.c * * (C) 1991 Linus Torvalds */ #include // 字符串头文件。主要定义了一些有关字符串操作的嵌入函数。 #include // 错误号头文件。包含系统中各种出错号。(Linus 从minix 中引进的)。 #include // 文件控制头文件。用于
www.eeworm.com/read/192131/8402652

gif open.gif