Home
last modified time | relevance | path

Searched refs:BundleEventSourceExample (Results 1 – 7 of 7) sorted by relevance

/base/hiviewdfx/hiview/test/plugins/examples_bundle/bundle_event_source_example/
Dbundle_event_source_example.cpp31 REGISTER(BundleEventSourceExample);
32 std::set<std::string> BundleEventSourceExample::count = std::set<std::string>();
33 std::mutex BundleEventSourceExample::mutex_;
34 BundleEventSourceExample::BundleEventSourceExample() : inotifyFd_(0) in BundleEventSourceExample() function in OHOS::HiviewDFX::BundleEventSourceExample
36 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in BundleEventSourceExample()
41 BundleEventSourceExample::~BundleEventSourceExample() in ~BundleEventSourceExample()
43 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in ~BundleEventSourceExample()
48 void BundleEventSourceExample::OnLoad() in OnLoad()
60 void BundleEventSourceExample::CreateWatchFile(const std::string& path) in CreateWatchFile()
71 void BundleEventSourceExample::OnUnload() in OnUnload()
[all …]
Dbundle_event_source_example.h60 class BundleEventSourceExample : public FileDescriptorEventCallback, public EventSource {
62 BundleEventSourceExample();
63 ~BundleEventSourceExample();
/base/hiviewdfx/hiview/test/plugins/examples_bundle/bundle_plugin_example1/
Dbundle_plugin_example1.cpp25 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in BundlePluginExample1()
27 BundleEventSourceExample::count.insert("BundlePluginExample1"); in BundlePluginExample1()
32 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in ~BundlePluginExample1()
34 BundleEventSourceExample::count.erase("BundlePluginExample1"); in ~BundlePluginExample1()
/base/hiviewdfx/hiview/test/plugins/examples_bundle/bundle_plugin_example2/
Dbundle_plugin_example2.cpp27 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in BundlePluginExample2()
29 BundleEventSourceExample::count.insert("BundlePluginExample2"); in BundlePluginExample2()
34 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in ~BundlePluginExample2()
36 BundleEventSourceExample::count.erase("BundlePluginExample2"); in ~BundlePluginExample2()
/base/hiviewdfx/hiview/test/plugins/examples_bundle/bundle_plugin_example3/
Dbundle_plugin_example3.cpp27 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in BundlePluginExample3()
29 BundleEventSourceExample::count.insert("BundlePluginExample3"); in BundlePluginExample3()
34 std::unique_lock<std::mutex> lock(BundleEventSourceExample::mutex_); in ~BundlePluginExample3()
36 BundleEventSourceExample::count.erase("BundlePluginExample3"); in ~BundlePluginExample3()
/base/hiviewdfx/hiview/test/resource/base/
Dbundleplugintest_plugin_config5 BundleEventSourceExample[thread:t-event_source]:0 static
10 BundleEventSourceExample:OnePipeline TowPipeline
/base/hiviewdfx/hiview/test/unittest/common/
Dholistic_platform_test.cpp70 … auto bundleEventSourceExample = std::static_pointer_cast<BundleEventSourceExample>(itbb->second); in SetUpTestCase()