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

1 2 3 4 5 6 7 8

  /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
  /frameworks/native/libs/vr/libpdx/private/pdx/
status.h 14 ErrorStatus(int error) : error_{error} {}
15 int error() const { return error_; }
20 int error_; member in struct:android::pdx::ErrorStatus
29 Status() : error_{-1} {}
39 : error_{error_status.error()} {}
45 : value_{std::move(other.value_)}, error_{other.error_} {
46 other.error_ = -1;
52 error_ = other.error_;
    [all...]
  /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;
  /system/update_engine/
common_service_unittest.cc 54 brillo::ErrorPtr error_; member in class:chromeos_update_engine::UpdateEngineServiceTest
63 &error_, "app_ver", "url",
65 EXPECT_EQ(nullptr, error_);
76 EXPECT_TRUE(common_service_.SetChannel(&error_, "stable-channel", true));
77 ASSERT_EQ(nullptr, error_);
90 EXPECT_TRUE(common_service_.SetChannel(&error_, "beta-channel", true));
91 ASSERT_EQ(nullptr, error_);
101 EXPECT_FALSE(common_service_.SetChannel(&error_, "foo-channel", true));
102 ASSERT_NE(nullptr, error_);
103 EXPECT_TRUE(error_->HasError(UpdateEngineService::kErrorDomain
    [all...]
  /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;
button.cpp 93 catch( exception &error_ )
95 cout << "Caught exception: " << error_.what() << endl;
  /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
  /frameworks/native/services/vr/performanced/
directory_reader.h 20 error_ = errno;
32 int GetError() const { return error_; }
46 int error_; member in class:android::dvr::DirectoryReader
  /frameworks/base/tools/aapt2/io/
FileInputStream.cpp 45 error_ = SystemErrorCodeToString(errno);
67 error_ = SystemErrorCodeToString(errno);
94 return !error_.empty();
98 return error_;
  /frameworks/base/tools/aapt2/unflatten/
ResChunkPullParser.cpp 60 error_ = "chunk is past the end of the document";
66 error_ = "chunk has too small header";
71 error_ = "chunk's total size is smaller than header " + ChunkHeaderDump(current_chunk_);
75 error_ = "chunk's data extends past the end of the document " + ChunkHeaderDump(current_chunk_);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
diagnostic.h 82 : position_(position), pDiagnostic_(pDiagnostic), error_(error) {}
88 error_(other.error_) {
105 operator spv_result_t() { return error_; }
111 spv_result_t error_; member in class:libspirv::DiagnosticStream
  /frameworks/base/tools/aapt2/flatten/
Archive.cpp 47 error_ = "directory does not exist";
50 error_ = "not a directory";
67 error_ = SystemErrorCodeToString(errno);
79 error_ = SystemErrorCodeToString(errno);
109 bool HadError() const override { return !error_.empty(); }
111 std::string GetError() const override { return error_; }
118 std::string error_; member in class:aapt::__anon40931::DirectoryWriter
128 error_ = SystemErrorCodeToString(errno);
151 error_ = ZipWriter::ErrorCodeString(result);
160 error_ = ZipWriter::ErrorCodeString(result)
239 std::string error_; member in class:aapt::__anon40931::ZipFileWriter
    [all...]
  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker.cpp 47 : callsite_(callsite), context_(context), symbols_(symbols), decls_(decls), error_(false) {}
51 error_ = true;
55 bool HasError() const { return error_; }
64 bool error_; member in class:aapt::__anon40937::ReferenceVisitor
117 error_ = true;
139 error_ = true;
148 return error_ || reference_visitor_.HasError();
160 bool error_ = false; member in class:aapt::__anon40937::XmlVisitor

Completed in 402 milliseconds

1 2 3 4 5 6 7 8