Home
last modified time | relevance | path

Searched refs:property_set_fd (Results 1 – 1 of 1) sorted by relevance

/system/core/init/
Dproperty_service.cpp88 static int property_set_fd = -1; variable
519 int s = accept4(property_set_fd, nullptr, nullptr, SOCK_CLOEXEC); in handle_property_set_fd()
1010 property_set_fd = CreateSocket(PROP_SERVICE_NAME, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK, in StartPropertyService()
1012 if (property_set_fd == -1) { in StartPropertyService()
1016 listen(property_set_fd, 8); in StartPropertyService()
1018 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) { in StartPropertyService()