Home | History | Annotate | Download | only in dist

Lines Matching full:openflags

8929   int openFlags;                /* Flags passed to sqlite3_vfs.xOpen() */
23000 int openFlags; /* The flags specified at open() */
27585 int openFlags = 0; /* Flags to pass to open() */
27669 if( isReadonly ) openFlags |= O_RDONLY;
27670 if( isReadWrite ) openFlags |= O_RDWR;
27671 if( isCreate ) openFlags |= O_CREAT;
27672 if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW);
27673 openFlags |= (O_LARGEFILE|O_BINARY);
27683 fd = open(zName, openFlags, openMode);
27684 OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags));
27688 openFlags &= ~(O_RDWR|O_CREAT);
27690 openFlags |= O_RDONLY;
27691 fd = open(zName, openFlags, openMode);
27717 p->openFlags = openFlags;
28408 int openFlags = O_RDWR | O_CREAT;
28419 pUnused = findReusableFd(path, openFlags);
28429 fd = open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
28433 fd = open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
28438 openFlags = O_RDONLY;
28439 fd = open(path, openFlags, SQLITE_DEFAULT_FILE_PERMISSIONS);
28462 pNew->openFlags = openFlags;
28465 pUnused->flags = openFlags;
28575 conchFile->openFlags = O_RDWR | O_CREAT;
28750 if( (conchFile->openFlags&O_RDWR) == 0 ){
28829 if( rc==SQLITE_OK && pFile->openFlags ){
28841 int fd = open(pCtx->dbPath, pFile->openFlags,
29057 if( rc==SQLITE_CANTOPEN && ((pFile->openFlags&O_RDWR) == 0) ){
29061 ** that openFlags will have only one of O_RDONLY or O_RDWR.
44781 u8 openFlags; /* Flags to sqlite3BtreeOpen() */
47191 pBt->openFlags = (u8)flags;
52392 assert( (pBt->openFlags & BTREE_SINGLE)==0 || pgnoRoot==2 );
74186 openFlags | SQLITE_OPEN_MAIN_DB);
106668 db->openFlags = flags;