Lines Matching defs:openFlags

9150   int openFlags;                /* Flags passed to sqlite3_vfs.xOpen() */
24152 int openFlags; /* The flags specified at open() */
29096 int openFlags = 0; /* Flags to pass to open() */
29173 if( isReadonly ) openFlags |= O_RDONLY;
29174 if( isReadWrite ) openFlags |= O_RDWR;
29175 if( isCreate ) openFlags |= O_CREAT;
29176 if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW);
29177 openFlags |= (O_LARGEFILE|O_BINARY);
29187 fd = robust_open(zName, openFlags, openMode);
29188 OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags));
29192 openFlags &= ~(O_RDWR|O_CREAT);
29194 openFlags |= O_RDONLY;
29196 fd = robust_open(zName, openFlags, openMode);
29219 p->openFlags = openFlags;
29894 int openFlags = O_RDWR | O_CREAT;
29905 pUnused = findReusableFd(path, openFlags);
29915 fd = robust_open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
29919 fd = robust_open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
29924 openFlags = O_RDONLY;
29925 fd = robust_open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
29948 pNew->openFlags = openFlags;
29953 pUnused->flags = openFlags;
30065 conchFile->openFlags = O_RDWR | O_CREAT;
30240 if( (conchFile->openFlags&O_RDWR) == 0 ){
30318 if( rc==SQLITE_OK && pFile->openFlags ){
30323 int fd = robust_open(pCtx->dbPath, pFile->openFlags,
30539 if( rc==SQLITE_CANTOPEN && ((pFile->openFlags&O_RDWR) == 0) ){
30543 ** that openFlags will have only one of O_RDONLY or O_RDWR.
46614 u8 openFlags; /* Flags to sqlite3BtreeOpen() */
48948 pBt->openFlags = (u8)flags;
54155 assert( (pBt->openFlags & BTREE_SINGLE)==0 || pgnoRoot==2 );
76171 db->openFlags | SQLITE_OPEN_MAIN_DB);
109181 db->openFlags = flags;