Home
last modified time | relevance | path

Searched refs:result (Results 10751 - 10775 of 17626) sorted by relevance

1...<<431432433434435436437438439440>>...706

/foundation/CastEngine/castengine_cast_framework/service/src/device_manager/include/
H A Dconnection_manager.h50 void OnBindResult(const PeerTargetId &targetId, int32_t result, int32_t status, std::string content) override;
61 void OnUnbindResult(const PeerTargetId &targetId, int32_t result, std::string content) override;
106 bool NotifySessionEvent(const std::string &deviceId, int result);
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dcall_container.cpp51 std::shared_ptr<CallRecord> result; in RemoveCallRecordMap() local
55 result = record->second; in RemoveCallRecordMap()
58 return result; in RemoveCallRecordMap()
/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/src/
H A Dwindow_manager_service_handler_stub.cpp89 TAG_LOGE(AAFwkTag::ABILITYMGR, "write result failed"); in GetFocusWindowInner()
186 std::vector<int32_t> result; in MoveMissionsToBackgroundInner() local
188 auto errCode = MoveMissionsToBackground(missionIds, result); in MoveMissionsToBackgroundInner()
189 reply.WriteInt32Vector(result); in MoveMissionsToBackgroundInner()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_alert_dialog_ffi.cpp36 uint32_t result = origin; in ColorAlphaAdapt() local
38 result = origin | COLOR_ALPHA_VALUE; in ColorAlphaAdapt()
40 return result; in ColorAlphaAdapt()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_xcomponent.h108 auto result = jsValMap_.try_emplace(idWithContainerId, jsVal); in AddJsValToJsValMap() local
109 if (!result.second) { in AddJsValToJsValMap()
110 result.first->second = jsVal; in AddJsValToJsValMap()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dtext_timer_modifier.cpp110 std::smatch result; in SetFormat() local
112 if (std::regex_search(formatStr, result, pattern)) { in SetFormat()
113 if (!result.empty()) { in SetFormat()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_control/
H A Dapp_jump_interceptor_manager_rdb.cpp115 bool result = true; in DeleteAppJumpControlRule() local
125 result = false; in DeleteAppJumpControlRule()
128 return result ? ERR_OK : ERR_BUNDLE_MANAGER_APP_CONTROL_INTERNAL_ERROR; in DeleteAppJumpControlRule()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_switcher.cpp40 ErrCode result = enable_ ? EnableQuickFix(bundleName_) : DisableQuickFix(bundleName_); in SwitchQuickFix() local
41 if (result != ERR_OK) { in SwitchQuickFix()
45 return result; in SwitchQuickFix()
/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Daudio_stream_manager.cpp197 int32_t result = 0; in GetHardwareOutputSamplingRate() local
205 result = AudioPolicyManager::GetInstance().GetHardwareOutputSamplingRate(desc); in GetHardwareOutputSamplingRate()
206 return result; in GetHardwareOutputSamplingRate()
/foundation/graphic/graphic_3d/kits/js/src/
H A DBaseObjectJS.cpp142 bool result = false; in IsInstanceOf() local
143 auto status = napi_instanceof(env, obj, cl, &result); in IsInstanceOf()
144 return result; in IsInstanceOf()
/foundation/filemanagement/storage_service/services/storage_daemon/utils/
H A Dhi_audit.cpp95 struct tm result {}; in GetFormattedTimestamp() struct
96 if (localtime_r(&seconds, &result) != nullptr) { in GetFormattedTimestamp()
97 strftime(date, MAX_TIME_BUFF, format.c_str(), &result); in GetFormattedTimestamp()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/enum_napi/
H A Dtext_enum_napi.cpp198 napi_value result = nullptr; in JsEnumIntInit() local
200 nullptr, property.size(), property.data(), &result); in JsEnumIntInit()
206 napiStatus = napi_set_named_property(env, exports, enumClassName.data(), result); in JsEnumIntInit()
/foundation/multimedia/media_foundation/src/buffer/avsharedmemory/
H A Davsharedmemorybase.cpp125 int result = AshmemSetProt(fd_, static_cast<int>(prot)); in MapMemory() local
126 FALSE_RETURN_V_MSG_E(result >= 0, static_cast<int32_t>(Status::ERROR_INVALID_OPERATION), in MapMemory()
127 "AshmemSetProt failed, result = %{public}d", result); in MapMemory()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/include/
H A Dpixel_convert.h136 uint32_t result = static_cast<float>(colorComponent) * ALPHA_OPAQUE / alpha + HALF_ONE; in Unpremul255() local
137 return (result > ALPHA_OPAQUE) ? ALPHA_OPAQUE : result; in Unpremul255()
/foundation/multimedia/image_framework/plugins/manager/src/framework/
H A Dplugin_mgr.cpp60 uint32_t result = TraverseFiles(path); in Register() local
61 if (result == SUCCESS) { in Register()
66 errorCode = result; in Register()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dhi_audit.cpp93 struct tm result {}; in GetFormattedTimestamp() struct
94 if (localtime_r(&seconds, &result) != nullptr) { in GetFormattedTimestamp()
95 strftime(date, MAX_TIME_BUFF, format.c_str(), &result); in GetFormattedTimestamp()
/foundation/resourceschedule/ffrt/src/eu/
H A Dcpuworker_manager.cpp67 auto result = groupCtl[workerQos].threads.emplace(worker, std::move(uniqueWorker)); in IncWorker() local
68 if (!result.second) { in IncWorker()
69 FFRT_LOGE("qos:%d worker insert fail:%d", workerQos, result.second); in IncWorker()
/foundation/resourceschedule/ffrt/src/sync/
H A Ddelayed_worker.cpp55 int result = HandleWork(); in ThreadInit()
60 if (result == 0) { in ThreadInit()
64 } else if (result == 1) { in ThreadInit()
/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_condition.cpp301 void* result = nullptr; in HWTEST_F() local
302 ffrt_thread_join(thread, &result); in HWTEST_F()
304 EXPECT_EQ(&a, result); in HWTEST_F()
/foundation/resourceschedule/device_standby/services/notification/src/
H A Dstandby_state_subscriber.cpp213 void StandbyStateSubscriber::ShellDump(const std::vector<std::string>& argsInStr, std::string& result) in ShellDump() argument
217 result += "subscriber observer record is empty\n"; in ShellDump()
223 result += stream.str(); in ShellDump()
/foundation/resourceschedule/device_usage_statistics/services/common/include/
H A Dbundle_active_core.h64 std::string result; in ToString() local
65 result += "userid is " + std::to_string(userId_) + ", " + event_.ToString(); in ToString()
66 return result; in ToString()
/foundation/resourceschedule/resource_schedule_service/ressched_executor/services/resschedexeservice/src/
H A Dres_sched_exe_service_stub.cpp128 nlohmann::json result; in ReportRequestInner() local
130 ret = SendRequestSync(resType, value, context, result); in ReportRequestInner()
135 WRITE_PARCEL(reply, String, result.dump(-1, ' ', false, nlohmann::detail::error_handler_t::replace), in ReportRequestInner()
/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_config.cpp42 std::vector<std::string> result; in Split() local
49 result.push_back(tmp); in Split()
53 return result; in Split()
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/
H A Djs_screen_listener.cpp61 napi_ref result = nullptr; in AddCallback() local
62 napi_create_reference(env_, jsListenerObject, 1, &result); in AddCallback()
63 callbackRef.reset(reinterpret_cast<NativeReference*>(result)); in AddCallback()
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dfwmark_network.cpp184 int32_t result = listen(serverSockfd, MAX_CONCURRENT_CONNECTION_REQUESTS); in StartListener() local
185 if (result < 0) { in StartListener()
186 NETNATIVE_LOGE("FwmarkNetwork: listen failed result %{public}d, errno: %{public}d", result, errno); in StartListener()

Completed in 18 milliseconds

1...<<431432433434435436437438439440>>...706