Home | History | Annotate | Download | only in src

Lines Matching refs:kvp

2245             // Allocate memory for the KVP list
2249 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVAuthorEngine::DoCapConfigGetParametersSync() Memory allocation for KVP failed"));
2253 // Allocate memory for the key strings in each KVP
2262 // Assign the key string buffer to each KVP
2337 // Allocate memory for the KVP list
2341 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVAuthorEngine::DoCapConfigGetParametersSync() Memory allocation for KVP failed"));
2345 // Allocate memory for the key strings in each KVP
2354 // Assign the key string buffer to each KVP
2479 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVAuthorEngine::DoCapConfigReleaseParameters() KVP list is NULL or number of elements is 0"));
2502 // Go through each KVP and release memory for value if allocated from heap
2720 // Allocate memory for the KVP
2724 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVAuthorEngine::DoGetAuthorParameter() Memory allocation for KVP failed"));
2728 // Allocate memory for the key string in KVP
2737 // Assign the key string buffer to KVP
2832 // Allocate memory for the KVP
2836 PVLOGGER_LOGMSG(PVLOGMSG_INST_HLDBG, iLogger, PVLOGMSG_ERR, (0, "PVAuthorEngine::DoGetAuthorProductInfoParameter() Memory allocation for KVP failed"));
2840 // Allocate memory for the key string in KVP
2849 // Assign the key string buffer to KVP
2922 // Create the kvp for the Authoring clock
2924 PvmiKvp kvp;
2925 kvp.key = NULL;
2926 kvp.length = oscl_strlen(PVMF_AUTHORING_CLOCK_KEY) + 1; // +1 for \0
2927 kvp.key = (PvmiKeyType)alloc.ALLOCATE(kvp.length);
2928 if (kvp.key == NULL)
2932 oscl_strncpy(kvp.key, PVMF_AUTHORING_CLOCK_KEY, kvp.length);
2935 kvp.value.key_specific_value = NULL;
2939 kvp.value.key_specific_value = (OsclAny*)(&iAuthorClock);
2941 kvp.capacity = 1;
2955 dataSrcCapConfig->setParametersSync(NULL, &kvp, 1, retKvp);
2967 alloc.deallocate((OsclAny*)(kvp.key));