Lines Matching refs:handler
76 OMXHANDLER handler = FindHandler(nIndex, true); in ComponentGetParameter() local
77 if (handler == NULL) { in ComponentGetParameter()
83 return (*handler)(this, pComponentParameterStructure); in ComponentGetParameter()
90 OMXHANDLER handler = FindHandler(nIndex, false); in ComponentSetParameter() local
91 if (handler == NULL) { in ComponentSetParameter()
97 return (*handler)(this, pComponentParameterStructure); in ComponentSetParameter()
104 OMXHANDLER handler = FindHandler(nIndex, true); in ComponentGetConfig() local
105 if (handler == NULL) { in ComponentGetConfig()
111 return (*handler)(this, pComponentConfigStructure); in ComponentGetConfig()
120 OMXHANDLER handler = FindHandler(nIndex, false); in ComponentSetConfig() local
121 if (handler == NULL) { in ComponentSetConfig()
128 ret = (*handler)(this, pComponentConfigStructure); in ComponentSetConfig()