Home
last modified time | relevance | path

Searched refs:aKvpValue (Results 1 – 2 of 2) sorted by relevance

/external/opencore/engines/player/src/
Dpv_player_engine.cpp16576 PVMFStatus PVPlayerEngine:: VerifyAndSaveKVPValues(PvmiKvp *aKvpValue) in VerifyAndSaveKVPValues() argument
16581 oscl_memcpy(KvpCapNConfig, aKvpValue, sizeof(PvmiKvp)); in VerifyAndSaveKVPValues()
16584 KvpCapNConfig->key = (char*)OSCL_MALLOC(oscl_strlen(aKvpValue->key) + 1); in VerifyAndSaveKVPValues()
16586 oscl_strncpy(KvpCapNConfig->key, aKvpValue->key, oscl_strlen(aKvpValue->key) + 1); in VerifyAndSaveKVPValues()
16591 if (oscl_strstr(aKvpValue->key, _STRLIT_CHAR("valtype=wchar*")) != NULL) in VerifyAndSaveKVPValues()
16593 …KvpCapNConfig->value.pWChar_value = (oscl_wchar*)OSCL_MALLOC((oscl_strlen(aKvpValue->value.pWChar_… in VerifyAndSaveKVPValues()
16595 …oscl_strncpy(KvpCapNConfig->value.pWChar_value, aKvpValue->value.pWChar_value, oscl_strlen(aKvpVal… in VerifyAndSaveKVPValues()
16598 else if (oscl_strstr(aKvpValue->key, _STRLIT_CHAR("valtype=char*")) != NULL) in VerifyAndSaveKVPValues()
16600 …KvpCapNConfig->value.pChar_value = (char*)OSCL_MALLOC(oscl_strlen(aKvpValue->value.pChar_value) + … in VerifyAndSaveKVPValues()
16602 …oscl_strncpy(KvpCapNConfig->value.pChar_value, aKvpValue->value.pChar_value, oscl_strlen(aKvpValue in VerifyAndSaveKVPValues()
[all …]
Dpv_player_engine.h1433 PVMFStatus VerifyAndSaveKVPValues(PvmiKvp *aKvpValue);