Searched refs:pa_atol (Results 1 – 4 of 4) sorted by relevance
/third_party/pulseaudio/src/tests/ |
D | core-util-test.c | 141 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/ |
D | core-util.h | 152 int pa_atol(const char *s, long *ret_l);
|
D | core-util.c | 2189 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/ |
D | alsa-mixer.c | 2459 if (pa_atol(state->rvalue, &volume_limit) < 0 || volume_limit < 0) { in element_parse_volume_limit()
|