HomeSort by relevance Sort by last modified time
    Searched refs:strPath (Results 1 - 21 of 21) 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...]
  /hardware/nxp/nfc/halimpl/utils/
phNxpConfig.cpp 438 string strPath;
440 strPath.assign(alternative_config_path);
441 strPath += config_name;
442 theInstance.readConfig(strPath.c_str(), true);
447 findConfigFilePathFromTransportConfigPaths(config_name, strPath);
448 theInstance.readConfig(strPath.c_str(), true);
824 string strPath;
830 strPath.assign(alternative_config_path);
831 strPath += configName;
833 findConfigFilePathFromTransportConfigPaths(configName, strPath);
    [all...]
  /packages/apps/Nfc/nci/jni/extns/pn54x/src/utils/
phNxpConfig.cpp 400 string strPath;
402 strPath.assign(alternative_config_path);
403 strPath += config_name;
404 theInstance.readConfig(strPath.c_str(), true);
409 findConfigFilePathFromTransportConfigPaths(config_name, strPath);
410 theInstance.readConfig(strPath.c_str(), true);
805 string strPath;
811 strPath.assign(alternative_config_path);
812 strPath += configName;
814 findConfigFilePathFromTransportConfigPaths(configName, strPath);
    [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,
  /prebuilts/ndk/r16/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 201 BSTR strPath) = 0;
311 BSTR strPath);
345 #define IFsrmQuotaManager_Scan(This,strPath) (This)->lpVtbl->Scan(This,strPath)
402 static FORCEINLINE HRESULT IFsrmQuotaManager_Scan(IFsrmQuotaManager* This,BSTR strPath) {
403 return This->lpVtbl->Scan(This,strPath);
507 BSTR strPath);
    [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.11.ALPHA.jar 

Completed in 498 milliseconds