Lines Matching refs:m_grallocInterface
580 m_grallocInterface.CreateDescriptor = reinterpret_cast<GRALLOC1_PFN_CREATE_DESCRIPTOR>( in NativeBufferInterface()
583 m_grallocInterface.DestroyDescriptor = reinterpret_cast<GRALLOC1_PFN_DESTROY_DESCRIPTOR>( in NativeBufferInterface()
586 m_grallocInterface.SetDimensions = reinterpret_cast<GRALLOC1_PFN_SET_DIMENSIONS>( in NativeBufferInterface()
589 m_grallocInterface.SetFormat = reinterpret_cast<GRALLOC1_PFN_SET_FORMAT>( in NativeBufferInterface()
592 m_grallocInterface.SetLayerCount = reinterpret_cast<GRALLOC1_PFN_SET_LAYER_COUNT>( in NativeBufferInterface()
595 m_grallocInterface.SetProducerUsage = reinterpret_cast<GRALLOC1_PFN_SET_PRODUCER_USAGE>( in NativeBufferInterface()
598 m_grallocInterface.SetConsumerUsage = reinterpret_cast<GRALLOC1_PFN_SET_CONSUMER_USAGE>( in NativeBufferInterface()
601 m_grallocInterface.Allocate = reinterpret_cast<GRALLOC1_PFN_ALLOCATE>( in NativeBufferInterface()
604 m_grallocInterface.GetStride = reinterpret_cast<GRALLOC1_PFN_GET_STRIDE>( in NativeBufferInterface()
607 m_grallocInterface.Release = reinterpret_cast<GRALLOC1_PFN_RELEASE>( in NativeBufferInterface()
610 m_grallocInterface.Lock = reinterpret_cast<GRALLOC1_PFN_LOCK>( in NativeBufferInterface()
646 if (!(res = m_grallocInterface.CreateDescriptor(m_pGralloc1Device, &desc))) { in GetGrallocBufferStride()
647 m_grallocInterface.SetDimensions(m_pGralloc1Device, desc, width, height); in GetGrallocBufferStride()
648 m_grallocInterface.SetFormat(m_pGralloc1Device,desc, HAL_PIXEL_FORMAT_RAW10); in GetGrallocBufferStride()
649 m_grallocInterface.SetLayerCount(m_pGralloc1Device,desc, 1); in GetGrallocBufferStride()
650 if (!(res = m_grallocInterface.Allocate(m_pGralloc1Device, 1, &desc, &temp_mem))) { in GetGrallocBufferStride()
651 m_grallocInterface.GetStride(m_pGralloc1Device, in GetGrallocBufferStride()
655 m_grallocInterface.Release(m_pGralloc1Device, temp_mem); in GetGrallocBufferStride()
661 m_grallocInterface.DestroyDescriptor(m_pGralloc1Device, desc); in GetGrallocBufferStride()