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

/bionic/libc/include/sys/
H A Dsystem_properties.h39 typedef struct prop_info prop_info; typedef in typeref:struct:prop_info
49 * Returns a `prop_info` corresponding system property `name`, or nullptr if it doesn't exist.
54 const prop_info* __system_property_find(const char* __name);
59 void __system_property_read_callback(const prop_info* __pi,
64 * Passes a `prop_info` for each system property to the provided
69 int __system_property_foreach(void (*__callback)(const prop_info* __pi, void* __cookie), void* __cookie)
85 bool __system_property_wait(const prop_info* __pi, uint32_t __old_serial, uint32_t* __new_serial_ptr, const struct timespec* __relative_timeout)
91 int __system_property_read(const prop_info* __pi, char* __name, char* __value);
95 const prop_info* __system_property_find_nt
[all...]
/bionic/tools/versioner/current/sys/
H A Dsystem_properties.h39 typedef struct prop_info prop_info; typedef in typeref:struct:prop_info
49 * Returns a `prop_info` corresponding system property `name`, or nullptr if it doesn't exist.
54 const prop_info* __system_property_find(const char* __name);
59 void __system_property_read_callback(const prop_info* __pi,
64 * Passes a `prop_info` for each system property to the provided
69 int __system_property_foreach(void (*__callback)(const prop_info* __pi, void* __cookie), void* __cookie)
85 bool __system_property_wait(const prop_info* __pi, uint32_t __old_serial, uint32_t* __new_serial_ptr, const struct timespec* __relative_timeout)
91 int __system_property_read(const prop_info* __pi, char* __name, char* __value);
95 const prop_info* __system_property_find_nt
[all...]
/bionic/libc/system_properties/
H A Dprop_info.cpp29 #include "system_properties/prop_info.h"
35 static_assert(sizeof(kLongLegacyError) < prop_info::kLongLegacyErrorBufferSize,
38 prop_info::prop_info(const char* name, uint32_t namelen, const char* value, uint32_t valuelen) { function in class:prop_info
46 prop_info::prop_info(const char* name, uint32_t namelen, uint32_t long_offset) { function in class:prop_info
/bionic/libc/system_properties/include/system_properties/
H A Dprop_info.h44 struct prop_info { struct
82 prop_info(const char* name, uint32_t namelen, const char* value, uint32_t valuelen);
83 prop_info(const char* name, uint32_t namelen, uint32_t long_offset);
86 DISALLOW_IMPLICIT_CONSTRUCTORS(prop_info);
89 static_assert(sizeof(prop_info) == 96, "sizeof struct prop_info must be 96 bytes");

Completed in 77 milliseconds