Home
last modified time | relevance | path

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

/system/core/trusty/fuzz/
Dutils.cpp78 : tipc_dev_(tipc_dev), ta_port_(ta_port), ta_fd_(-1) {} in TrustyApp()
87 ta_fd_.reset(fd); in Connect()
93 if (ta_fd_ == -1) { in Read()
98 int rc = read(ta_fd_, buf, len); in Read()
108 if (ta_fd_ == -1) { in Write()
113 int rc = write(ta_fd_, buf, len); in Write()
123 if (ta_fd_ == -1) { in GetRawFd()
127 return ta_fd_; in GetRawFd()
131 ta_fd_.reset(); in Disconnect()
/system/core/trusty/fuzz/include/trusty/fuzz/
Dutils.h44 android::base::unique_fd ta_fd_; variable