/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/common/ |
H A D | js_api_perf.cpp | 22 void JsApiPerf::InsertJsBeginLog(const std::string& functionName, int64_t timeStamp) in InsertJsBeginLog() argument 25 .name = functionName, in InsertJsBeginLog() 31 void JsApiPerf::InsertJsEndLog(const std::string& functionName, int64_t timeStamp) in InsertJsEndLog() argument 37 if (itemName == functionName) { in InsertJsEndLog() 40 InsertPerfLog(functionName, diff); in InsertJsEndLog() 45 void JsApiPerf::InsertPerfLog(const std::string& functionName, int64_t timeConsumed) in InsertPerfLog() argument 47 data_[functionName].emplace_back(timeConsumed); in InsertPerfLog()
|
H A D | js_api_perf.h | 38 void InsertJsBeginLog(const std::string& functionName, int64_t timeStamp = 0); 39 void InsertJsEndLog(const std::string& functionName, int64_t timeStamp = 0); 44 void InsertPerfLog(const std::string& functionName, int64_t timeConsumed);
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/ |
H A D | ohos_js_env_logger.cpp | 37 void JsEnvLogger(JsEnv::JsEnvLogLevel level, const char* fileName, const char* functionName, int li… in JsEnvLogger() argument 46 … HiviewDFX::HiLog::Debug(LOG_LABEL, cFormat.c_str(), fileName, functionName, line, printArgs); in JsEnvLogger() 49 … HiviewDFX::HiLog::Info(LOG_LABEL, cFormat.c_str(), fileName, functionName, line, printArgs); in JsEnvLogger() 52 … HiviewDFX::HiLog::Warn(LOG_LABEL, cFormat.c_str(), fileName, functionName, line, printArgs); in JsEnvLogger() 55 … HiviewDFX::HiLog::Error(LOG_LABEL, cFormat.c_str(), fileName, functionName, line, printArgs); in JsEnvLogger() 58 … HiviewDFX::HiLog::Fatal(LOG_LABEL, cFormat.c_str(), fileName, functionName, line, printArgs); in JsEnvLogger() 61 … HiviewDFX::HiLog::Info(LOG_LABEL, cFormat.c_str(), fileName, functionName, line, printArgs); in JsEnvLogger()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/app/ability_delegator/ |
H A D | js_ability_monitor.cpp | 82 napi_value JSAbilityMonitor::CallLifecycleCBFunction(const std::string &functionName, in CallLifecycleCBFunction() argument 85 if (functionName.empty()) { in CallLifecycleCBFunction() 102 napi_get_named_property(env_, obj, functionName.data(), &method); in CallLifecycleCBFunction() 104 TAG_LOGE(AAFwkTag::DELEGATOR, "null method: %{public}s", functionName.data()); in CallLifecycleCBFunction()
|
/ohos5.0/foundation/filemanagement/app_file_service/utils/include/b_error/ |
H A D | b_error.h | 36 const char *functionName = __builtin_FUNCTION() 38 …EFINE_SOURCE_LOCATION int lineNo = -1, const char *fileName = "NA", const char *functionName = "NA" 203 … msg_ = WrapMessageWithExtraInfos(fileName, lineNo, functionName, code_, {mpErrToMsg_.at(code_)}); 217 …msg_ = WrapMessageWithExtraInfos(fileName, lineNo, functionName, code_, {mpErrToMsg_.at(code_), ex… in BError() 231 msg_ = WrapMessageWithExtraInfos(fileName, lineNo, functionName, code_, {rawMsg}); 373 const char *functionName,
|
/ohos5.0/foundation/filemanagement/app_file_service/tests/utils/src/ |
H A D | test_manager.cpp | 24 TestManager::TestManager(std::string functionName) in TestManager() argument 26 rootDirCurTest_ = "/data/test/backup/" + functionName + "/"; in TestManager()
|
/ohos5.0/drivers/peripheral/usb/ddk/device/src/ |
H A D | usbfn_sdk_if.c | 81 for (i = 0; funcInfo[i].functionName != NULL; i++) { in DoChangeFunction() 82 …if (strncmp(function->funcName, funcInfo[i].functionName, strlen(funcInfo[i].functionName)) == 0) { in DoChangeFunction() 85 … HDF_LOGI("%{public}s: enable function = %{public}s", __func__, funcInfo[i].functionName); in DoChangeFunction() 88 … HDF_LOGI("%{public}s: disable function = %{public}s", __func__, funcInfo[i].functionName); in DoChangeFunction()
|
/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_service/main/hisysevent_wrapper/src/ |
H A D | hisysevent_wrapper.cpp | 32 int WriteEvent(const char *functionName, const struct EventValues *eventValues) in WriteEvent() argument 35 CM_TAG_FUNCTION, functionName, in WriteEvent()
|
/ohos5.0/base/update/updater/services/script/script_interpreter/ |
H A D | script_function.h | 35 ScriptFunction(std::string& functionName, ScriptParams *params, UScriptStatementList *list) in ScriptFunction() argument 36 : functionName_(functionName), params_(params), statements_(list) in ScriptFunction()
|
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/ |
H A D | dfx_ark.h | 37 char functionName[FUNCTIONNAME_MAX]; member 44 char functionName[FUNCTIONNAME_MAX]; member 54 functionName, url, line, column) < 0) { in ToString()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_view_functions.cpp | 449 std::string functionName("aboutToDisappear"); in ExecuteDisappear() local 450 AceScopedPerformanceCheck scoped(functionName); in ExecuteDisappear() 496 std::string functionName("aboutToBeDeleted"); in ExecuteAboutToBeDeleted() local 497 AceScopedPerformanceCheck scoped(functionName); in ExecuteAboutToBeDeleted() 570 std::string functionName(debugInfo); in ExecuteFunction() local 571 AceScopedPerformanceCheck scoped(functionName); in ExecuteFunction() 586 std::string functionName(debugInfo); in ExecuteFunctionWithReturn() local 587 AceScopedPerformanceCheck scoped(functionName); in ExecuteFunctionWithReturn()
|
/ohos5.0/base/web/webview/interfaces/native/ |
H A D | arkweb_interface.cpp | 70 static void LoadFunction(const char* functionName, Fn* fnOut) in LoadFunction() argument 72 void* fn = OHOS::NWeb::NWebHelper::Instance().LoadFuncSymbol(functionName); in LoadFunction() 74 WVLOG_E("%{public}s not found.", functionName); in LoadFunction()
|
/ohos5.0/base/security/huks/services/huks_standard/huks_service/main/systemapi_wrap/hisysevent_wrapper/src/ |
H A D | hisysevent_wrapper.cpp | 58 int WriteEvent(enum EventType eventType, const char *functionName, const struct EventValues *eventV… in WriteEvent() argument 68 … outEventType, g_tagFunction, functionName, g_tagUserId, eventValues->userId, g_tagProcessUID, in WriteEvent()
|
/ohos5.0/foundation/filemanagement/app_file_service/utils/src/b_error/ |
H A D | b_error.cpp | 29 const char *functionName, in WrapMessageWithExtraInfos() argument 34 ss << '[' << fileName << ':' << lineNo << " -> " << functionName << ']' << ' '; in WrapMessageWithExtraInfos()
|
/ohos5.0/base/update/updater/services/flashd/daemon/ |
H A D | daemon_updater.cpp | 132 …_LOGI("functionName = %s, options = %s, fileSize = %u", ctxNow.transferConfig.functionName.c_str(), in CheckCommand() 135 commander_ = CreateCommander(ctxNow.transferConfig.functionName.c_str()); in CheckCommand() 137 FLASHD_LOGE("commander_ is null for cmd = %s", ctxNow.transferConfig.functionName.c_str()); in CheckCommand()
|
/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/utils/src/ |
H A D | js_env_logger.cpp | 19 void(*JsEnvLogger::logger)(JsEnvLogLevel level, const char* fileName, const char* functionName, int…
|
/ohos5.0/foundation/ai/ai_engine/services/common/platform/dl_operation/include/ |
H A D | aie_dl_operation.h | 41 void *AieDlsym(void *libHandle, const char *functionName);
|
/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_service/main/hisysevent_wrapper/include/ |
H A D | hisysevent_wrapper.h | 32 int WriteEvent(const char *functionName, const struct EventValues *eventValues);
|
/ohos5.0/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/ |
H A D | js_root_scene_session.cpp | 218 std::shared_ptr<NativeReference> JsRootSceneSession::GetJSCallback(const std::string& functionName)… in GetJSCallback() 220 …TER_FMT(HITRACE_TAG_WINDOW_MANAGER, "JsRootSceneSession::GetJSCallback[%s]", functionName.c_str()); in GetJSCallback() 223 auto iter = jsCbMap_.find(functionName); in GetJSCallback() 225 TLOGE(WmsLogTag::DEFAULT, "%{public}s callback not found!", functionName.c_str()); in GetJSCallback()
|
/ohos5.0/foundation/filemanagement/app_file_service/tests/utils/include/ |
H A D | test_manager.h | 24 explicit TestManager(std::string functionName);
|
/ohos5.0/base/global/resource_management/interfaces/js/innerkits/core/include/ |
H A D | resource_manager_napi_base.h | 37 …napi_value GetResource(napi_env env, napi_callback_info info, const std::string &functionName) = 0;
|
H A D | resource_manager_napi_context.h | 38 …pi_value ContextGetResource(napi_env env, napi_callback_info info, const std::string &functionName,
|
/ohos5.0/base/security/huks/services/huks_standard/huks_service/main/systemapi_wrap/hisysevent_wrapper/include/ |
H A D | hisysevent_wrapper.h | 43 int WriteEvent(enum EventType eventType, const char *functionName, const struct EventValues *eventV…
|
/ohos5.0/foundation/ability/ability_runtime/js_environment/frameworks/utils/include/ |
H A D | js_env_logger.h | 30 …static void(*logger)(JsEnvLogLevel level, const char* fileName, const char* functionName, int line,
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/common/ |
H A D | business_error.h | 35 const std::string &functionName = "", const std::string &permissionName = "");
|