Lines Matching refs:openFlags

9452   unsigned int openFlags;       /* Flags passed to sqlite3_vfs.xOpen() */  member
24592 int openFlags; /* The flags specified at open() */
29518 int openFlags = 0; /* Flags to pass to open() */
29605 if( isReadonly ) openFlags |= O_RDONLY;
29606 if( isReadWrite ) openFlags |= O_RDWR;
29607 if( isCreate ) openFlags |= O_CREAT;
29608 if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW);
29609 openFlags |= (O_LARGEFILE|O_BINARY);
29619 fd = robust_open(zName, openFlags, openMode);
29620 OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags));
29624 openFlags &= ~(O_RDWR|O_CREAT);
29626 openFlags |= O_RDONLY;
29628 fd = robust_open(zName, openFlags, openMode);
29654 p->openFlags = openFlags;
30327 int openFlags = O_RDWR | O_CREAT;
30338 pUnused = findReusableFd(path, openFlags);
30348 fd = robust_open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
30352 fd = robust_open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
30357 openFlags = O_RDONLY;
30358 fd = robust_open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
30381 pNew->openFlags = openFlags;
30386 pUnused->flags = openFlags;
30500 conchFile->openFlags = O_RDWR | O_CREAT;
30676 if( (conchFile->openFlags&O_RDWR) == 0 ){
30754 if( rc==SQLITE_OK && pFile->openFlags ){
30760 fd = robust_open(pCtx->dbPath, pFile->openFlags,
30976 if( rc==SQLITE_CANTOPEN && ((pFile->openFlags&O_RDWR) == 0) ){
47754 u8 openFlags; /* Flags to sqlite3BtreeOpen() */
50099 pBt->openFlags = (u8)flags;
55333 assert( (pBt->openFlags & BTREE_SINGLE)==0 || pgnoRoot==2 );
78457 flags = db->openFlags;
112320 db->openFlags = flags;