Home
last modified time | relevance | path

Searched refs:createAlways (Results 1 – 5 of 5) sorted by relevance

/external/lzma/CPP/Common/
DC_FileIO.cpp71 bool COutFile::Create(const char *name, bool createAlways) in Create() argument
73 if (createAlways) in Create()
DC_FileIO.h46 bool Create(const char *name, bool createAlways);
/external/lzma/CPP/Windows/
DFileIO.cpp371 static inline DWORD GetCreationDisposition(bool createAlways) in GetCreationDisposition() argument
372 { return createAlways? CREATE_ALWAYS: CREATE_NEW; } in GetCreationDisposition()
380 bool COutFile::Create(CFSTR fileName, bool createAlways) in Create() argument
381 { return Open(fileName, GetCreationDisposition(createAlways)); } in Create()
DFileIO.h199 bool Create(CFSTR fileName, bool createAlways);
/external/lzma/CPP/7zip/Common/
DFileStreams.h119 bool Create(CFSTR fileName, bool createAlways) in Create() argument
122 return File.Create(fileName, createAlways); in Create()