/ohos5.0/foundation/arkui/ace_engine/adapter/preview/inspector/ |
H A D | inspector_client.cpp | 46 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 D | inspector_client.h | 26 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 D | js_inspector_manager.cpp | 79 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 D | connect_server_manager.cpp | 36 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 D | connect_server_manager.h | 36 void SendInspector(const std::string& jsonTreeStr, const std::string& jsonSnapshotStr);
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/connect_server_manager_test/ |
H A D | connect_server_manager_test.cpp | 151 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 D | ace_tv_test.cpp | 110 std::string jsonTreeStr = ability->GetJSONTree(); in main() local 113 fileWriter << jsonTreeStr; in main()
|
H A D | ace_wearable_test.cpp | 108 std::string jsonTreeStr = ability->GetJSONTree(); in main() local 111 fileWriter << jsonTreeStr; in main()
|
H A D | ace_car_test.cpp | 132 std::string jsonTreeStr = ability->GetJSONTree(); in main() local 135 fileWriter << jsonTreeStr; in main()
|
H A D | ace_card_test.cpp | 135 std::string jsonTreeStr = ability->GetJSONTree(); in main() local 138 fileWriter << jsonTreeStr; in main()
|
H A D | ace_phone_test.cpp | 134 std::string jsonTreeStr = ability->GetJSONTree(); in main() local 137 fileWriter << jsonTreeStr; in main()
|
H A D | ace_tablet_test.cpp | 134 std::string jsonTreeStr = ability->GetJSONTree(); in main() local 137 fileWriter << jsonTreeStr; in main()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/ |
H A D | connect_server_manager.cpp | 367 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 D | connect_server_manager.h | 42 void SendInspector(const std::string& jsonTreeStr, const std::string& jsonSnapshotStr);
|
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/entrance/ |
H A D | ace_ability.cpp | 568 std::string jsonTreeStr; in GetJSONTree() local 574 …[&jsonTreeStr] { OHOS::Ace::Framework::InspectorClient::GetInstance().AssembleJSONTreeStr(jsonTree… in GetJSONTree() 577 return jsonTreeStr; in GetJSONTree()
|