Home
last modified time | relevance | path

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

/third_party/pulseaudio/src/tests/
Dcore-util-test.c141 ck_assert_int_eq(pa_atol("100000", &value), 0); in START_TEST()
143 ck_assert_int_eq(pa_atol("-100000", &value), 0); in START_TEST()
147 ck_assert_int_eq(pa_atol("0x100000", &value), 0); in START_TEST()
149 ck_assert_int_eq(pa_atol("-0x100000", &value), 0); in START_TEST()
153 ck_assert_int_lt(pa_atol("3.14", &value), 0); in START_TEST()
154 ck_assert_int_lt(pa_atol("7*8", &value), 0); in START_TEST()
155 ck_assert_int_lt(pa_atol("false", &value), 0); in START_TEST()
/third_party/pulseaudio/src/pulsecore/
Dcore-util.h152 int pa_atol(const char *s, long *ret_l);
Dcore-util.c2189 if (pa_atol(s, &l) < 0) in pa_atoi()
2247 int pa_atol(const char *s, long *ret_l) { in pa_atol() function
/third_party/pulseaudio/src/modules/alsa/
Dalsa-mixer.c2459 if (pa_atol(state->rvalue, &volume_limit) < 0 || volume_limit < 0) { in element_parse_volume_limit()