Home
last modified time | relevance | path

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

/external/e2fsprogs/e2fsck/
Dprofile.c1527 long ret_long; in profile_get_integer() local
1544 ret_long = strtol (value, &end_value, 10); in profile_get_integer()
1547 if ((ret_long == LONG_MIN || ret_long == LONG_MAX) && errno != 0) in profile_get_integer()
1550 if ((long) (int) ret_long != ret_long) in profile_get_integer()
1557 *ret_int = ret_long; in profile_get_integer()
1569 unsigned long ret_long; in profile_get_uint() local
1586 ret_long = strtoul (value, &end_value, 10); in profile_get_uint()
1589 if ((ret_long == ULONG_MAX) && errno != 0) in profile_get_uint()
1592 if ((unsigned long) (unsigned int) ret_long != ret_long) in profile_get_uint()
1598 *ret_int = ret_long; in profile_get_uint()