Searched defs:phInstance (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Eq/src/
H A DLVEQNB_Init.c176 /* LVEQNB_NULLADDRESS When pCapabilities or pMemoryTableis or phInstance are NULL */
187 LVEQNB_ReturnStatus_en LVEQNB_Init(LVEQNB_Handle_t *phInstance, argument
200 if((phInstance == LVM_NULL) || (pMemoryTable == LVM_NULL) || (pCapabilities == LVM_NULL))
225 if (*phInstance == LVM_NULL)
227 *phInstance = InstAlloc_AddMember(&AllocMem, sizeof(LVEQNB_Instance_t));
229 pInstance =(LVEQNB_Instance_t *)*phInstance;
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_Init.c149 LVCS_ReturnStatus_en LVCS_Init(LVCS_Handle_t *phInstance, argument
161 if (*phInstance == LVM_NULL)
163 *phInstance = (LVCS_Handle_t)pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].pBaseAddress;
165 pInstance =(LVCS_Instance_t *)*phInstance;
/frameworks/av/media/libeffects/lvm/lib/Bass/src/
H A DLVDBE_Init.c148 LVDBE_ReturnStatus_en LVDBE_Init(LVDBE_Handle_t *phInstance, argument
163 if (*phInstance == LVM_NULL)
165 *phInstance = (LVDBE_Handle_t)pMemoryTable->Region[LVDBE_MEMREGION_INSTANCE].pBaseAddress;
167 pInstance =(LVDBE_Instance_t *)*phInstance;
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_GetInstanceHandle.c33 /* instance handle through phInstance. All parameters are set to their default, */
37 /* phInstance pointer to the instance handle */
43 /* LVREV_NULLADDRESS When phInstance or pMemoryTable or pInstanceParams is NULL */
49 LVREV_ReturnStatus_en LVREV_GetInstanceHandle(LVREV_Handle_t *phInstance, argument
67 if((phInstance == LVM_NULL) || (pMemoryTable == LVM_NULL) || (pInstanceParams == LVM_NULL))
119 if (*phInstance == LVM_NULL)
121 *phInstance = InstAlloc_AddMember(&SlowData, sizeof(LVREV_Instance_st));
123 pLVREV_Private =(LVREV_Instance_st *)*phInstance;
317 LVREV_ClearAudioBuffers(*phInstance);
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Init.c31 /* phInstance Pointer to pointer to the instance */
42 LVPSA_RETURN LVPSA_Init ( pLVPSA_Handle_t *phInstance, argument
60 if((phInstance == LVM_NULL) || (pInitParams == LVM_NULL) || (pControlParams == LVM_NULL) || (pMemoryTable == LVM_NULL))
95 if (*phInstance == LVM_NULL)
97 *phInstance = InstAlloc_AddMember( &Instance, sizeof(LVPSA_InstancePr_t) );
99 pLVPSA_Inst =(LVPSA_InstancePr_t*)*phInstance;
173 errorCode = LVPSA_Control (*phInstance, pControlParams);
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Init.c406 /* handle through phInstance. All parameters are set to their default, inactive state. */
409 /* phInstance pointer to the instance handle */
416 /* LVM_NULLADDRESS When one of phInstance, pMemoryTable or pInstParams are NULL*/
423 LVM_ReturnStatus_en LVM_GetInstanceHandle(LVM_Handle_t *phInstance, argument
439 if ((phInstance == LVM_NULL) || (pMemoryTable == LVM_NULL) || (pInstParams == LVM_NULL))
502 *phInstance = (LVM_Handle_t)InstAlloc_AddMember(&AllocMem[LVM_MEMREGION_PERSISTENT_SLOW_DATA],
504 pInstance =(LVM_Instance_t *)*phInstance;

Completed in 116 milliseconds