Home
last modified time | relevance | path

Searched refs:seperator (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/startup/init/services/utils/
H A Dinit_utils.c207 const char *seperator; in IterateNameValuePairs() local
217 seperator = strchr(tmp, ' '); in IterateNameValuePairs()
218 if (seperator == NULL) { in IterateNameValuePairs()
223 nv.valueEnd = seperator; in IterateNameValuePairs()
224 tmp = seperator + 1; in IterateNameValuePairs()
228 seperator = strchr(nv.name, '='); in IterateNameValuePairs()
229 if (seperator == NULL) { in IterateNameValuePairs()
233 if (seperator > nv.valueEnd) { in IterateNameValuePairs()
237 nv.nameEnd = seperator; in IterateNameValuePairs()
238 nv.value = seperator + 1; in IterateNameValuePairs()
/ohos5.0/foundation/multimedia/av_session/services/session/server/
H A Davsession_service_ext.cpp50 std::string::size_type endPos = extraInfo.find(seperator); in SuperLauncher()
53 beginPos = endPos + seperator.size(); in SuperLauncher()
54 endPos = extraInfo.find(seperator, beginPos); in SuperLauncher()
H A Davsession_service.h519 const std::string seperator = ","; variable
/ohos5.0/foundation/communication/netmanager_ext/frameworks/native/mdnsclient/src/
H A Dmdns_common.cpp49 std::vector<std::string_view> Split(const std::string_view &s, char seperator) in Split() argument
54 while ((pos = s.find(seperator, pos)) != std::string::npos) { in Split()
/ohos5.0/foundation/communication/netmanager_ext/interfaces/innerkits/mdnsclient/include/
H A Dmdns_common.h44 std::vector<std::string_view> Split(const std::string_view &s, char seperator);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_system_properties.cpp52 std::vector<std::string>& splitStrs, const std::string& seperator) in ParseDfxSurfaceNamesString() argument
55 std::string::size_type pos2 = paramsStr.find(seperator); in ParseDfxSurfaceNamesString()
62 pos1 = pos2 + seperator.size(); in ParseDfxSurfaceNamesString()
63 pos2 = paramsStr.find(seperator, pos1); in ParseDfxSurfaceNamesString()
/ohos5.0/base/global/resource_management/frameworks/resmgr/src/
H A Dhap_manager.cpp307 char seperator = '\\'; in FindRawFile() local
309 char seperator = '/'; in FindRawFile()
314 auto index = indexPath.rfind(seperator); in FindRawFile()