• Home
  • Raw
  • Download

Lines Matching refs:key

33 int8_t property_get_bool(const char *key, int8_t default_value) {  in property_get_bool()  argument
34 if (!key) { in property_get_bool()
41 int len = property_get(key, buf, ""); in property_get_bool()
61 static intmax_t property_get_imax(const char *key, intmax_t lower_bound, intmax_t upper_bound, in property_get_imax() argument
63 if (!key) { in property_get_imax()
71 int len = property_get(key, buf, ""); in property_get_imax()
81 ALOGV("%s(%s,%" PRIdMAX ") - overflow", __FUNCTION__, key, default_value); in property_get_imax()
85 ALOGV("%s(%s,%" PRIdMAX ") - out of range", __FUNCTION__, key, default_value); in property_get_imax()
90 __FUNCTION__, key, default_value); in property_get_imax()
99 int64_t property_get_int64(const char *key, int64_t default_value) { in property_get_int64() argument
100 return (int64_t)property_get_imax(key, INT64_MIN, INT64_MAX, default_value); in property_get_int64()
103 int32_t property_get_int32(const char *key, int32_t default_value) { in property_get_int32() argument
104 return (int32_t)property_get_imax(key, INT32_MIN, INT32_MAX, default_value); in property_get_int32()
110 int property_set(const char *key, const char *value) in property_set() argument
112 return __system_property_set(key, value); in property_set()
115 int property_get(const char *key, char *value, const char *default_value) in property_get() argument
119 len = __system_property_get(key, value); in property_get()
136 void (*propfn)(const char *key, const char *value, void *cookie);
151 void (*propfn)(const char *key, const char *value, void *cookie), in property_list() argument