HomeSort by relevance Sort by last modified time
    Searched refs:error_ (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/libchrome/dbus/
scoped_dbus_error.cc 10 dbus_error_init(&error_);
14 dbus_error_free(&error_);
18 return dbus_error_is_set(&error_);
scoped_dbus_error.h 22 DBusError* get() { return &error_; }
24 const char* name() { return error_.name; }
25 const char* message() { return error_.message; }
28 DBusError error_; member in class:dbus::ScopedDBusError
  /external/ImageMagick/Magick++/tests/
coalesceImages.cpp 43 catch( Exception &error_ )
45 cout << "Caught exception: " << error_.what() << endl;
48 catch( exception &error_ )
50 cout << "Caught exception: " << error_.what() << endl;
averageImages.cpp 56 catch( Exception &error_ )
58 cout << "Caught exception: " << error_.what() << endl;
61 catch( exception &error_ )
63 cout << "Caught exception: " << error_.what() << endl;
exceptions.cpp 46 catch( Exception & /*error_*/ )
70 catch ( Exception& /*error_*/ )
79 catch( Exception &error_ )
81 cout << "Bogus catch: Caught exception: " << error_.what() << endl;
85 catch( exception &error_ )
87 cout << "Bogus catch: Caught exception: " << error_.what() << endl;
geometry.cpp 53 catch( Exception &error_ )
55 cout << "Caught exception: " << error_.what() << endl;
58 catch( exception &error_ )
60 cout << "Caught exception: " << error_.what() << endl;
morphImages.cpp 52 catch( Exception &error_ )
54 cout << "Caught exception: " << error_.what() << endl;
57 catch( exception &error_ )
59 cout << "Caught exception: " << error_.what() << endl;
appendImages.cpp 72 catch( Exception &error_ )
74 cout << "Caught exception: " << error_.what() << endl;
77 catch( exception &error_ )
79 cout << "Caught exception: " << error_.what() << endl;
colorHistogram.cpp 82 catch( Exception &error_ )
84 cout << "Caught exception: " << error_.what() << endl;
87 catch( exception &error_ )
89 cout << "Caught exception: " << error_.what() << endl;
color.cpp 136 catch( Exception &error_ )
138 cout << "Caught exception: " << error_.what() << endl;
141 catch( exception &error_ )
143 cout << "Caught exception: " << error_.what() << endl;
montageImages.cpp 120 catch( Exception &error_ )
122 cout << "Caught exception: " << error_.what() << endl;
125 catch( exception &error_ )
127 cout << "Caught exception: " << error_.what() << endl;
  /external/bsdiff/
logging.cc 19 : error_(error) {
28 if (error_ != -1) {
29 stream_ << ": " << strerror(error_);
logging.h 37 int error_; // The saved errno value. member in class:LogMessage
  /external/ImageMagick/Magick++/demo/
detrans.cpp 33 catch ( Exception &error_ )
35 cout << error_.what() << endl;
51 catch( Exception &error_ )
53 cout << error_.what() << endl;
flip.cpp 53 catch( exception &error_ )
55 cout << "Caught exception: " << error_.what() << endl;
  /external/pdfium/fxjs/
cjs_return.h 21 WideString Error() const { return error_; }
30 WideString error_; member in class:CJS_Return
cjs_return.cpp 11 CJS_Return::CJS_Return(const WideString& err) : is_error_(true), error_(err) {}
  /external/webrtc/webrtc/base/
httprequest.h 69 HttpErrorType error() { return error_; }
72 void set_error(HttpErrorType error) { error_ = error; }
83 HttpErrorType error_; member in class:rtc::HttpRequest
97 error_ = HE_DEFAULT;
101 HttpErrorType error() const { return error_; }
108 HttpErrorType error_; member in class:rtc::HttpMonitor
macasyncsocket.cc 39 error_(0),
88 if (err == SOCKET_ERROR) error_ = errno;
103 error_ = error;
104 SignalCloseEvent(this, error_);
142 error_ = errno;
143 if (error_ == EINPROGRESS) {
160 error_ = errno;
184 error_ = errno;
194 if (received == SOCKET_ERROR) error_ = errno;
212 error_ = errno
    [all...]
nethelpers.h 45 void set_error(int error) { error_ = error; }
54 int error_; member in class:rtc::AsyncResolver
httprequest.cc 41 error_ = error;
57 error_(HE_NONE) {}
105 if (error_) {
106 LOG(LS_INFO) << "HttpRequest request error: " << error_;
  /external/deqp-deps/SPIRV-Tools/source/
diagnostic.h 37 error_(error) {}
57 operator spv_result_t() { return error_; }
64 spv_result_t error_; member in class:spvtools::DiagnosticStream
diagnostic.cpp 78 error_(other.error_) {
80 other.error_ = SPV_FAILED_MATCH;
88 if (error_ != SPV_FAILED_MATCH && consumer_ != nullptr) {
90 switch (error_) {
  /external/swiftshader/third_party/SPIRV-Tools/source/
diagnostic.h 37 error_(error) {}
57 operator spv_result_t() { return error_; }
64 spv_result_t error_; member in class:spvtools::DiagnosticStream
diagnostic.cpp 78 error_(other.error_) {
80 other.error_ = SPV_FAILED_MATCH;
88 if (error_ != SPV_FAILED_MATCH && consumer_ != nullptr) {
90 switch (error_) {

Completed in 306 milliseconds

1 2 3 4 5