Home
last modified time | relevance | path

Searched refs:pm_device_runtime_is_enabled (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/subsys/pm/
Dpm_shell.c40 if (pm_device_runtime_is_enabled(dev)) { in pm_cmd_suspend()
66 if (pm_device_runtime_is_enabled(dev)) { in pm_cmd_resume()
93 if (!pm_device_runtime_is_enabled(dev)) { in pm_cmd_runtime_get()
118 if (!pm_device_runtime_is_enabled(dev)) { in pm_cmd_runtime_put()
143 if (!pm_device_runtime_is_enabled(dev)) { in pm_cmd_runtime_put_async()
Ddevice_system_managed.c45 pm_device_runtime_is_enabled(dev)) { in pm_suspend_devices()
Ddevice_runtime.c557 bool pm_device_runtime_is_enabled(const struct device *dev) in pm_device_runtime_is_enabled() function
566 if (!pm_device_runtime_is_enabled(dev)) { in pm_device_runtime_usage()
/Zephyr-latest/include/zephyr/pm/
Ddevice_runtime.h159 bool pm_device_runtime_is_enabled(const struct device *dev);
212 static inline bool pm_device_runtime_is_enabled(const struct device *dev)
/Zephyr-latest/tests/subsys/pm/device_runtime_api/src/
Dmain.c271 zassert_false(pm_device_runtime_is_enabled(dev), ""); in ZTEST()
295 zassert_true(pm_device_runtime_is_enabled(dev), ""); in ZTEST()
/Zephyr-latest/subsys/shell/modules/
Ddevice_service.c133 if (!pm_device_runtime_is_enabled(dev)) { in cmd_device_pm_toggle()