Searched refs:default_value (Results 1 - 4 of 4) sorted by relevance

/system/core/include/cutils/
H A Dproperties.h46 int property_get(const char *key, char *value, const char *default_value);
62 int8_t property_get_bool(const char *key, int8_t default_value);
83 int64_t property_get_int64(const char *key, int64_t default_value);
104 int32_t property_get_int32(const char *key, int32_t default_value);
119 int property_get(const char *key, char *value, const char *default_value) { argument
124 return __property_get_real(key, value, default_value);
/system/core/toolbox/
H A Dgetprop.c39 char *default_value; local
41 default_value = argv[2];
43 default_value = "";
46 property_get(argv[1], value, default_value);
/system/core/libcutils/
H A Dproperties.c33 int8_t property_get_bool(const char *key, int8_t default_value) { argument
35 return default_value;
38 int8_t result = default_value;
62 intmax_t default_value) {
64 return default_value;
67 intmax_t result = default_value;
80 result = default_value;
81 ALOGV("%s(%s,%" PRIdMAX ") - overflow", __FUNCTION__, key, default_value);
84 result = default_value;
85 ALOGV("%s(%s,%" PRIdMAX ") - out of range", __FUNCTION__, key, default_value);
61 property_get_imax(const char *key, intmax_t lower_bound, intmax_t upper_bound, intmax_t default_value) argument
99 property_get_int64(const char *key, int64_t default_value) argument
103 property_get_int32(const char *key, int32_t default_value) argument
117 property_get(const char *key, char *value, const char *default_value) argument
227 property_get(const char *key, char *value, const char *default_value) argument
350 property_get(const char *key, char *value, const char *default_value) argument
[all...]
/system/core/include/system/
H A Daudio.h817 int default_value; /* default gain value in millibels */ member in struct:audio_gain

Completed in 1043 milliseconds