Lines Matching refs:Flags
142 static osl_TStamp closeFileImpl(osl_TFile* pFile, oslProfileOption Flags);
172 …ic oslProfile SAL_CALL osl_psz_openProfile(const sal_Char *pszProfileName, oslProfileOption Flags);
191 …tic oslProfile SAL_CALL osl_psz_openProfile(const sal_Char *pszProfileName, oslProfileOption Flags) in osl_psz_openProfile() argument
205 Flags=osl_Profile_FLUSHWRITE; in osl_psz_openProfile()
208 if ( Flags == osl_Profile_DEFAULT ) in osl_psz_openProfile()
212 if ( Flags & osl_Profile_SYSTEM ) in osl_psz_openProfile()
216 if ( Flags & osl_Profile_READLOCK ) in osl_psz_openProfile()
220 if ( Flags & osl_Profile_WRITELOCK ) in osl_psz_openProfile()
224 if ( Flags & osl_Profile_FLUSHWRITE ) in osl_psz_openProfile()
231 if ( ( pFile = openFileImpl(pszProfileName, Flags ) ) == NULL ) in osl_psz_openProfile()
247 pProfile->m_Flags = Flags & FLG_USER; in osl_psz_openProfile()
249 if ( Flags & ( osl_Profile_READLOCK | osl_Profile_WRITELOCK | osl_Profile_FLUSHWRITE ) ) in osl_psz_openProfile()
1221 int Flags; in openFileImpl() local
1260 if ((Flags = fcntl(pFile->m_Handle, F_GETFD, 0)) != -1) in openFileImpl()
1262 Flags |= FD_CLOEXEC; in openFileImpl()
1263 fcntl(pFile->m_Handle, F_SETFD, Flags); in openFileImpl()
1284 static osl_TStamp closeFileImpl(osl_TFile* pFile, oslProfileOption Flags) in closeFileImpl() argument
1304 if ( Flags & (osl_Profile_WRITELOCK | osl_Profile_WRITELOCK ) ) in closeFileImpl()