Searched defs:prop_info (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/include/sys/
H A Dsystem_properties.h36 typedef struct prop_info prop_info; typedef in typeref:struct:prop_info
56 ** the returned prop_info pointer.
58 ** It is safe to cache the prop_info pointer to avoid future
62 const prop_info *__system_property_find(const char *name);
73 int __system_property_read(const prop_info *pi, char *name, char *value);
75 /* Return a prop_info for the nth system property, or NULL if
84 const prop_info *__system_property_find_nth(unsigned n);
86 /* Pass a prop_info for each system property to the provided
97 void (*propfn)(const prop_info *p
[all...]
/bionic/libc/bionic/
H A Dsystem_properties.cpp122 struct prop_info { struct
127 prop_info(const char *name, const uint8_t namelen, const char *value, function in struct:prop_info
137 DISALLOW_COPY_AND_ASSIGN(prop_info);
143 const prop_info *pi;
324 static prop_info *new_prop_info(const char *name, uint8_t namelen,
328 void* const offset = allocate_obj(sizeof(prop_info) + namelen + 1, &off_tmp);
330 prop_info* info = new(offset) prop_info(name, namelen, value, valuelen);
417 static const prop_info *find_property(prop_bt *const trie, const char *name,
462 return reinterpret_cast<prop_info*>(to_prop_ob
[all...]

Completed in 103 milliseconds