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

  /external/parameter-framework/upstream/parameter/
ElementLocator.cpp 41 bool CElementLocator::locate(const string &strPath, CElement **ppElement, string &strError)
43 CPathNavigator pathNavigator(strPath);
59 strError = "Path not found: " + strPath;
69 strError = "Path not found: " + strPath;
79 strError = "Path not found: " + strPath;
PathNavigator.cpp 33 CPathNavigator::CPathNavigator(const std::string &strPath)
35 init(strPath);
38 void CPathNavigator::init(const std::string &strPath)
40 Tokenizer tokenizer(strPath, "/");
44 _bValid = checkPathFormat(strPath);
95 std::string strPath = "/";
99 return strPath;
105 strPath += _astrItems[item] + "/";
108 strPath += _astrItems[item];
110 return strPath;
    [all...]
ElementLocator.h 42 bool locate(const std::string &strPath, CElement **ppElement, std::string &strError);
PathNavigator.h 39 CPathNavigator(const std::string &strPath);
54 void init(const std::string &strPath);
XmlFileIncluderElement.cpp 57 std::string strPath;
58 xmlElement.getAttribute("Path", strPath);
59 strPath = CXmlDocSource::mkUri(elementSerializingContext.getXmlUri(), strPath);
64 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(strPath, true, true, elementSerializingContext);
74 elementSerializingContext.setError("Could not parse document \"" + strPath + "\"");
ParameterMgrPlatformConnector.cpp 86 CParameterHandle *CParameterMgrPlatformConnector::createParameterHandle(const string &strPath,
91 return _pParameterMgr->createParameterHandle(strPath, strError);
94 ElementHandle *CParameterMgrPlatformConnector::createElementHandle(const string &strPath,
97 return _pParameterMgr->createElementHandle(strPath, strError);
ParameterMgrFullConnector.cpp 113 bool CParameterMgrFullConnector::accessParameterValue(const string &strPath, string &strValue,
116 return _pParameterMgr->accessParameterValue(strPath, strValue, bSet, strError);
121 const string &strPath, string &strValue,
124 return _pParameterMgr->accessConfigurationValue(strDomain, strConfiguration, strPath, strValue,
128 bool CParameterMgrFullConnector::getParameterMapping(const string &strPath, string &strValue) const
130 return _pParameterMgr->getParameterMapping(strPath, strValue);
ParameterMgr.h 119 const CConfigurableElement *getConfigurableElement(const std::string &strPath,
124 * @param[in] strPath A std::string representing a path to an element.
130 CConfigurableElement *getConfigurableElement(const std::string &strPath, std::string &strError);
132 CParameterHandle *createParameterHandle(const std::string &strPath, std::string &strError);
240 bool accessParameterValue(const std::string &strPath, std::string &strValue, bool bSet,
245 * @param[in] strPath Path of an element
250 bool getParameterMapping(const std::string &strPath, std::string &strValue) const;
252 const std::string &strPath, std::string &strValue, bool bSet,
639 bool accessValue(CParameterAccessContext &parameterAccessContext, const std::string &strPath,
641 bool doSetValue(const std::string &strPath, const std::string &strValue, bool bRawValueSpace
    [all...]
ParameterMgr.cpp 697 const CConfigurableElement *CParameterMgr::getConfigurableElement(const string &strPath,
700 CPathNavigator pathNavigator(strPath);
713 strError = "Path not found: " + strPath;
725 CConfigurableElement *CParameterMgr::getConfigurableElement(const string &strPath, string &strError)
730 return const_cast<CConfigurableElement *>(constThis->getConfigurableElement(strPath, strError));
734 CParameterHandle *CParameterMgr::createParameterHandle(const string &strPath, string &strError)
736 CConfigurableElement *pConfigurableElement = getConfigurableElement(strPath, strError);
741 strError = "Element not found: " + strPath;
748 strError = "Not a parameter: " + strPath;
    [all...]
  /external/libnfc-nci/halimpl/pn54x/utils/
phNxpConfig.cpp 444 string strPath;
447 strPath.assign(alternative_config_path);
448 strPath += config_name;
449 theInstance.readConfig(strPath.c_str(), true);
455 strPath.assign(transport_config_path);
456 strPath += config_name;
457 theInstance.readConfig(strPath.c_str(), true);
985 string strPath;
986 strPath.assign(transport_config_path);
988 strPath.assign(alternative_config_path)
    [all...]
  /packages/apps/Nfc/nci/jni/extns/pn54x/src/utils/
phNxpConfig.cpp 435 string strPath;
438 strPath.assign (alternative_config_path);
439 strPath += config_name;
440 theInstance.readConfig (strPath.c_str (), true);
446 strPath.assign (transport_config_path);
447 strPath += config_name;
448 theInstance.readConfig (strPath.c_str (), true);
894 string strPath;
895 strPath.assign (transport_config_path);
897 strPath.assign (alternative_config_path)
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
config.cpp 381 string strPath;
382 strPath.assign(transport_config_path);
383 strPath += config_name;
384 theInstance.readConfig(strPath.c_str(), true);
729 string strPath;
730 strPath.assign(transport_config_path);
731 strPath += extra_config_base;
732 strPath += extra;
733 strPath += extra_config_ext;
734 CNfcConfig::GetInstance().readConfig(strPath.c_str(), false)
    [all...]
  /external/libnfc-nci/src/adaptation/
config.cpp 396 string strPath;
397 strPath.assign(transport_config_path);
398 strPath += config_name;
399 theInstance.readConfig(strPath.c_str(), true);
744 string strPath;
745 strPath.assign(transport_config_path);
746 strPath += extra_config_base;
747 strPath += extra;
748 strPath += extra_config_ext;
749 CNfcConfig::GetInstance().readConfig(strPath.c_str(), false)
    [all...]
  /external/parameter-framework/upstream/parameter/include/
ParameterMgrFullConnector.h 105 bool accessParameterValue(const std::string &strPath, std::string &strValue, bool bSet,
108 const std::string &strPath, std::string &strValue, bool bSet,
114 * @param[in] strPath Path of an element
119 bool getParameterMapping(const std::string &strPath, std::string &strValue) const;
ParameterMgrPlatformConnector.h 94 CParameterHandle *createParameterHandle(const std::string &strPath,
  /development/ndk/sources/android/ndk_helper/
JNIHelper.cpp 196 jstring strPath = GetExternalFilesDirJString( env );
197 const char* path = env->GetStringUTFChars( strPath, NULL );
200 env->ReleaseStringUTFChars( strPath, path );
201 env->DeleteLocalRef( strPath );
  /external/parameter-framework/upstream/bindings/python/
pfw.i 125 bool accessParameterValue(const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
126 bool accessConfigurationValue(const std::string &strDomain, const std::string &strConfiguration, const std::string& strPath, std::string& strValue, bool bSet, std::string& strError);
129 bool getParameterMapping(const std::string& strPath, std::string& strValue) const;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fsrmquota.h     [all...]
wbemdisp.h     [all...]
  /external/guice/extensions/struts2/lib/
freemarker-2.3.16.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 
  /prebuilts/sdk/tools/
jack-launcher.jar 
jack-server-4.8.ALPHA.jar 

Completed in 283 milliseconds