Home
last modified time | relevance | path

Searched refs:CreateDecoder (Results 1 – 8 of 8) sorted by relevance

/third_party/lzma/CPP/7zip/Compress/
DCodecExports.cpp71 || (encode ? !codec.CreateEncoder : !codec.CreateDecoder) in FindCodecClassId()
103 c = codec.CreateDecoder(); in CreateCoderMain()
131 if (encode ? !codec.CreateEncoder : !codec.CreateDecoder) in CreateCoder2()
151 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject);
152 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject) in CreateDecoder() function
211 if (codec.CreateDecoder) in GetMethodProperty()
220 value->boolVal = BoolToVARIANT_BOOL(codec.CreateDecoder != NULL); in GetMethodProperty()
/third_party/lzma/CPP/7zip/Common/
DCreateCoder.cpp171 if ((encode ? codec.CreateEncoder : codec.CreateDecoder) in FindMethod_Index()
211 if (codec.Id == methodId && (encode ? codec.CreateEncoder : codec.CreateDecoder)) in FindMethod_Index()
356 if (codec.CreateDecoder) in CreateCoder_Index()
358 void *p = codec.CreateDecoder(); in CreateCoder_Index()
402 …HRESULT res = __externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder, (void **)&cod.Cod… in CreateCoder_Index()
407 … return __externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressFilter, (void **)&filter); in CreateCoder_Index()
410 … return __externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder2, (void **)&cod.Coder2); in CreateCoder_Index()
DRegisterCodec.h14 CreateCodecP CreateDecoder; member
/third_party/lzma/CPP/7zip/UI/Common/
DLoadCodecs.h260 Func_CreateDecoder CreateDecoder; member
273 CreateDecoder(NULL), in CCodecLib()
402 STDMETHOD(CreateDecoder)(UInt32 index, const GUID *iid, void **coder);
DLoadCodecs.cpp283 MY_GET_FUNC (lib.CreateDecoder, Func_CreateDecoder, lib.Lib.GetProc("CreateDecoder")); in LoadCodecs()
950 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject);
1013 STDMETHODIMP CCodecs::CreateDecoder(UInt32 index, const GUID *iid, void **coder) in CreateDecoder() function in CCodecs
1017 return CreateDecoder(index, iid, coder); in CreateDecoder()
1025 if (lib.CreateDecoder) in CreateDecoder()
1026 return lib.CreateDecoder(ci.CodecIndex, iid, (void **)coder); in CreateDecoder()
1305 u.DecoderIsAssigned = (cod.CreateDecoder != NULL); in Get_CodecsInfoUser_Vector()
/third_party/lzma/CPP/7zip/Archive/
DArchive2.def11 CreateDecoder PRIVATE
/third_party/lzma/CPP/7zip/
DICoder.h342 STDMETHOD(CreateDecoder)(UInt32 index, const GUID *iid, void **coder) PURE;
/third_party/lzma/CPP/7zip/UI/Console/
DMain.cpp1057 so << (char)(cod.CreateDecoder ? 'D' : ' '); in Main2()