Lines Matching refs:portIndex

75     OMX_U32 portIndex;
80 portIndex = ((OMX_PARAM_PORTDEFINITIONTYPE *)params)->nPortIndex;
86 portIndex = ((OMX_AUDIO_PARAM_PCMMODETYPE *)params)->nPortIndex;
92 portIndex = ((OMX_AUDIO_PARAM_AACPROFILETYPE *)params)->nPortIndex;
100 CHECK(portIndex < mPorts.size());
102 return !mPorts.itemAt(portIndex).mDef.bEnabled;
187 OMX_U32 portIndex,
192 CHECK_LT(portIndex, mPorts.size());
213 (*header)->nOutputPortIndex = portIndex;
214 (*header)->nInputPortIndex = portIndex;
216 PortInfo *port = &mPorts.editItemAt(portIndex);
240 OMX_U32 portIndex,
246 useBuffer(header, portIndex, appPrivate, size, ptr);
262 OMX_U32 portIndex,
266 CHECK_LT(portIndex, mPorts.size());
268 PortInfo *port = &mPorts.editItemAt(portIndex);
358 size_t portIndex = (kWhatEmptyThisBuffer == msgType)?
360 PortInfo *port = &mPorts.editItemAt(portIndex);
375 onQueueFilled(portIndex);
453 void SimpleSoftOMXComponent::onPortEnable(OMX_U32 portIndex, bool enable) {
454 CHECK_LT(portIndex, mPorts.size());
456 PortInfo *port = &mPorts.editItemAt(portIndex);
488 OMX_U32 portIndex, bool sendFlushComplete) {
489 if (portIndex == OMX_ALL) {
501 CHECK_LT(portIndex, mPorts.size());
503 PortInfo *port = &mPorts.editItemAt(portIndex);
531 notify(OMX_EventCmdComplete, OMX_CommandFlush, portIndex, NULL);
533 onPortFlushCompleted(portIndex);
623 void SimpleSoftOMXComponent::onQueueFilled(OMX_U32 portIndex) {
626 void SimpleSoftOMXComponent::onPortFlushCompleted(OMX_U32 portIndex) {
630 OMX_U32 portIndex, bool enabled) {
634 SimpleSoftOMXComponent::getPortQueue(OMX_U32 portIndex) {
635 CHECK_LT(portIndex, mPorts.size());
636 return mPorts.editItemAt(portIndex).mQueue;
640 OMX_U32 portIndex) {
641 CHECK_LT(portIndex, mPorts.size());
642 return &mPorts.editItemAt(portIndex);