Home
last modified time | relevance | path

Searched refs:hal_smoothness (Results 1 – 4 of 4) sorted by relevance

/system/media/audio_utils/include/audio_utils/
Dhal_smoothness.h74 struct hal_smoothness { struct
81 int (*increment_underrun)(struct hal_smoothness *smoothness, argument
87 int (*increment_overrun)(struct hal_smoothness *smoothness, argument
95 int (*increment_total_writes)(struct hal_smoothness *smoothness, argument
100 int (*flush)(struct hal_smoothness *smoothness); argument
115 struct hal_smoothness **smoothness, unsigned int version,
120 void hal_smoothness_free(struct hal_smoothness **smoothness);
/system/media/audio_utils/tests/
Dhal_smoothness_tests.cpp10 void operator()(hal_smoothness *p) { hal_smoothness_free(&p); } in operator ()()
30 hal_smoothness *smoothness_init; in CommonSmoothnessInit()
37 smoothness = std::unique_ptr<hal_smoothness, TestDeleter>{smoothness_init}; in CommonSmoothnessInit()
40 std::unique_ptr<hal_smoothness, TestDeleter> smoothness;
220 TEST(hal_smoothness, init_fail_with_zero_num_writes_to_log) { in TEST() argument
221 hal_smoothness *smoothness; in TEST()
229 TEST(hal_smoothness, init_pass_with_null_private_data) { in TEST() argument
230 hal_smoothness *smoothness_init; in TEST()
236 std::unique_ptr<hal_smoothness, TestDeleter>{smoothness_init}; in TEST()
239 TEST(hal_smoothness, hal_smoothness_free) { in TEST() argument
[all …]
/system/media/audio_utils/
Dhal_smoothness.c27 struct hal_smoothness itfe;
57 static int increment_underrun(struct hal_smoothness *smoothness, in increment_underrun()
78 static int increment_overrun(struct hal_smoothness *smoothness, in increment_overrun()
126 static int flush(struct hal_smoothness *smoothness) { in flush()
144 static int increment_total_writes(struct hal_smoothness *smoothness, in increment_total_writes()
175 struct hal_smoothness **smoothness, unsigned int version, in hal_smoothness_initialize()
216 void hal_smoothness_free(struct hal_smoothness **smoothness) { in hal_smoothness_free()
DAndroid.bp56 "hal_smoothness.c",