Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/util/
Du_debug.h354 debug_get_option(const char *name, const char *dfault);
357 debug_get_option_cached(const char *name, const char *dfault);
360 debug_parse_bool_option(const char *str, bool dfault);
363 debug_get_bool_option(const char *name, bool dfault);
366 debug_parse_num_option(const char *str, int64_t dfault);
369 debug_get_num_option(const char *name, int64_t dfault);
375 uint64_t dfault);
380 uint64_t dfault);
382 #define DEBUG_GET_ONCE_OPTION(suffix, name, dfault) \ argument
389 const char *str = debug_get_option_cached(name, dfault); \
[all …]
Du_debug.c107 debug_parse_bool_option(const char *str, bool dfault) in debug_parse_bool_option() argument
112 result = dfault; in debug_parse_bool_option()
134 result = dfault; in debug_parse_bool_option()
156 debug_get_option(const char *name, const char *dfault) in debug_get_option() argument
162 result = dfault; in debug_get_option()
173 debug_get_option_cached(const char *name, const char *dfault) in debug_get_option_cached() argument
179 result = dfault; in debug_get_option_cached()
196 debug_get_bool_option(const char *name, bool dfault) in debug_get_bool_option() argument
198 bool result = debug_parse_bool_option(os_get_option(name), dfault); in debug_get_bool_option()
208 debug_parse_num_option(const char *str, int64_t dfault) in debug_parse_num_option() argument
[all …]