HomeSort by relevance Sort by last modified time
    Searched full:amfd (Results 1 - 5 of 5) sorted by null

  /system/core/debuggerd/
utility.h 44 int amfd; member in struct:log_t
53 : tfd(-1), amfd(-1), crashed_tid(-1), current_tid(-1), should_retrieve_logcat(true) {}
tombstone.cpp 608 if (log->amfd >= 0) {
613 TEMP_FAILURE_RETRY( write(log->amfd, &datum, 4) );
615 TEMP_FAILURE_RETRY( write(log->amfd, &datum, 4) );
649 if (log->amfd >= 0) {
651 TEMP_FAILURE_RETRY( write(log->amfd, &eodMarker, 1) );
653 TEMP_FAILURE_RETRY( read(log->amfd, &eodMarker, 1) );
709 int amfd = socket(PF_UNIX, SOCK_STREAM, 0); local
710 if (amfd >= 0) {
718 amfd, reinterpret_cast<struct sockaddr*>(&address), sizeof(address)));
723 err = setsockopt(amfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv))
771 int amfd = activity_manager_connect(); local
    [all...]
backtrace.cpp 106 void dump_backtrace(int fd, int amfd, pid_t pid, pid_t tid, bool* detach_failed,
110 log.amfd = amfd;
backtrace.h 28 void dump_backtrace(int fd, int amfd, pid_t pid, pid_t tid, bool* detach_failed,
utility.cpp 65 bool write_to_activitymanager = (log->amfd != -1);
85 int written = write_to_am(log->amfd, buf, len);
88 log->amfd = -1;

Completed in 403 milliseconds