Home
last modified time | relevance | path

Searched refs:pathMap_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/request/request/frameworks/cj/ffi/src/
H A Dcj_request_task.cpp48 std::map<std::string, int32_t> CJTask::pathMap_; member in OHOS::CJSystemapi::Request::CJTask
120 for (auto it : pathMap_) { in SetPathPermission()
189 auto it = pathMap_.find(parentDir); in AddPathMap()
190 if (it == pathMap_.end()) { in AddPathMap()
191 pathMap_[parentDir] = 1; in AddPathMap()
193 pathMap_[parentDir] += 1; in AddPathMap()
224 auto it = pathMap_.find(parentDir); in RemovePathMap()
225 if (it != pathMap_.end()) { in RemovePathMap()
226 if (pathMap_[parentDir] <= 1) { in RemovePathMap()
227 pathMap_.erase(parentDir); in RemovePathMap()
[all …]
/ohos5.0/base/request/request/frameworks/js/napi/src/
H A Djs_task.cpp54 std::map<std::string, int32_t> JsTask::pathMap_; member in OHOS::Request::JsTask
1005 for (auto it : pathMap_) { in SetPathPermission()
1039 auto it = pathMap_.find(parentDir); in AddPathMap()
1040 if (it == pathMap_.end()) { in AddPathMap()
1041 pathMap_[parentDir] = 1; in AddPathMap()
1043 pathMap_[parentDir] += 1; in AddPathMap()
1086 auto it = pathMap_.find(parentDir); in RemovePathMap()
1087 if (it != pathMap_.end()) { in RemovePathMap()
1088 if (pathMap_[parentDir] <= 1) { in RemovePathMap()
1089 pathMap_.erase(parentDir); in RemovePathMap()
[all …]
/ohos5.0/base/request/request/frameworks/cj/ffi/include/
H A Dcj_request_task.h60 static std::map<std::string, int32_t> pathMap_; variable
/ohos5.0/base/request/request/frameworks/js/napi/include/
H A Djs_task.h62 static std::map<std::string, int32_t> pathMap_; variable