HomeSort by relevance Sort by last modified time
    Searched refs:fsetxattr_failed (Results 1 - 12 of 12) sorted by null

  /bionic/libc/system_properties/include/system_properties/
contexts.h 39 virtual bool Initialize(bool writable, const char* filename, bool* fsetxattr_failed) = 0;
contexts_serialized.h 41 virtual bool Initialize(bool writable, const char* filename, bool* fsetxattr_failed) override;
53 bool MapSerialPropertyArea(bool access_rw, bool* fsetxattr_failed);
contexts_split.h 41 virtual bool Initialize(bool writable, const char* filename, bool* fsetxattr_failed) override;
51 bool MapSerialPropertyArea(bool access_rw, bool* fsetxattr_failed);
context_node.h 47 bool Open(bool access_rw, bool* fsetxattr_failed);
system_properties.h 58 bool AreaInit(const char* filename, bool* fsetxattr_failed);
prop_area.h 95 bool* fsetxattr_failed);
  /bionic/libc/system_properties/
contexts_serialized.cpp 68 bool ContextsSerialized::MapSerialPropertyArea(bool access_rw, bool* fsetxattr_failed) {
78 prop_area::map_prop_area_rw(filename, "u:object_r:properties_serial:s0", fsetxattr_failed);
98 bool ContextsSerialized::Initialize(bool writable, const char* filename, bool* fsetxattr_failed) {
107 if (fsetxattr_failed) {
108 *fsetxattr_failed = false;
112 if (!context_nodes_[i].Open(true, fsetxattr_failed)) {
116 if (open_failed || !MapSerialPropertyArea(true, fsetxattr_failed)) {
context_node.cpp 45 bool ContextNode::Open(bool access_rw, bool* fsetxattr_failed) {
60 pa_ = prop_area::map_prop_area_rw(filename, context_, fsetxattr_failed);
contexts_split.cpp 196 bool ContextsSplit::MapSerialPropertyArea(bool access_rw, bool* fsetxattr_failed) {
206 prop_area::map_prop_area_rw(filename, "u:object_r:properties_serial:s0", fsetxattr_failed);
298 bool ContextsSplit::Initialize(bool writable, const char* filename, bool* fsetxattr_failed) {
307 if (fsetxattr_failed) {
308 *fsetxattr_failed = false;
311 ListForEach(contexts_, [&fsetxattr_failed, &open_failed](ContextListNode* l) {
312 if (!l->Open(true, fsetxattr_failed)) {
316 if (open_failed || !MapSerialPropertyArea(true, fsetxattr_failed)) {
prop_area.cpp 52 bool* fsetxattr_failed) {
81 if (fsetxattr_failed) {
82 *fsetxattr_failed = true;
system_properties.cpp 97 bool SystemProperties::AreaInit(const char* filename, bool* fsetxattr_failed) {
104 if (!contexts_->Initialize(true, property_filename_, fsetxattr_failed)) {
  /bionic/libc/bionic/
system_property_api.cpp 58 bool fsetxattr_failed = false; local
59 return system_properties.AreaInit(PROP_FILENAME, &fsetxattr_failed) && !fsetxattr_failed ? 0 : -1;

Completed in 330 milliseconds