Home
last modified time | relevance | path

Searched refs:jsonTreeStr (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/adapter/preview/inspector/
H A Dinspector_client.cpp46 bool InspectorClient::AssembleJSONTreeStr(std::string& jsonTreeStr) in AssembleJSONTreeStr() argument
49 return assembleJSONTreeCallback_(jsonTreeStr); in AssembleJSONTreeStr()
55 bool InspectorClient::AssembleDefaultJSONTreeStr(std::string &jsonTreeStr) in AssembleDefaultJSONTreeStr() argument
58 return assembleDefaultJSONTreeCallback_(jsonTreeStr); in AssembleDefaultJSONTreeStr()
H A Dinspector_client.h26 using AssembleJSONTreeCallback = std::function<bool(std::string &jsonTreeStr)>;
27 using AssembleDefaultJSONTreeCallback = std::function<bool(std::string &jsonTreeStr)>;
42 bool AssembleJSONTreeStr(std::string &jsonTreeStr);
43 bool AssembleDefaultJSONTreeStr(std::string &jsonTreeStr);
H A Djs_inspector_manager.cpp79 auto assembleJSONTreeCallback = [weak = WeakClaim(this)](std::string& jsonTreeStr) { in InitializeCallback() argument
84 jsInspectorManager->AssembleJSONTree(jsonTreeStr); in InitializeCallback()
88 auto assembleDefaultJSONTreeCallback = [weak = WeakClaim(this)](std::string& jsonTreeStr) { in InitializeCallback() argument
93 jsInspectorManager->AssembleDefaultJSONTree(jsonTreeStr); in InitializeCallback()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/
H A Dconnect_server_manager.cpp36 using StoreInspectorInfo = void (*)(const std::string& jsonTreeStr, const std::string& jsonSnapshot…
234 void ConnectServerManager::SendInspector(const std::string& jsonTreeStr, const std::string& jsonSna… in SendInspector() argument
237 g_sendLayoutMessage(jsonTreeStr); in SendInspector()
239 g_storeInspectorInfo(jsonTreeStr, jsonSnapshotStr); in SendInspector()
H A Dconnect_server_manager.h36 void SendInspector(const std::string& jsonTreeStr, const std::string& jsonSnapshotStr);
/ohos5.0/foundation/ability/ability_runtime/test/unittest/connect_server_manager_test/
H A Dconnect_server_manager_test.cpp151 const std::string jsonTreeStr = "jsonTreeStr"; variable
155 connectServerManager.SendInspector(jsonTreeStr, jsonSnapshotStr);
213 const std::string jsonTreeStr = "jsonTreeStr"; variable
215 connectServerManager.SendInspector(jsonTreeStr, jsonSnapshotStr);
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/entrance/samples/
H A Dace_tv_test.cpp110 std::string jsonTreeStr = ability->GetJSONTree(); in main() local
113 fileWriter << jsonTreeStr; in main()
H A Dace_wearable_test.cpp108 std::string jsonTreeStr = ability->GetJSONTree(); in main() local
111 fileWriter << jsonTreeStr; in main()
H A Dace_car_test.cpp132 std::string jsonTreeStr = ability->GetJSONTree(); in main() local
135 fileWriter << jsonTreeStr; in main()
H A Dace_card_test.cpp135 std::string jsonTreeStr = ability->GetJSONTree(); in main() local
138 fileWriter << jsonTreeStr; in main()
H A Dace_phone_test.cpp134 std::string jsonTreeStr = ability->GetJSONTree(); in main() local
137 fileWriter << jsonTreeStr; in main()
H A Dace_tablet_test.cpp134 std::string jsonTreeStr = ability->GetJSONTree(); in main() local
137 fileWriter << jsonTreeStr; in main()
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Dconnect_server_manager.cpp367 void ConnectServerManager::SendInspector(const std::string& jsonTreeStr, const std::string& jsonSna… in SendInspector() argument
376 sendLayoutMessage(jsonTreeStr); in SendInspector()
384 storeInspectorInfo(jsonTreeStr, jsonSnapshotStr); in SendInspector()
H A Dconnect_server_manager.h42 void SendInspector(const std::string& jsonTreeStr, const std::string& jsonSnapshotStr);
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/entrance/
H A Dace_ability.cpp568 std::string jsonTreeStr; in GetJSONTree() local
574 …[&jsonTreeStr] { OHOS::Ace::Framework::InspectorClient::GetInstance().AssembleJSONTreeStr(jsonTree… in GetJSONTree()
577 return jsonTreeStr; in GetJSONTree()