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

/system/core/debuggerd/tombstoned/
H A Dtombstoned_client.cpp33 bool tombstoned_connect(pid_t pid, unique_fd* tombstoned_socket, unique_fd* output_fd, argument
78 *tombstoned_socket = std::move(sockfd);
83 bool tombstoned_notify_completion(int tombstoned_socket) { argument
86 if (TEMP_FAILURE_RETRY(write(tombstoned_socket, &packet, sizeof(packet))) != sizeof(packet)) {
/system/core/debuggerd/
H A Dcrash_dump.cpp160 unique_fd& tombstoned_socket, unique_fd& output_fd,
165 if (!tombstoned_connect(target, &tombstoned_socket, &output_fd, kDebuggerdAnyIntercept)) {
206 unique_fd tombstoned_socket; local
211 abort_handler(target, tombstoned_connected, tombstoned_socket, output_fd, abort_msg);
350 tombstoned_connected = tombstoned_connect(target, &tombstoned_socket, &output_fd, dump_type_enum);
459 if (tombstoned_connected && !tombstoned_notify_completion(tombstoned_socket.get())) {
159 abort_handler(pid_t target, const bool tombstoned_connected, unique_fd& tombstoned_socket, unique_fd& output_fd, const char* abort_msg) argument
H A Ddebuggerd_test.cpp612 unique_fd tombstoned_socket, input_fd; local
613 ASSERT_TRUE(tombstoned_connect(pid, &tombstoned_socket, &input_fd, kDebuggerdTombstone));
679 unique_fd tombstoned_socket, input_fd;
680 ASSERT_TRUE(tombstoned_connect(pid, &tombstoned_socket, &input_fd, kDebuggerdTombstone));
682 tombstoned_notify_completion(tombstoned_socket.get());
715 unique_fd tombstoned_socket, input_fd; local
716 ASSERT_TRUE(tombstoned_connect(self, &tombstoned_socket, &input_fd, kDebuggerdNativeBacktrace));
718 tombstoned_notify_completion(tombstoned_socket.get());
723 ASSERT_TRUE(tombstoned_connect(self, &tombstoned_socket, &input_fd, kDebuggerdJavaBacktrace));
725 tombstoned_notify_completion(tombstoned_socket
753 unique_fd tombstoned_socket, input_fd; local
[all...]

Completed in 366 milliseconds