/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/plugins/socperf_plugin/test/fuzztest/socperfplugin_fuzzer/ |
H A D | socperfplugin_fuzzer.cpp | 40 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestWindowFocus() 49 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestClickRecognize() 58 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestLoadPage() 67 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestSlideRecognize() 76 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestWebGesture() 85 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestPopPage() 94 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestAppAbilityStart() 103 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestResizeWindow() 112 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestMoveWindow() 121 SocPerfPlugin::GetInstance().DispatchResource(resData); in TestShowRemoteAnimation() [all …]
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/src/ |
H A D | plugin_mgr.cpp | 350 if (!resData || resData->resType != ResType::RES_TYPE_KEY_PERF_SCENE) { in GetExtTypeByResPayload() 353 auto payload = resData->payload; in GetExtTypeByResPayload() 409 if (!resData) { in DispatchResource() 427 __func__, resData->resType, (long long)resData->value, libNameAll.c_str()); in DispatchResource() 435 [pluginList, resData, this] { in DispatchResource() 444 if (!resData) { in DeliverResource() 477 __func__, resData->resType, (long long)resData->value, pluginLib.c_str()); in DeliverResource() 486 ret = pluginDeliverFunc(resData); in DeliverResource() 682 const std::shared_ptr<ResData>& resData) in DispatchResourceToPluginSync() argument 704 … pluginDispatchFunc(std::make_shared<ResData>(resData->resType, resData->value, resData->payload)); in DispatchResourceToPluginSync() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/base64/ |
H A D | base64_util.cpp | 31 sk_sp<SkData> resData = SkData::MakeUninitialized(outputLen); in Decode() local 32 void* output = resData->writable_data(); in Decode() 37 dst.assign(static_cast<const char*>(resData->data()), resData->size()); in Decode()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | gpu_resource_util_gles.cpp | 37 if (const void* resData = glesBuffer.MapMemory(); resData) { in CopyGpuBufferGLES() local 39 …eArray.GetData().data(), byteArray.GetData().size_bytes(), (const uint8_t*)resData, desc.byteSize); in CopyGpuBufferGLES()
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/include/ |
H A D | plugin_mgr.h | 113 void DispatchResource(const std::shared_ptr<ResData>& resData); 120 int32_t DeliverResource(const std::shared_ptr<ResData>& resData); 217 const std::shared_ptr<ResData>& resData); 220 const std::shared_ptr<ResData>& resData); 228 std::string BuildDispatchTrace(const std::shared_ptr<ResData>& resData, std::string& libNameAll, 231 int32_t GetExtTypeByResPayload(const std::shared_ptr<ResData>& resData);
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | gpu_resource_util_vk.cpp | 38 if (const void* resData = vkBuffer.MapMemory(); resData) { in CopyGpuBufferVk() local 40 …eArray.GetData().data(), byteArray.GetData().size_bytes(), (const uint8_t*)resData, desc.byteSize); in CopyGpuBufferVk()
|
/ohos5.0/foundation/resourceschedule/device_standby/interfaces/innerkits/src/ |
H A D | standby_service_client.cpp | 129 ErrCode StandbyServiceClient::HandleEvent(const std::shared_ptr<ResData> &resData) in HandleEvent() argument 131 std::string sceneInfo = resData->payload.dump(); in HandleEvent() 136 return standbyServiceProxy_->HandleEvent(resData->resType, resData->value, sceneInfo); in HandleEvent()
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/ |
H A D | plugin_mgr_test.cpp | 439 std::shared_ptr<ResData> resData = variable 441 SocPerfPlugin::GetInstance().HandleLoadPage(resData); 442 resData->value = ResType::LoadPageType::LOAD_PAGE_COMPLETE; 443 SocPerfPlugin::GetInstance().HandleLoadPage(resData); 461 std::shared_ptr<ResData> resData = variable 464 SocPerfPlugin::GetInstance().HandleRemoteAnimation(resData); 466 resData->value = ResType::ShowRemoteAnimationStatus::ANIMATION_END; 467 SocPerfPlugin::GetInstance().HandleRemoteAnimation(resData);
|
/ohos5.0/docs/zh-cn/application-dev/napi/ |
H A D | use-napi-about-environmental-life-cycle.md | 96 InstanceData *resData = nullptr; 98 napi_get_instance_data(env, (void **)&resData); 100 napi_create_int32(env, resData->value, &result);
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/plugins/device_standby_plugin/test/fuzztest/devicestandbyplugin_fuzzer/ |
H A D | devicestandbyplugin_fuzzer.cpp | 100 … std::shared_ptr<ResData> resData = std::make_shared<ResData>(resType, appStartType, nullptr); in DeviceStandbyPluginFuzzTest() local 103 DeviceStandbyPlugin::GetInstance().DispatchResource(resData); in DeviceStandbyPluginFuzzTest()
|
/ohos5.0/docs/en/application-dev/napi/ |
H A D | use-napi-about-environmental-life-cycle.md | 87 InstanceData *resData = nullptr; 89 napi_get_instance_data(env, (void **)&resData); 91 napi_create_int32(env, resData->value, &result);
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/plugins/device_standby_plugin/include/ |
H A D | device_standby_plugin.h | 36 void DispatchResource(const std::shared_ptr<ResData>& resData) override;
|
/ohos5.0/base/request/request/frameworks/js/napi/src/upload/ |
H A D | curl_adp.cpp | 427 UploadResponse resData; in NotifyAPI5() local 428 resData.headers = headers; in NotifyAPI5() 429 resData.code = fData->httpCode; in NotifyAPI5() 430 fData->adp->config_->fsuccess(resData); in NotifyAPI5()
|
/ohos5.0/drivers/hdf_core/adapter/platform/gpio/ |
H A D | gpio_gr5xx.c | 315 uint16_t resData; in GetGpioResourceData() local 323 ret = drsOps->GetUint16ArrayElem(node, resName, index, &resData, 0); in GetGpioResourceData() 329 return resData; in GetGpioResourceData()
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched_executor/plugins/socperf_executor_plugin/framework/include/ |
H A D | socperf_executor_plugin.h | 32 void DispatchResource(const std::shared_ptr<ResData>& resData) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | js_message_dispatcher.h | 41 …const std::string& group, std::vector<uint8_t>&& data, uint8_t** resData, int64_t& position) const…
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched_executor/services/resschedexemgr/src/ |
H A D | res_sched_exe_mgr.cpp | 78 auto resData = std::make_shared<ResData>(resType, value, payload, reply); in SendRequestSync() 79 int32_t ret = PluginMgr::GetInstance().DeliverResource(resData); in SendRequestSync()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/image/ |
H A D | image_loader.cpp | 530 sk_sp<SkData> resData = SkData::MakeUninitialized(outputLen); in LoadImageData() local 531 void* output = resData->writable_data(); in LoadImageData() 533 auto resData = std::make_shared<RSData>(); in LoadImageData() local 534 resData->BuildUninitialized(outputLen); in LoadImageData() 535 void* output = resData->WritableData(); in LoadImageData() 546 return resData; in LoadImageData()
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/plugins/frame_aware_plugin/include/ |
H A D | frame_aware_plugin.h | 39 void DispatchResource(const std::shared_ptr<ResData>& resData) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/ |
H A D | jsi_declarative_group_js_bridge.cpp | 193 uint8_t* resData = nullptr; in ProcessJsRequestSync() local 196 dispatcher->DispatchSync(strGroupName, std::move(encodeBuf), &resData, position); in ProcessJsRequestSync() 200 std::vector<uint8_t> messageData = std::vector<uint8_t>(resData, resData + position); in ProcessJsRequestSync()
|
/ohos5.0/foundation/resourceschedule/device_standby/interfaces/innerkits/include/ |
H A D | standby_service_client.h | 152 ErrCode HandleEvent(const std::shared_ptr<ResData> &resData);
|
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/ |
H A D | client_trans_proxy_file_helper.c | 300 AckResponseData *resData = (AckResponseData *)data; in AckResponseDataHandle() local 301 uint32_t startSeq = resData->startSeq; in AckResponseDataHandle() 302 uint32_t seqResult = resData->seqResult; in AckResponseDataHandle()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/ |
H A D | jsi_group_js_bridge.cpp | 307 uint8_t* resData = nullptr; in ProcessJsRequestSync() local 310 dispatcher->DispatchSync(strGroupName, std::move(encodeBuf), &resData, position); in ProcessJsRequestSync() 315 std::vector<uint8_t> messageData = std::vector<uint8_t>(resData, resData + position); in ProcessJsRequestSync()
|
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/plugins/socperf_plugin/include/ |
H A D | socperf_plugin.h | 35 void DispatchResource(const std::shared_ptr<ResData>& resData) override;
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | dialog_container.h | 131 …const std::string& group, std::vector<uint8_t>&& data, uint8_t** resData, int64_t& position) const… in DispatchSync() argument
|