/foundation/window/window_manager/utils/include/ |
H A D | class_var_definition.h | 33 #define DEFINE_FUNC_GET(type, funcName, memberName) \
35 type Get##funcName() const \
40 #define DEFINE_FUNC_GET_WITH_LOCK(type, funcName, memberName) \
42 type Get##funcName() \
55 #define DEFINE_FUNC_SET(type, funcName, memberName) \
57 void Set##funcName(type value) \
62 #define DEFINE_FUNC_SET_WITH_LOCK(type, funcName, memberName) \
64 void Set##funcName(type value) \
76 #define DEFINE_VAR_FUNC_GET(type, funcName, memberName) \
78 DEFINE_FUNC_GET(type, funcName, memberNam [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/codec/ |
H A D | function_call.h | 31 FunctionCall(const std::string& funcName, const std::vector<CodecData>& args) : funcName_(funcName), args_(args) {} in FunctionCall() argument 32 FunctionCall(std::string&& funcName, std::vector<CodecData>&& args) in FunctionCall() argument 33 : funcName_(std::move(funcName)), args_(std::move(args)) in FunctionCall() 48 void SetFuncName(const std::string& funcName) in SetFuncName() argument 50 funcName_ = funcName; in SetFuncName() 58 void SetFuncName(std::string&& funcName) in SetFuncName() argument 60 funcName_ = std::move(funcName); in SetFuncName()
|
H A D | standard_function_codec.cpp | 38 CodecData funcName; in DecodeFunctionCall() local 39 if (!bufferReader.ReadData(funcName)) { in DecodeFunctionCall() 40 LOGW("Decode funcName failed"); in DecodeFunctionCall() 50 functionCall.SetFuncName(funcName.GetStringValue()); in DecodeFunctionCall()
|
/foundation/multimedia/av_codec/services/dfx/ |
H A D | avcodec_trace.cpp | 21 AVCodecTrace::AVCodecTrace(const std::string& funcName) in AVCodecTrace() argument 23 StartTrace(HITRACE_TAG_ZMEDIA, funcName); in AVCodecTrace() 26 void AVCodecTrace::TraceBegin(const std::string& funcName, int32_t taskId) in TraceBegin() argument 28 StartAsyncTrace(HITRACE_TAG_ZMEDIA, funcName, taskId); in TraceBegin() 31 void AVCodecTrace::TraceEnd(const std::string& funcName, int32_t taskId) in TraceEnd() argument 33 FinishAsyncTrace(HITRACE_TAG_ZMEDIA, funcName, taskId); in TraceEnd()
|
/foundation/distributedhardware/device_manager/services/implementation/include/config/ |
H A D | json_config.h | 30 "funcName": "CreateCryptoAdapterObject", 38 "funcName": "CreateDeviceDecisionObject", 53 "funcName": "CreatePinAuthObject", 62 "funcName": "CreateQRcodeAuthObject", 71 "funcName": "CreateNfcAuthObject", 80 "funcName": "CreatePinAuthObject",
|
/foundation/CastEngine/castengine_wifi_display/services/common/ |
H A D | sharing_hisysevent.cpp | 39 void SharingHiSysEvent::ReportStart(std::string funcName, BIZSceneStage stage) in ReportStart() argument 42 SHARING_LOGE("[FUNC:%s][%s][%s][BIZ_SCENE:%d][BIZ_STAGE:%d][BIZ_STATE:%d]", funcName.c_str(), in ReportStart() 47 "HOST_PKG", HOST_PKG, "FUNC", funcName, "BIZ_SCENE", bizScene_, "BIZ_STATE", in ReportStart() 54 void SharingHiSysEvent::ReportEnd(std::string funcName, BIZSceneStage stage, BlzErrorCode errCode) in ReportEnd() argument 61 SHARING_LOGE("[FUNC:%s][%s][%s][BIZ_SCENE:%d][BIZ_STAGE:%d][BIZ_STATE:%d]", funcName.c_str(), in ReportEnd() 72 "HOST_PKG", HOST_PKG, "FUNC", funcName, "BIZ_SCENE", bizScene_, "BIZ_STATE", in ReportEnd() 80 void SharingHiSysEvent::Report(std::string funcName, BIZSceneStage stage, StageResType resType, std::string peerMac) in Report() argument 84 SHARING_LOGE("[FUNC:%s][%s][%s][BIZ_SCENE:%d][BIZ_STAGE:%d][PEERMAC:%s]", funcName.c_str(), SHARING_DFX_DOMAIN_NAME, in Report() 88 "HOST_PKG", HOST_PKG, "FUNC", funcName, "BIZ_SCENE", bizScene_, "BIZ_STAGE", in Report()
|
/foundation/distributedhardware/device_manager/radar/include/ |
H A D | dm_radar_helper.h | 131 std::string funcName; member 166 virtual bool ReportAuthCreateGroupCb(std::string funcName, int32_t stageRes) = 0; 170 virtual bool ReportAuthAddGroupCb(std::string funcName, int32_t stageRes) = 0; 175 std::string funcName, std::vector<DmDeviceInfo> &deviceInfoList, int32_t errCode) = 0; 180 virtual void ReportSendOrReceiveHolderMsg(int32_t bizStage, std::string funcName, std::string peerUdid) = 0; 181 virtual void ReportDmBehavior(std::string hostName, std::string funcName, int32_t errCode) = 0; 183 std::string funcName, DmDeviceInfo &info, int32_t errCode) = 0; 185 std::string funcName, DmDeviceInfo &info, int32_t errCode) = 0; 202 bool ReportAuthCreateGroupCb(std::string funcName, int32_t stageRes) override; 206 bool ReportAuthAddGroupCb(std::string funcName, int32_ [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/ |
H A D | preset_module.cpp | 40 void PresetModule::CreateNamedFunction(const char * const funcName, jerry_external_handler_t handler) in CreateNamedFunction() argument 42 if (funcName == nullptr) { in CreateNamedFunction() 45 JerrySetFuncProperty(module_, funcName, handler); in CreateNamedFunction()
|
H A D | jstest_module.cpp | 24 const char * const funcName = "jstestPrint"; in Init() local 25 CreateNamedFunction(funcName, JSTestPrint); in Init()
|
/foundation/communication/wifi/wifi/base/shared_util/ |
H A D | wifi_watchdog_utils.cpp | 77 int WifiWatchDogUtils::StartWatchDogForFunc(const std::string &funcName)
in StartWatchDogForFunc() argument 80 WIFI_LOGD("StartWatchDogForFunc enter for funcName:%{public}s", funcName.c_str());
in StartWatchDogForFunc() 82 return HiviewDFX::XCollie::GetInstance().SetTimer(funcName, TIME_OUT_WATCHDOG,
in StartWatchDogForFunc() 88 bool WifiWatchDogUtils::StopWatchDogForFunc(const std::string &funcName, int id)
in StopWatchDogForFunc() argument 91 WIFI_LOGD("StopWatchDogForFunc enter for funcName:%{public}s", funcName.c_str());
in StopWatchDogForFunc()
|
/foundation/distributedhardware/device_manager/radar/src/ |
H A D | dm_radar_helper.cpp | 48 "FUNC", info.funcName, in ReportDiscoverRegCallback() 62 "FUNC", info.funcName, in ReportDiscoverRegCallback() 89 "FUNC", info.funcName, in ReportDiscoverResCallback() 105 "FUNC", info.funcName, in ReportDiscoverResCallback() 134 "FUNC", info.funcName, in ReportDiscoverUserRes() 147 "FUNC", info.funcName, in ReportDiscoverUserRes() 160 "FUNC", info.funcName, in ReportDiscoverUserRes() 209 "FUNC", info.funcName, in ReportAuthOpenSession() 226 "FUNC", info.funcName, in ReportAuthOpenSession() 254 "FUNC", info.funcName, in ReportAuthSessionOpenCb() 378 ReportAuthCreateGroupCb(std::string funcName, int32_t stageRes) ReportAuthCreateGroupCb() argument 503 ReportAuthAddGroupCb(std::string funcName, int32_t stageRes) ReportAuthAddGroupCb() argument 708 ReportSendOrReceiveHolderMsg(int32_t bizStage, std::string funcName, std::string peerUdid) ReportSendOrReceiveHolderMsg() argument 750 ReportGetTrustDeviceList(std::string hostName, std::string funcName, std::vector<DmDeviceInfo> &deviceInfoList, int32_t errCode) ReportGetTrustDeviceList() argument 798 ReportDmBehavior(std::string hostName, std::string funcName, int32_t errCode) ReportDmBehavior() argument 837 ReportGetLocalDevInfo(std::string hostName, std::string funcName, DmDeviceInfo &info, int32_t errCode) ReportGetLocalDevInfo() argument 885 ReportGetDeviceInfo(std::string hostName, std::string funcName, DmDeviceInfo &info, int32_t errCode) ReportGetDeviceInfo() argument [all...] |
/foundation/distributeddatamgr/data_share/frameworks/native/common/src/ |
H A D | call_reporter.cpp | 24 void DataShareCallReporter::Count(const std::string &funcName, const std::string &uri) in Count() argument 28 callCounts.Compute(funcName, [&overCount, &firstCallTime](auto &key, CallInfo &callInfo) { in Count() 52 "ms, uri:%{public}s", funcName.c_str(), firstCallTime, now, DataShareStringUtils::Anonymous(uri).c_str()); in Count() 56 "ms, uri:%{public}s", funcName.c_str(), firstCallTime, now, DataShareStringUtils::Anonymous(uri).c_str()); in Count()
|
/foundation/deviceprofile/device_info_manager/old/radar/src/ |
H A D | dp_radar_helper.cpp | 33 "FUNC", info.funcName, in ReportCheckDpSa() 45 "FUNC", info.funcName, in ReportCheckDpSa() 68 "FUNC", info.funcName, in ReportLoadDpSa() 79 "FUNC", info.funcName, in ReportLoadDpSa() 102 "FUNC", info.funcName, in ReportLoadDpSaCb() 113 "FUNC", info.funcName, in ReportLoadDpSaCb() 136 "FUNC", info.funcName, in ReportSaCheckAuth() 147 "FUNC", info.funcName, in ReportSaCheckAuth() 169 "FUNC", info.funcName, in ReportGetData() 183 "FUNC", info.funcName, in ReportGetData() [all...] |
/foundation/distributedhardware/device_manager/radar/src/lite/ |
H A D | dm_radar_helper.cpp | 79 bool DmRadarHelper::ReportAuthCreateGroupCb(std::string funcName, int32_t stageRes) in ReportAuthCreateGroupCb() argument 99 bool DmRadarHelper::ReportAuthAddGroupCb(std::string funcName, int32_t stageRes) in ReportAuthAddGroupCb() argument 120 std::string funcName, std::vector<DmDeviceInfo> &deviceInfoList, int32_t errCode) in ReportGetTrustDeviceList() 137 void DmRadarHelper::ReportSendOrReceiveHolderMsg(int32_t bizStage, std::string funcName, std::string peerUdid) in ReportSendOrReceiveHolderMsg() argument 142 void DmRadarHelper::ReportDmBehavior(std::string hostName, std::string funcName, int32_t errCode) in ReportDmBehavior() argument 148 std::string funcName, DmDeviceInfo &info, int32_t errCode) in ReportGetLocalDevInfo() 154 std::string funcName, DmDeviceInfo &info, int32_t errCode) in ReportGetDeviceInfo() 119 ReportGetTrustDeviceList(std::string hostName, std::string funcName, std::vector<DmDeviceInfo> &deviceInfoList, int32_t errCode) ReportGetTrustDeviceList() argument 147 ReportGetLocalDevInfo(std::string hostName, std::string funcName, DmDeviceInfo &info, int32_t errCode) ReportGetLocalDevInfo() argument 153 ReportGetDeviceInfo(std::string hostName, std::string funcName, DmDeviceInfo &info, int32_t errCode) ReportGetDeviceInfo() argument
|
/foundation/multimedia/av_codec/services/dfx/include/ |
H A D | avcodec_trace.h | 28 explicit AVCodecTrace(const std::string& funcName); 29 static void TraceBegin(const std::string& funcName, int32_t taskId); 30 static void TraceEnd(const std::string& funcName, int32_t taskId);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/src/ |
H A D | rdb_radar_reporter.cpp | 24 RdbRadar::RdbRadar(Scene scene, const char *funcName, std::string bundleName) in RdbRadar() argument 25 : scene_(scene), funcName_(funcName), bundleName_(bundleName) in RdbRadar() 44 void RdbRadar::LocalReport(int bizSence, const char* funcName, int state, int errCode) in LocalReport() argument
|
/foundation/communication/nfc/frameworks/js/napi/controller/ |
H A D | nfc_napi_ctrl_utils.cpp | 33 std::string BuildErrorMessage(int errCode, std::string funcName, std::string forbiddenPerm, in BuildErrorMessage() argument 39 .append(funcName) in BuildErrorMessage() 71 bool CheckNfcStatusCodeAndThrow(const napi_env &env, int statusCode, const std::string funcName) in CheckNfcStatusCodeAndThrow() argument 75 BuildErrorMessage(BUSI_ERR_PERM, funcName, NFC_PERM_DESC, "", ""))); in CheckNfcStatusCodeAndThrow()
|
/foundation/filemanagement/dfs_service/frameworks/native/cloud_file_kit_inner/src/big_data_statistics/ |
H A D | cloud_file_fault_event.cpp | 62 int32_t CloudFileFaultEvent::CloudSyncFaultReport(const std::string &funcName, in CloudSyncFaultReport() argument 73 "function_name", funcName + ":" + std::to_string(lineNum), in CloudSyncFaultReport() 83 int32_t CloudFileFaultEvent::CloudFileFaultReport(const std::string &funcName, in CloudFileFaultReport() argument 94 "function_name", funcName + ":" + std::to_string(lineNum), in CloudFileFaultReport()
|
/foundation/multimedia/drm_framework/services/utils/ |
H A D | drm_trace.cpp | 21 DrmTrace::DrmTrace(const std::string& funcName) in DrmTrace() argument 23 StartTrace(HITRACE_TAG_DRM, funcName); in DrmTrace()
|
/foundation/arkui/ace_engine_lite/frameworks/module_manager/test/unittest/common/ |
H A D | require_module_tdd_test.cpp | 118 const char *funcName = "getInfo"; in RequireModuleTest005() local 119 JSIValue jFunc = JSI::GetNamedProperty(moduleRequired, funcName); in RequireModuleTest005() 152 const char *funcName = "terminate"; in RequireModuleTest006() local 153 JSIValue jFunc = JSI::GetNamedProperty(moduleRequired, funcName); in RequireModuleTest006() 186 const char *funcName = "replace"; in RequireModuleTest007() local 187 JSIValue jFunc = JSI::GetNamedProperty(moduleRequired, funcName); in RequireModuleTest007()
|
/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/ |
H A D | camera_napi_const.h | 62 AsyncContext(std::string funcName, int32_t taskId) : funcName(funcName), taskId(taskId) {}; in AsyncContext() 89 std::string funcName; member 108 std::string funcName; member
|
/foundation/distributeddatamgr/data_share/frameworks/native/common/include/ |
H A D | datashare_radar_reporter.h | 129 #define RADAR_REPORT(funcName, bizScene, bizStage, stageRes, ...) \ 132 "ORG_PKG", RadarReporter::ORG_PKG, "FUNC", funcName, \ 139 RadarReport(int32_t bizScene, int32_t bizStage, const std::string funcName) in RadarReport() argument 141 RADAR_REPORT(funcName, bizScene, bizStage, RadarReporter::SUCCESS, in RadarReport() 145 funcName_ = funcName; in RadarReport()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/dfx/src/ |
H A D | radar_reporter.cpp | 23 RadarReporter::RadarReporter(const char *eventName, int32_t scene, const char *bundleName, const char *funcName) in RadarReporter() argument 24 : eventName_(eventName), funcName_(funcName) in RadarReporter() 43 void RadarReporter::Report(const RadarParam ¶m, const char *funcName, int32_t state, const char *eventName) in Report() argument 48 OHOS::HiviewDFX::HiSysEvent::EventType::BEHAVIOR, ORG_PKG_LABEL, ORG_PKG, FUNC_LABEL, funcName, in Report() 55 OHOS::HiviewDFX::HiSysEvent::EventType::BEHAVIOR, ORG_PKG_LABEL, ORG_PKG, FUNC_LABEL, funcName, in Report()
|
/foundation/arkui/ace_engine_lite/test/moduletest/common/ |
H A D | test_common.h | 29 #define HWTEST_F(className, funcName, level) void className::funcName()
|
/foundation/filemanagement/storage_service/services/storage_manager/storage/src/ |
H A D | storage_total_status_service.cpp | 46 .funcName = "GetTotalSize", in GetSystemSize() 60 .funcName = "GetSizeOfPath", in GetSystemSize() 85 .funcName = "GetTotalSize GetSizeOfPath for dataSize", in GetTotalSize() 99 .funcName = "GetTotalSize GetSizeOfPath for rootSize", in GetTotalSize() 121 .funcName = "GetFreeSize", in GetFreeSize()
|