/external/lzma/CPP/7zip/UI/Console/ |
OpenCallbackConsole.cpp | 33 if (!PasswordIsDefined)
36 PasswordIsDefined = true;
41 HRESULT COpenCallbackConsole::Open_GetPasswordIfAny(bool &passwordIsDefined, UString &password)
43 passwordIsDefined = PasswordIsDefined;
|
UpdateCallbackConsole.cpp | 212 HRESULT CUpdateCallbackConsole::CryptoGetTextPassword2(Int32 *passwordIsDefined, BSTR *password)
218 *passwordIsDefined = false;
223 if (!PasswordIsDefined)
228 PasswordIsDefined = true;
231 *passwordIsDefined = BoolToInt(PasswordIsDefined);
247 if (!PasswordIsDefined)
251 PasswordIsDefined = true;
|
Main.cpp | 664 ecs->PasswordIsDefined = options.PasswordEnabled;
674 openCallback.PasswordIsDefined = options.PasswordEnabled;
830 bool passwordIsDefined =
832 openCallback.PasswordIsDefined = passwordIsDefined;
840 callback.PasswordIsDefined = passwordIsDefined;
|
/external/lzma/CPP/7zip/ |
IPassword.h | 20 STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password) PURE;
|
/external/lzma/CPP/7zip/UI/Common/ |
UpdateCallback.h | 24 virtual HRESULT CryptoGetTextPassword2(Int32 *passwordIsDefined, BSTR *password) x; \
81 STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password);
|
ArchiveOpenCallback.h | 23 virtual HRESULT Open_GetPasswordIfAny(bool &passwordIsDefined, UString &password) x; \
|
Extract.cpp | 399 bool passwordIsDefined;
401 RINOK(openCallback->Open_GetPasswordIfAny(passwordIsDefined, password));
402 if (passwordIsDefined)
|
UpdateCallback.cpp | 562 STDMETHODIMP CArchiveUpdateCallback::CryptoGetTextPassword2(Int32 *passwordIsDefined, BSTR *password)
565 return Callback->CryptoGetTextPassword2(passwordIsDefined, password);
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zIn.h | 22 We don't need to init isEncrypted and passwordIsDefined
29 #define _7Z_DECODER_CRYPRO_VARS_DECL , ICryptoGetTextPassword *getTextPassword, bool &isEncrypted, bool &passwordIsDefined
30 #define _7Z_DECODER_CRYPRO_VARS , getTextPassword, isEncrypted, passwordIsDefined
|
7zHandlerOut.cpp | 537 methodMode.PasswordIsDefined = false;
542 Int32 passwordIsDefined;
543 RINOK(getPassword2->CryptoGetTextPassword2(&passwordIsDefined, &password));
544 methodMode.PasswordIsDefined = IntToBool(passwordIsDefined);
545 if (methodMode.PasswordIsDefined && (BSTR)password)
553 if (methodMode.PasswordIsDefined)
564 headerMethod.PasswordIsDefined = methodMode.PasswordIsDefined;
|
7zExtract.cpp | 214 bool passwordIsDefined = false;
|
7zDecode.cpp | 114 We don't need to init isEncrypted and passwordIsDefined
118 passwordIsDefined = false;
275 passwordIsDefined = true;
|
7zUpdate.cpp | 675 bool passwordIsDefined = false;
909 groups[GetGroupIndex(method.PasswordIsDefined, filteredGroup)].Indices.Add(i);
921 if (options.Method->PasswordIsDefined)
1045 if (!method.PasswordIsDefined)
1051 method.PasswordIsDefined = true;
1056 method.PasswordIsDefined = false;
[all...] |
/external/lzma/CPP/7zip/UI/Client7z/ |
Client7z.cpp | 141 bool PasswordIsDefined;
144 CArchiveOpenCallback() : PasswordIsDefined(false) {}
159 if (!PasswordIsDefined)
163 // PasswordIsDefined = true;
229 bool PasswordIsDefined;
232 CArchiveExtractCallback() : PasswordIsDefined(false) {}
452 if (!PasswordIsDefined)
456 // PasswordIsDefined = true;
503 STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password);
513 bool PasswordIsDefined;
[all...] |
/external/lzma/CPP/7zip/UI/FileManager/ |
ExtractCallback.cpp | 107 HRESULT CExtractCallbackImp::Open_GetPasswordIfAny(bool &passwordIsDefined, UString &password)
109 passwordIsDefined = PasswordIsDefined;
511 PasswordIsDefined = true;
519 if (!PasswordIsDefined)
530 PasswordIsDefined = true;
|