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

/system/core/debuggerd/
H A Ddebuggerd.cpp259 android::base::unique_fd amfd(socket(PF_UNIX, SOCK_STREAM, 0));
260 if (amfd.get() < -1) {
270 if (TEMP_FAILURE_RETRY(connect(amfd.get(), reinterpret_cast<struct sockaddr*>(&address),
279 if (setsockopt(amfd.get(), SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) == -1) {
286 if (setsockopt(amfd.get(), SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) == -1) {
292 return amfd.release();
295 static void activity_manager_write(int pid, int signal, int amfd, const std::string& amfd_data) { argument
296 if (amfd == -1) {
304 if (!android::base::WriteFully(amfd, &datum, 4)) {
309 if (!android::base::WriteFully(amfd,
596 int amfd = -1; local
[all...]

Completed in 61 milliseconds