Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/lite/src/runtime/kernel/ascend310/src/
Dacl_env_guard.cc26 AclEnvGuard::AclEnvGuard(std::string_view cfg_file) : errno_(ACL_ERROR_NONE) { in AclEnvGuard()
27 errno_ = aclInit(cfg_file.data()); in AclEnvGuard()
28 if (errno_ != ACL_ERROR_NONE && errno_ != ACL_ERROR_REPEAT_INITIALIZE) { in AclEnvGuard()
36 errno_ = aclFinalize(); in ~AclEnvGuard()
37 if (errno_ != ACL_ERROR_NONE && errno_ != ACL_ERROR_REPEAT_FINALIZE) { in ~AclEnvGuard()
Dacl_env_guard.h30 aclError GetErrno() const { return errno_; } in GetErrno()
37 aclError errno_; variable
/third_party/boost/libs/chrono/test/clock/
Derrored_clock.hpp27 static int errno_; member in errored_clock
30 errno_=err; in set_errno()
37 errno_, in now()
50 errno_, in now()
56 ec.assign( errno_, ::boost::system::system_category() ); in now()
60 int errored_clock::errno_; member in errored_clock
/third_party/mindspore/mindspore/ccsrc/cxx_api/graph/acl/
Dacl_env_guard.cc25 errno_ = aclInit(nullptr); in AclEnvGuard()
26 if (errno_ != ACL_ERROR_NONE && errno_ != ACL_ERROR_REPEAT_INITIALIZE) { in AclEnvGuard()
34 errno_ = aclFinalize(); in ~AclEnvGuard()
35 if (errno_ != ACL_ERROR_NONE && errno_ != ACL_ERROR_REPEAT_FINALIZE) { in ~AclEnvGuard()
Dacl_env_guard.h28 aclError GetErrno() const { return errno_; } in GetErrno()
35 aclError errno_; variable
/third_party/protobuf/src/google/protobuf/io/
Dzero_copy_stream_impl.cc105 errno_(0), in CopyingFileInputStream()
111 GOOGLE_LOG(ERROR) << "close() failed: " << strerror(errno_); in ~CopyingFileInputStream()
124 errno_ = errno; in Close()
141 errno_ = errno; in Read()
192 errno_(0) {} in CopyingFileOutputStream()
197 GOOGLE_LOG(ERROR) << "close() failed: " << strerror(errno_); in ~CopyingFileOutputStream()
210 errno_ = errno; in Close()
242 errno_ = errno; in Write()
Dzero_copy_stream_impl.h106 int GetErrno() const { return errno_; } in GetErrno()
119 int errno_; variable
188 int GetErrno() const { return errno_; } in GetErrno()
200 int errno_; variable
/third_party/boost/libs/coroutine/performance/
Dbind_processor_hpux.cpp21 int errno_( in bind_to_processor() local
27 if ( errno_ != 0) in bind_to_processor()
Dbind_processor_linux.cpp25 int errno_( ::pthread_setaffinity_np( ::pthread_self(), sizeof( cpuset), & cpuset) ); in bind_to_processor() local
26 if ( errno_ != 0) in bind_to_processor()
/third_party/boost/libs/coroutine2/performance/
Dbind_processor_hpux.cpp21 int errno_( in bind_to_processor() local
27 if ( errno_ != 0) in bind_to_processor()
Dbind_processor_linux.cpp25 int errno_( ::pthread_setaffinity_np( ::pthread_self(), sizeof( cpuset), & cpuset) ); in bind_to_processor() local
26 if ( errno_ != 0) in bind_to_processor()
/third_party/mindspore/mindspore/ccsrc/cxx_api/graph/ascend/
Dascend_graph_impl.h72 Status GetErrno() const { return errno_; } in GetErrno()
79 Status errno_; variable
Dascend_graph_impl.cc294 errno_ = kMCFailed; in MsEnvGuard()
318 errno_ = kMCFailed; in MsEnvGuard()
330 errno_ = kSuccess; in MsEnvGuard()
/third_party/googletest/googlemock/include/gmock/
Dgmock-actions.h893 : errno_(errno_value),
897 errno = errno_;
902 const int errno_;