HomeSort by relevance Sort by last modified time
    Searched refs:error_ (Results 1 - 25 of 196) 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...]
  /system/update_engine/
common_service_unittest.cc 55 brillo::ErrorPtr error_; member in class:chromeos_update_engine::UpdateEngineServiceTest
68 common_service_.AttemptUpdate(&error_,
73 EXPECT_EQ(nullptr, error_);
83 &error_, "app_ver", "url", UpdateAttemptFlags::kNone, &result));
84 EXPECT_EQ(nullptr, error_);
96 EXPECT_TRUE(common_service_.SetChannel(&error_, "stable-channel", true));
97 ASSERT_EQ(nullptr, error_);
110 EXPECT_TRUE(common_service_.SetChannel(&error_, "beta-channel", true));
111 ASSERT_EQ(nullptr, error_);
121 EXPECT_FALSE(common_service_.SetChannel(&error_, "foo-channel", true))
    [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;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
diagnostic.h 34 : position_(position), consumer_(consumer), error_(error) {}
40 error_(other.error_) {}
52 operator spv_result_t() { return error_; }
58 spv_result_t error_; member in class:libspirv::DiagnosticStream
  /external/bsdiff/
logging.cc 19 : error_(error) {
28 if (error_ != -1) {
29 stream_ << ": " << strerror(error_);
  /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;
  /frameworks/base/tools/aapt2/text/
Printer.cpp 39 if (error_) {
55 error_ = true;
63 error_ = true;
71 error_ = true;
  /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...]
  /frameworks/base/tools/aapt2/format/
Container.cpp 46 error_ = "failed writing container format header";
59 error_ = "too many entries being serialized";
81 error_ = "failed writing to output";
90 error_ = "too many entries being serialized";
127 error_ = "failed writing to output";
135 error_ = error.str();
137 error_ = "failed writing to output";
144 error_ = "failed writing to output";
151 return !error_.empty();
155 return error_;
    [all...]
Archive.cpp 47 error_ = "directory does not exist";
50 error_ = "not a directory";
67 error_ = SystemErrorCodeToString(errno);
79 error_ = SystemErrorCodeToString(errno);
110 return !error_.empty();
114 return error_;
122 std::string error_; member in class:aapt::__anon45968::DirectoryWriter
132 error_ = SystemErrorCodeToString(errno);
155 error_ = ZipWriter::ErrorCodeString(result);
164 error_ = ZipWriter::ErrorCodeString(result)
247 std::string error_; member in class:aapt::__anon45968::ZipFileWriter
    [all...]
  /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/format/binary/
ResChunkPullParser.cpp 59 error_ = "chunk is past the end of the document";
65 error_ = "chunk has too small header";
70 error_ = "chunk's total size is smaller than header " + ChunkHeaderDump(current_chunk_);
74 error_ = "chunk's data extends past the end of the document " + ChunkHeaderDump(current_chunk_);
  /hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/1.0/generic/
GenericOperation.h 49 Operation() : error_(ResponseCode::Ignored), formattedMessageLength_(0) {}
57 if (error_ != ResponseCode::Ignored) return ResponseCode::OperationPending;
79 switch (state.error_) {
100 void setPending() { error_ = ResponseCode::OK; }
108 error_ = ResponseCode::Ignored;
113 if (isPending()) error_ = ResponseCode::Canceled;
117 if (error_ == ResponseCode::Ignored) return;
118 resultCB_->result(error_, getMessage(), userConfirm(key));
119 error_ = ResponseCode::Ignored;
123 bool isPending() const { return error_ != ResponseCode::Ignored;
184 ResponseCode error_ = ResponseCode::Ignored; member in class:android::hardware::confirmationui::V1_0::generic::__anon48021::Operation
    [all...]

Completed in 374 milliseconds

1 2 3 4 5 6 7 8