Lines Matching refs:default_value
37 int osi_property_get(const char* key, char* value, const char* default_value) { in osi_property_get() argument
43 } else if (default_value) { in osi_property_get()
44 int len = std::min(strlen(default_value), (size_t)(PROPERTY_VALUE_MAX - 1)); in osi_property_get()
45 memcpy(value, default_value, len); in osi_property_get()
58 int32_t osi_property_get_int32(const char* key, int32_t default_value) { in osi_property_get_int32() argument
63 return default_value; in osi_property_get_int32()
67 bool osi_property_get_bool(const char* key, bool default_value) { in osi_property_get_bool() argument
72 return default_value; in osi_property_get_bool()
77 const char* key, const std::vector<uint32_t> default_value) { in osi_property_get_uintlist() argument
80 return default_value; in osi_property_get_uintlist()
91 return default_value; in osi_property_get_uintlist()