OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:openFlags
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/common/
file.d
116
enum
openFlags
= OPEN_EXISTING;
121
enum
openFlags
= CREATE_ALWAYS;
124
handle = filename.asDString.extendedPathThen!(p => CreateFileW(p.ptr, createFileMode, 0, null,
openFlags
, FILE_ATTRIBUTE_NORMAL, null));
/src/external/public-domain/sqlite/dist/
shell.c
23660
int
openFlags
; /* Additional flags to open. (SQLITE_OPEN_NOFOLLOW) */
27679
static int isDatabaseFile(const char *zFile, int
openFlags
){
27685
if( sqlite3_open_v2(zFile, &db,
openFlags
, 0)==SQLITE_OK
27708
static int deduceDatabaseType(const char *zName, int dfltZip, int
openFlags
){
27714
if( isDatabaseFile(zName,
openFlags
) ){
27938
static void open_db(ShellState *p, int
openFlags
){
27946
(
openFlags
& OPEN_DB_ZIPFILE)!=0, p->
openFlags
);
27949
if( (p->
openFlags
& (SQLITE_OPEN_READONLY|SQLITE_OPEN_READWRITE))==0 ){
27950
if( p->
openFlags
==0 ) p->openFlags = SQLITE_OPEN_CREATE
[
all
...]
sqlite3.c
18697
unsigned int
openFlags
; /* Flags passed to sqlite3_vfs.xOpen() */
[
all
...]
/src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c
231
int
openFlags
; /* Flags used to open. (SQLITE_OPEN_URI) */
2571
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE| pDb->
openFlags
, 0);
3695
SQLITE_OPEN_READONLY | pDb->
openFlags
, 0);
4405
p->
openFlags
= flags & SQLITE_OPEN_URI;
Completed in 76 milliseconds
Indexes created Wed Aug 12 00:25:48 UTC 2026