Searched refs:CreateDecoder (Results 1 - 7 of 7) sorted by relevance
/third_party/lzma/CPP/7zip/Compress/ |
H A D | CodecExports.cpp | 73 || (encode ? !codec.CreateEncoder : !codec.CreateDecoder)
in FindCodecClassId() 105 c = codec.CreateDecoder();
in CreateCoderMain() 133 if (encode ? !codec.CreateEncoder : !codec.CreateDecoder)
in CreateCoder2() 153 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject);
154 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject)
in CreateDecoder() function 213 if (codec.CreateDecoder)
in GetMethodProperty() 222 value->boolVal = BoolToVARIANT_BOOL(codec.CreateDecoder != NULL);
in GetMethodProperty()
|
/third_party/lzma/CPP/7zip/Common/ |
H A D | CreateCoder.cpp | 172 if ((encode ? codec.CreateEncoder : codec.CreateDecoder)
in FindMethod_Index() 214 if (codec.Id == methodId && (encode ? codec.CreateEncoder : codec.CreateDecoder))
in FindMethod_Index() 359 if (codec.CreateDecoder)
in CreateCoder_Index() 361 void *p = codec.CreateDecoder();
in CreateCoder_Index() 405 const HRESULT res = _externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder, (void **)&cod.Coder);
in CreateCoder_Index() 410 return _externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressFilter, (void **)&filter);
in CreateCoder_Index() 413 return _externalCodecs->GetCodecs->CreateDecoder(i, &IID_ICompressCoder2, (void **)&cod.Coder2);
in CreateCoder_Index()
|
H A D | RegisterCodec.h | 14 CreateCodecP CreateDecoder;
member
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | LoadCodecs.cpp | 277 MY_GET_FUNC (lib.CreateDecoder, Func_CreateDecoder, lib.Lib, "CreateDecoder")
in LoadCodecs() 952 STDAPI CreateDecoder(UInt32 index, const GUID *iid, void **outObject);
1015 Z7_COM7F_IMF(CCodecs::CreateDecoder(UInt32 index, const GUID *iid, void **coder))
in CreateDecoder() function 1019 return CreateDecoder(index, iid, coder);
in CreateDecoder() 1027 if (lib.CreateDecoder)
in CreateDecoder() 1028 return lib.CreateDecoder(ci.CodecIndex, iid, (void **)coder);
in CreateDecoder() 1307 u.DecoderIsAssigned = (cod.CreateDecoder != NULL);
in Get_CodecsInfoUser_Vector()
|
H A D | LoadCodecs.h | 244 Func_CreateDecoder CreateDecoder;
member 262 CreateDecoder(NULL),
in CCodecLib()
|
/third_party/lzma/CPP/7zip/ |
H A D | ICoder.h | 368 x(CreateDecoder(UInt32 index, const GUID *iid, void* *coder)) \
|
/third_party/lzma/CPP/7zip/UI/Console/ |
H A D | Main.cpp | 1135 so << (char)(cod.CreateDecoder ? 'D' : ' ');
|
Completed in 7 milliseconds