Lines Matching refs:serviceImpl
28 static int32_t SerStubGetComponentNum(struct CodecComponentManager *serviceImpl, struct HdfSBuf *data,
31 if (serviceImpl == NULL) {
35 int32_t num = serviceImpl->GetComponentNum();
43 static int32_t SerStubGetComponentCapablityList(struct CodecComponentManager *serviceImpl, struct HdfSBuf *data,
46 if (serviceImpl == NULL) {
57 if (count > serviceImpl->GetComponentNum()) {
66 err = serviceImpl->GetComponentCapabilityList(caps, count);
109 static int32_t SerStubCreateComponent(struct CodecComponentManager *serviceImpl, struct HdfSBuf *data,
112 if (serviceImpl == NULL) {
131 ret = serviceImpl->CreateComponent(&component, &componentId, compName, appData, callback);
163 static int32_t SerStubDestroyComponent(struct CodecComponentManager *serviceImpl, struct HdfSBuf *data,
166 if (serviceImpl == NULL) {
175 int32_t ret = serviceImpl->DestroyComponent(componentId);
185 static int32_t CodecComponentManagerServiceOnRemoteRequest(struct CodecComponentManager *serviceImpl, int32_t cmdId,
190 return SerStubGetComponentNum(serviceImpl, data, reply);
192 return SerStubGetComponentCapablityList(serviceImpl, data, reply);
194 return SerStubCreateComponent(serviceImpl, data, reply);
196 return SerStubDestroyComponent(serviceImpl, data, reply);