Home
last modified time | relevance | path

Searched refs:ret (Results 11076 - 11100 of 16940) sorted by relevance

1...<<441442443444445446447448449450>>...678

/foundation/arkui/ace_engine/frameworks/core/components/web/resource/
H A Dweb_resource.cpp52 bool ret = resRegister->ReleaseResource(webResource->hash_); in Release()
53 if (ret) { in Release()
59 onRelease(ret); in Release()
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/resource/
H A Dxcomponent_resource.cpp50 bool ret = resRegister->ReleaseResource(hash_); in Release()
51 if (ret) { in Release()
57 onRelease(ret); in Release()
/foundation/arkui/ace_engine/frameworks/core/components/rich_text/resource/
H A Drich_text_resource.cpp54 bool ret = resRegister->ReleaseResource(resource->GetHashCode()); in Release()
55 if (ret) { in Release()
59 onRelease(ret); in Release()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/cross_platform/
H A Dweb_resource.cpp50 bool ret = resRegister->ReleaseResource(hash_); in Release() local
51 if (ret) { in Release()
57 onRelease(ret); in Release()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_mini_proxy.cpp53 ErrCode ret = reply.ReadInt32(); in GetNameForUid() local
54 if (ret != ERR_OK) { in GetNameForUid()
55 return ret; in GetNameForUid()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/bundle_resource/
H A Dbundle_resource_callback.cpp193 Global::Resource::RState ret = resourcePtr->UpdateResConfig(*resConfig); // no need to process ret in SetThemeIdForThemeChanged() local
194 if (ret != Global::Resource::RState::SUCCESS) { in SetThemeIdForThemeChanged()
195 APP_LOGW("UpdateResConfig ret %{public}d, themeId %{public}d", static_cast<int32_t>(ret), themeId); in SetThemeIdForThemeChanged()
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_switch_module.cpp102 int ret = action(); in ProcessBluetoothSwitchAction() local
103 if (ret != BT_NO_ERROR) { in ProcessBluetoothSwitchAction()
107 return ret; in ProcessBluetoothSwitchAction()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/free_install/
H A Dbms_ecological_rule_mgr_service_client.cpp157 int32_t ret = remote->SendRequest(QUERY_FREE_INSTALL_EXPERIENCE_CMD, data, reply, option); in QueryFreeInstallExperience() local
158 if (ret != ERR_NONE) { in QueryFreeInstallExperience()
159 LOG_E(BMS_TAG_DEFAULT, "SendRequest error, ret = %{public}d", ret); in QueryFreeInstallExperience()
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dcontent_object.cpp48 bool ret = Super::Build(data); variable
49 if (ret) {
53 return ret;
H A Dcontainer_observer.cpp95 bool ret = Super::Build(p); in Build() local
96 if (ret) { in Build()
101 return ret; in Build()
/foundation/graphic/graphic_surface/buffer_handle/src/
H A Dbuffer_handle.cpp46 errno_t ret = memset_s(handle, handleSize, 0, handleSize); in AllocateBufferHandle() local
47 if (ret != 0) { in AllocateBufferHandle()
48 UTILS_LOGE("memset_s error, ret is %{public}d", ret); in AllocateBufferHandle()
/foundation/multimedia/av_codec/test/nativedemo/avmuxer/
H A Davmuxer_demo.cpp39 int ret; in DoAddTrack() local
40 if ((ret = avmuxer_->AddTrack(trackIndex, trackDesc)) != AVCS_ERR_OK) { in DoAddTrack()
41 std::cout<<"AVMuxerDemo::DoAddTrack failed! ret:"<<ret<<std::endl; in DoAddTrack()
H A Davmuxer_engine_demo.cpp38 Status ret; in DoAddTrack() local
39 if ((ret = avmuxer_->AddTrack(trackIndex, trackDesc)) != Status::OK) { in DoAddTrack()
40 std::cout<<"AVMuxerEngineDemo::DoAddTrack failed! ret:"<<static_cast<int32_t>(ret)<<std::endl; in DoAddTrack()
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/task_manager/
H A Dthread_pool.cpp121 int ret = pthread_getschedparam(workerInfo.thread.native_handle(), &policy, &sch); in PrintThreadInfo() local
122 if (ret == 0) { in PrintThreadInfo()
126 DP_DEBUG_LOG("thread (%s) pthread_getschedparam failed, ret = %{public}d.", workerInfo.name.c_str(), ret); in PrintThreadInfo()
/foundation/multimedia/av_session/services/session/server/
H A Dhw_cast_provider_session.cpp58 int32_t ret = castSession_->AddDevice(castRemoteDevice); in AddDevice() local
59 SLOGI("AddDevice in HwCastProviderSession with ret %{public}d", static_cast<int32_t>(ret)); in AddDevice()
60 return (ret == 0) ? true : false; in AddDevice()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/src/command/
H A Drecv_command_v10.cpp72 auto ret = MediaFileUtils::CopyFile(rfd, wfd); in RecvFile() local
73 if (!ret) { in RecvFile()
80 return ret ? Media::E_OK : Media::E_ERR; in RecvFile()
/foundation/multimedia/media_lite/frameworks/player_lite/passthrough/liteplayer/
H A Dplayer.cpp40 int32_t ret; in SetSource() local
45 ret = player_->SetSource(source); in SetSource()
47 return ret; in SetSource()
/foundation/multimedia/media_lite/frameworks/player_lite/binder/
H A Dplayer.cpp51 int32_t ret; in SetSource() local
53 ret = player_->SetSource(source); in SetSource()
55 return ret; in SetSource()
/foundation/multimodalinput/input/service/delegate_task/src/
H A Ddelegate_tasks.cpp39 int32_t ret = fun_(); in ProcessTask() local
41 MMI_HILOGD("Process taskType:%{public}s, taskId:%{public}d, ret:%{public}d", taskType.c_str(), id_, ret); in ProcessTask()
43 promise_->set_value(ret); in ProcessTask()
/foundation/resourceschedule/frame_aware_sched/interfaces/innerkits/frameintf/
H A Dframe_ui_intf.cpp40 int ret = FrameMsgMgr::GetInstance().Init(); in Init() local
41 if (!ret) { in Init()
46 RME_LOGI("[Init]:ret:%{public}d, inited:%{public}d", ret, inited); in Init()
/foundation/resourceschedule/ffrt/src/sync/
H A Dio_poller.cpp38 int ret = pthread_setschedparam(pthread_self(), SCHED_RR, &param); variable
39 if (ret != 0) {
40 FFRT_LOGW("[%d] set priority warn ret[%d] eno[%d]\n", pthread_self(), ret, errno);
/foundation/resourceschedule/resource_schedule_service/ressched_executor/interfaces/innerkits/ressched_executor_client/src/
H A Dres_sched_exe_service_proxy.cpp46 int32_t ret = response.ReadInt32(); in SendRequestSync() local
47 if (ret == ResErrCode::RSSEXE_NO_ERR) { in SendRequestSync()
50 return ret; in SendRequestSync()
/foundation/resourceschedule/soc_perf/interfaces/inner_api/socperf_client/src/
H A Dsocperf_proxy.cpp167 std::string ret; in RequestCmdIdCount() local
168 if (!reply.ReadString(ret)) { in RequestCmdIdCount()
169 SOC_PERF_LOGE("read RequestCmdIdCount ret failed"); in RequestCmdIdCount()
172 return ret; in RequestCmdIdCount()
/foundation/communication/dsoftbus/core/transmission/trans_channel/auth/src/
H A Dtrans_auth_message.c33 int32_t ret = GenerateRandomStr((char *)(appInfo->reqId), REQ_ID_SIZE_MAX); in TransAuthChannelMsgPack() local
34 if (ret != SOFTBUS_OK) { in TransAuthChannelMsgPack()
36 return ret; in TransAuthChannelMsgPack()
/foundation/communication/ipc/ipc/test/rpc/samgr/
H A Drpc_samgr.c105 int32_t ret = MakeRemoteBinder(name, nameLen, deviceId, idLen, (uintptr_t)saId, 0, (void *)sid); in GetRemoteSystemAbility() local
106 if (ret != ERR_NONE) { in GetRemoteSystemAbility()
111 return ret; in GetRemoteSystemAbility()

Completed in 17 milliseconds

1...<<441442443444445446447448449450>>...678