Home
last modified time | relevance | path

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

/external/bcc/src/python/bcc/
Dperf.py77 errno_ = ct.get_errno()
78 raise OSError(errno_, os.strerror(errno_))
83 errno_ = ct.get_errno()
84 raise OSError(errno_, os.strerror(errno_))
89 errno_ = ct.get_errno()
90 raise OSError(errno_, os.strerror(errno_))
/external/protobuf/src/google/protobuf/io/
Dzero_copy_stream_impl.cc111 errno_(0), in CopyingFileInputStream()
118 GOOGLE_LOG(ERROR) << "close() failed: " << strerror(errno_); in ~CopyingFileInputStream()
131 errno_ = errno; in Close()
148 errno_ = errno; in Read()
210 errno_(0) { in CopyingFileOutputStream()
216 GOOGLE_LOG(ERROR) << "close() failed: " << strerror(errno_); in ~CopyingFileOutputStream()
229 errno_ = errno; in Close()
261 errno_ = errno; in Write()
Dzero_copy_stream_impl.h104 int GetErrno() { return errno_; } in GetErrno()
117 int errno_; variable
186 int GetErrno() { return errno_; } in GetErrno()
198 int errno_; variable
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h664 : errno_(errno_value), in SetErrnoAndReturnAction()
668 errno = errno_; in Perform()
673 const int errno_;
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-actions.h782 : errno_(errno_value),
786 errno = errno_;
791 const int errno_;
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h757 : errno_(errno_value),
761 errno = errno_;
766 const int errno_;
/external/python/httplib2/python3/httplib2/
D__init__.py1510 errno_ = (
1513 if errno_ in (errno.ENETUNREACH, errno.EADDRNOTAVAIL) and i < RETRIES: