HomeSort by relevance Sort by last modified time
    Searched refs:oChildren (Results 1 - 11 of 11) sorted by null

  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/plugins/testdataplugin/src/
plugin_dll_test_data.cc 115 DMStringVector oChildren;
118 oChildren, //DMStringVector oVector,
124 pNode->Init(pMyTree, pName, oChildren);
151 DMStringVector oChildren;
153 pNode->Init(pMyTree, pName, oChildren);
  /packages/apps/OMA-DM/engine/dmlib/plugin/src/
dmtRWPlugin.cc 191 DMVector<PDmtNode> oChildren;
192 dm_stat = ptrNode->GetChildNodes( oChildren );
196 for ( int i = 0; i < oChildren.size(); i++ )
198 if (oChildren[i]->IsLeaf() )
200 dm_stat = oChildren[i]->GetPath(nodePath);
204 oChildren[i] = NULL;
208 dm_stat =DeleteSubTree(oChildren[i]);
258 DMStringVector oChildren;
259 dm_stat = this->GetChildNodeNames(strURI.c_str(), oChildren);
266 for (INT32 i = 0; i < oChildren.size(); i++
    [all...]
SyncML_PlugIn_WBXMLLog.cc 402 DMVector<PDmtNode> oChildren;
434 ret_code = ptrTempNode->GetChildNodes( oChildren );
436 for (i = 0; i < oChildren.size(); i++ )
438 ret_code = oChildren[i]->GetPath(nodePath);
445 (const DmtNode*)oChildren[i]);
894 DMStringVector oChildren;
895 DmStrToStringVector((CPCHAR)props->m_oData.getBuffer(),props->m_oData.getSize(), oChildren, '/');
897 dm_stat = ((DmtRWPluginTree *)this->pluginTree)->CreateInteriorNodeInternal(pbURI, ptrDmtNode, oChildren);
    [all...]
dmtPlugin.cc 651 SYNCML_DM_RET_STATUS_T DmtPluginNode::GetChildNodes( DMVector<PDmtNode>& oChildren ) const
655 oChildren.clear(); // remove all previous items from array
686 oChildren.push_back( ptrNode );
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/src/
dmMetaDataNode.cc 160 DMMetaDataNode oChildren;
163 ret_status = oChildren.Read(oBuffer,TRUE);
167 m_bOPiDataParent = oChildren.m_bStoresPD;
168 pConstraints = oChildren.GetConstraints();
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/hdr/
dmtNodeImpl.hpp 53 virtual SYNCML_DM_RET_STATUS_T GetChildNodes( DMVector<PDmtNode>& oChildren ) const;
65 SYNCML_DM_RET_STATUS_T GetChildNodes( DMVector<PDmtNode>& oChildren, DMStringVector& oChildNames ) const;
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmtTree.cc 328 DMVector<PDmtNode> oChildren;
330 dm_stat = ptrNode->GetChildNodes( oChildren );
334 for ( INT32 i = 0; i < oChildren.size(); i++ )
336 if ( !oChildren[i]->IsLeaf() )
341 if (oChildren[i]->IsExternalStorageNode() )
347 dm_stat = oChildren[i]->GetValue( data );
354 dm_stat = oChildren[i]->GetNodeName(nodeName);
422 DMVector<PDmtNode> oChildren;
424 return ((DmtNodeImpl*)ptrNode.GetPtr())->GetChildNodes(oChildren, aNodes );
dmtNode.cc 197 SYNCML_DM_RET_STATUS_T DmtNodeImpl::GetChildNodes( DMVector<PDmtNode>& oChildren ) const
200 return GetChildNodes( oChildren, aChildren );
203 SYNCML_DM_RET_STATUS_T DmtNodeImpl::GetChildNodes( DMVector<PDmtNode>& oChildren, DMStringVector& aChildren ) const
208 oChildren.clear(); // remove all previous items from array
238 oChildren.push_back( ptrNode );
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/plugins/testrwplugin/src/
test_rwplugin.cc 505 DMStringVector oChildren;
506 oChildren.push_back("branch1");
507 // oChildren.push_back("branch2");
512 oChildren
  /packages/apps/OMA-DM/engine/dmlib/api/native/
dmtNode.hpp 197 * Fills in the vector oChildren list of child nodes.
202 * \param oChildren [out] - vector for child nodes
209 virtual SYNCML_DM_RET_STATUS_T GetChildNodes( DMVector<PDmtNode>& oChildren ) const = 0;
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/api/native/plugin/
dmtPlugin.hpp     [all...]

Completed in 56 milliseconds