Lines Matching refs:value
89 * \param id message type identifier, if pointed value is 0, then a
300 uint64_t value;
330 * Convert a enum value to a string.
334 unsigned long value);
339 unsigned long value);
343 * Convert binary flags value to a string.
347 unsigned long value);
395 * NAME=value
418 static const char * value; \
421 value = debug_get_option(name, dfault); \
423 return value; \
447 static const char * value; \
452 value = debug_get_option(name, dfault); \
454 if (!value) \
456 return fopen(value, mode); \
464 static bool value; \
467 value = debug_get_bool_option(name, dfault); \
469 return value; \
477 static long value; \
480 value = debug_get_num_option(name, dfault); \
482 return value; \
490 static unsigned long value; \
493 value = debug_get_flags_option(name, flags, dfault); \
495 return value; \