代码搜索结果

找到约 10,000 项符合 O 的代码

fcntl.h

#ifndef _FCNTL_ #define _FCNTL_ #define O_RDONLY 0 #define O_WRONLY 1 #define O_RDWR 2 #define O_CREAT 0x200 #endif /* _FCNTL_ */

assetpropflags-ignore.as

// makeswf -v 7 -s 200x150 -r 1 -o ASSetPropFlags-ignore.swf ASSetPropFlags-ignore.as trace ("Check how referencing variables with the 4 magic version flags works"); o = {}; o.__proto__ = {}; o.__pro

open_trunc.c

#include #include #include "open.h" int open_trunc(fn) char *fn; { return open(fn,O_WRONLY | O_NDELAY | O_TRUNC | O_CREAT,0644); }

open_append.c

#include #include #include "open.h" int open_append(fn) char *fn; { return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }

driver.c

/* * Functions to handle I2O drivers (OSMs) and I2O bus type for sysfs * * Copyright (C) 2004 Markus Lidel * * This program is free software; you can redistribute

about.m

/***************************************************************************** * about.m: MacOS X About Panel ***************************************************************************** * Copyrig

about.m

/***************************************************************************** * about.m: MacOS X About Panel ***************************************************************************** * Copyrig

open_trunc.c

/* Public domain. */ #include #include #include "open.h" int open_trunc(const char *fn) { return open(fn,O_WRONLY | O_NDELAY | O_TRUNC | O_CREAT,0644); }

open_append.c

/* Public domain. */ #include #include #include "open.h" int open_append(const char *fn) { return open(fn,O_WRONLY | O_NDELAY | O_APPEND | O_CREAT,0600); }