Searched refs:mapNodes (Results 1 - 8 of 8) sorted by relevance

/packages/apps/OMA-DM/engine/dmlib/api/native/
H A DdmtTree.hpp325 * \param mapNodes [out] - map with leaf nodes only
354 virtual SYNCML_DM_RET_STATUS_T GetChildValuesMap(CPCHAR path, DMMap<DMString, DmtData>& mapNodes ) = 0;
365 * \param mapNodes [in] - map with leaf nodes only
382 virtual SYNCML_DM_RET_STATUS_T SetChildValuesMap(CPCHAR path, const DMMap<DMString, DmtData>& mapNodes ) = 0;
391 * \param mapNodes [out] - map with leaf nodes only
398 virtual SYNCML_DM_RET_STATUS_T GetChildNodeNames(CPCHAR path, DMStringVector& mapNodes ) = 0;
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native/hdr/
H A DdmtTreeImpl.hpp52 virtual SYNCML_DM_RET_STATUS_T GetChildValuesMap( CPCHAR path, DMMap<DMString, DmtData>& mapNodes ) ;
54 virtual SYNCML_DM_RET_STATUS_T SetChildValuesMap( CPCHAR path, const DMMap<DMString, DmtData>& mapNodes );
56 virtual SYNCML_DM_RET_STATUS_T GetChildNodeNames( CPCHAR path, DMStringVector& mapNodes ) ;
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_tnm/hdr/
H A Ddm_tree_util.h38 const DMMap<DMString, DmtData>& mapNodes,
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_tnm/src/
H A Ddm_tree_util.cc378 * @param mapNodes, the GET data map
382 SYNCML_DM_RET_STATUS_T dmConvertDataMap(CPCHAR path, const DMMap<DMString, DmtData>& mapNodes, DMMap<DMString, UINT32>& newChildrenMap) argument
387 for ( DMMap<DMString, DmtData>::POS it = mapNodes.begin(); it != mapNodes.end(); it++ )
391 strChildPath += mapNodes.get_key( it );
399 res = pData->set(strChildPath,mapNodes.get_value( it ),"text/plain");
405 newChildrenMap.put(mapNodes.get_key( it ), (UINT32)pData);
/packages/apps/OMA-DM/engine/dmlib/api/native/plugin/
H A DdmtPlugin.hpp394 * \param mapNodes [out] - vector with child nodes
402 DMStringVector& mapNodes );
613 * \param mapNodes [out] - map with leaf nodes only
622 DMMap<DMString, DmtData>& mapNodes );
632 * \param mapNodes [in] - map with leaf nodes only
641 const DMMap<DMString, DmtData>& mapNodes );
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
H A DdmtTree.cc315 SYNCML_DM_RET_STATUS_T DmtTreeImpl::GetChildValuesMap( CPCHAR path, DMMap<DMString, DmtData>& mapNodes )
317 mapNodes.clear();
358 mapNodes.put( nodeName, data );
372 * @param mapNodes the new set of leaf children
375 SYNCML_DM_RET_STATUS_T DmtTreeImpl::SetChildValuesMap( CPCHAR path, const DMMap<DMString, DmtData>& mapNodes )
402 dm_stat = dmConvertDataMap(strFullPath.c_str(), mapNodes, newChildrenMap);
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native_async/src/
H A DdmtAsyncAPI.cc464 DMStringVector mapNodes; local
477 nodeStruct.nStatusCode = pTree->GetChildNodeNames(pMessage->pMsg->path, mapNodes);
480 INT32 size = mapNodes.size();
489 DMString & str = mapNodes[index];
552 DMMap<DMString, DmtData> mapNodes; local
564 nodeStruct.nStatusCode = pTree->GetChildValuesMap(pMessage->pMsg->path, mapNodes);
568 INT32 size = mapNodes.size();
582 nodeStruct.data.num_children = mapNodes.size();
583 for (int POS=mapNodes.begin(); POS<mapNodes
[all...]
/packages/apps/OMA-DM/engine/dmlib/plugin/src/
H A DdmtPlugin.cc307 DMMap<DMString, DmtData>& mapNodes )
313 const DMMap<DMString, DmtData>& mapNodes )

Completed in 116 milliseconds