Home
last modified time | relevance | path

Searched refs:in_ (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/base/event_store/utility/reader/
H A Dsys_event_doc_reader.cpp51 if (in_.is_open()) { in ~SysEventDocReader()
52 in_.close(); in ~SysEventDocReader()
58 in_.open(path, std::ios::binary); in Init()
64 if (in_.is_open()) { in Init()
65 auto curPos = in_.tellg(); in Init()
66 in_.seekg(0, std::ios::end); in Init()
67 fileSize_ = in_.tellg(); in Init()
68 in_.seekg(curPos, std::ios::beg); in Init()
197 if (!in_.is_open()) { in HasReadFileEnd()
200 return (static_cast<int>(in_.tellg()) < 0) || in_.eof(); in HasReadFileEnd()
[all …]
/ohos5.0/base/hiviewdfx/hiview/plugins/eventlogger/config/
H A Devent_logger_config.cpp52 in_.open(realPath); in OpenConfig()
53 if (!in_.is_open()) { in OpenConfig()
62 if (in_.is_open()) { in CloseConfig()
63 in_.close(); in CloseConfig()
74 if (!getline(in_, buf)) { in FindConfigVersion()
104 while (getline(in_, buf)) { in ParseConfigData()
H A Devent_logger_config.h43 std::ifstream in_;
/ohos5.0/base/account/os_account/services/accountmgr/src/osaccount/
H A Dos_account_photo_operator.cpp86 size_t in_ = 0; in DeCode() local
90 while (in_len-- && (baseStr[in_] != '=') && IsBase(baseStr[in_])) { in DeCode()
91 char_array_4[i++] = baseStr[in_]; in DeCode()
92 in_++; in DeCode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drender_svg_fe.cpp34 in_ = feDeclaration->GetIn().in; in SetFeCommonAttrs()
43 return in_; in GetInType()
H A Drender_svg_fe.h39 FeInType in_ = FeInType::PRIMITIVE; variable
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/netfirewall/
H A Dnetfirewall_map_def.h57 #define GET_MAP(ingress, name) ((ingress) ? &in_##name##_map : &out_##name##_map)
/ohos5.0/base/hiviewdfx/hiview/base/event_store/utility/reader/include/
H A Dsys_event_doc_reader.h56 std::ifstream in_;