Home
last modified time | relevance | path

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

/third_party/lzma/CPP/Windows/
DFileIO.cpp518 static inline DWORD GetCreationDisposition(bool createAlways) in GetCreationDisposition() argument
519 { return createAlways? CREATE_ALWAYS: CREATE_NEW; } in GetCreationDisposition()
527 bool COutFile::Create(CFSTR fileName, bool createAlways) in Create() argument
528 { return Open(fileName, GetCreationDisposition(createAlways)); } in Create()
801 bool COutFile::Create(const char *name, bool createAlways) in Create() argument
804 if (createAlways) in Create()
DFileIO.h259 bool Create(CFSTR fileName, bool createAlways);
348 bool Create(const char *name, bool createAlways);
/third_party/lzma/CPP/7zip/Common/
DFileStreams.h130 bool Create(CFSTR fileName, bool createAlways) in Create() argument
133 return File.Create(fileName, createAlways); in Create()