Searched refs:openFlags (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/common/ |
| H A D | file.d | 116 enum openFlags = OPEN_EXISTING; in FileMapping() local 121 enum openFlags = CREATE_ALWAYS; in FileMapping() local 124 …ring.extendedPathThen!(p => CreateFileW(p.ptr, createFileMode, 0, null, openFlags, FILE_ATTRIBUTE_… in FileMapping()
|
| /netbsd-src/external/public-domain/sqlite/dist/tea/generic/ |
| H A D | tclsqlite3.c | 207 int openFlags; /* Flags used to open. (SQLITE_OPEN_URI) */ member 2090 SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE| pDb->openFlags, 0); in DbObjCmd() 3192 SQLITE_OPEN_READONLY | pDb->openFlags, 0); in DbObjCmd() 3902 p->openFlags = flags & SQLITE_OPEN_URI; in DbMain()
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 18159 int openFlags; /* Additional flags to open. (SQLITE_OPEN_NOFOLLOW) */ member 22141 static void open_db(ShellState *p, int openFlags){ in open_db() argument 22149 (openFlags & OPEN_DB_ZIPFILE)!=0); in open_db() 22155 SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|p->openFlags, "apndvfs"); in open_db() 22169 SQLITE_OPEN_READONLY|p->openFlags, 0); in open_db() 22175 SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|p->openFlags, 0); in open_db() 22182 if( (openFlags & OPEN_DB_KEEPALIVE)==0 ){ in open_db() 26257 p->openFlags |= SQLITE_OPEN_NOFOLLOW; in do_meta_command() 26289 p->openFlags = 0; in do_meta_command() 29129 data.openFlags = SQLITE_OPEN_NOFOLLOW; [all …]
|
| H A D | sqlite3.c | 17596 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ member 38298 int openFlags; /* The flags specified at open() */ 44277 int openFlags = 0; /* Flags to pass to open() */ 44389 if( isReadonly ) openFlags |= O_RDONLY; 44390 if( isReadWrite ) openFlags |= O_RDWR; 44391 if( isCreate ) openFlags |= O_CREAT; 44392 if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW); 44393 openFlags |= (O_LARGEFILE|O_BINARY|O_NOFOLLOW); 44405 fd = robust_open(zName, openFlags, openMode); 44406 OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags)); [all …]
|