Searched defs:openFlags (Results 1 - 1 of 1) sorted by relevance

/external/sqlite/dist/
H A Dsqlite3.c8319 int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ member in struct:sqlite3
21490 int openFlags; /* The flags specified at open() */ member in struct:unixFile
25370 int openFlags = 0; /* Flags to pass to open() */ local
25448 if( isReadonly ) openFlags |= O_RDONLY;
25449 if( isReadWrite ) openFlags |= O_RDWR;
25450 if( isCreate ) openFlags |= O_CREAT;
25451 if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW);
25452 openFlags |= (O_LARGEFILE|O_BINARY);
25456 fd = open(zName, openFlags, openMode);
25457 OSTRACE4("OPENX %-3d %s 0%o\n", fd, zName, openFlags);
55527 static const int openFlags = local
[all...]

Completed in 462 milliseconds