Lines Matching refs:notify

222     sp<AMessage> notify = mNotify->dup();
223 notify->setInt32("what", CodecBase::kWhatError);
224 notify->setInt32("err", error);
225 notify->post();
264 sp<AMessage> notify = mNotify->dup();
265 notify->setInt32("what", CodecBase::kWhatBuffersAllocated);
267 notify->setInt32("portIndex", portIndex);
277 notify->setObject("portDesc", desc);
278 notify->post();
312 sp<AMessage> notify = mNotify->dup();
313 notify->setInt32("what", CodecBase::kWhatFillThisBuffer);
314 notify->setInt32("buffer-id", info->mBufferID);
317 notify->setBuffer("buffer", info->mData);
322 notify->setMessage("reply", reply);
325 notify->post();
333 sp<AMessage> notify = mNotify->dup();
334 notify->setInt32("what", CodecBase::kWhatDrainThisBuffer);
335 notify->setInt32("buffer-id", info->mBufferID);
336 notify->setInt32("flags", info->mOutputFlags);
337 notify->setBuffer("buffer", info->mData);
342 notify->setMessage("reply", reply);
344 notify->post();
350 sp<AMessage> notify = mNotify->dup();
351 notify->setInt32("what", CodecBase::kWhatEOS);
352 notify->setInt32("err", ERROR_END_OF_STREAM);
353 notify->post();
359 sp<AMessage> notify = mNotify->dup();
361 notify->setInt32("what", kWhatOutputFormatChanged);
365 notify->setString("mime", mime.c_str());
367 notify->setInt32("stride", mStride);
368 notify->setInt32("slice-height", mSliceHeight);
369 notify->setInt32("color-format", mColorFormatOut);
370 notify->setRect("crop", 0, 0, mStride - 1, mSliceHeight - 1);
371 notify->setInt32("width", mWidth);
372 notify->setInt32("height", mHeight);
374 notify->post();
398 // TODO notify caller of queueInput error when it is supported
462 sp<AMessage> notify = mNotify->dup();
463 notify->setInt32("what", kWhatComponentAllocated);
465 notify->setString("componentName", "OMX.google.MediaFilter");
466 notify->post();
543 sp<AMessage> notify = mNotify->dup();
544 notify->setInt32("what", kWhatComponentConfigured);
545 notify->setString("componentName", "MediaFilter");
546 notify->setMessage("input-format", mInputFormat);
547 notify->setMessage("output-format", mOutputFormat);
548 notify->post();
691 sp<AMessage> notify = mNotify->dup();
692 notify->setInt32("what", CodecBase::kWhatShutdownCompleted);
693 notify->post();
715 sp<AMessage> notify = mNotify->dup();
716 notify->setInt32("what", CodecBase::kWhatFlushCompleted);
717 notify->post();
738 sp<AMessage> notify = new AMessage();
739 notify->setTarget(this);
741 notify, mStride, mSliceHeight, kBufferCountActual);
816 sp<AMessage> notify = mNotify->dup();
817 notify->setInt32("what", CodecBase::kWhatSignaledInputEOS);
818 notify->post();