HomeSort by relevance Sort by last modified time
    Searched refs:ErrorCode (Results 101 - 125 of 192) sorted by null

1 2 3 45 6 7 8

  /system/update_engine/payload_consumer/
install_plan.h 139 processor_->ActionComplete(this, ErrorCode::kSuccess);
delta_performer_integration_test.cc     [all...]
  /external/giflib/
gif_lib.h 132 int EGifCloseFile(GifFileType *GifFile, int *ErrorCode);
183 int DGifCloseFile(GifFileType * GifFile, int *ErrorCode);
228 extern const char *GifErrorString(int ErrorCode); /* new in 2012 - ESR */
dgif_lib.c 622 DGifCloseFile(GifFileType *GifFile, int *ErrorCode)
650 if (ErrorCode != NULL)
651 *ErrorCode = D_GIF_ERR_NOT_READABLE;
658 if (ErrorCode != NULL)
659 *ErrorCode = D_GIF_ERR_CLOSE_FAILED;
667 if (ErrorCode != NULL)
668 *ErrorCode = D_GIF_SUCCEEDED;
    [all...]
egif_lib.c 757 EGifCloseFile(GifFileType *GifFile, int *ErrorCode)
771 if (ErrorCode != NULL)
772 *ErrorCode = E_GIF_ERR_NOT_WRITEABLE;
798 if (ErrorCode != NULL)
799 *ErrorCode = E_GIF_ERR_CLOSE_FAILED;
805 if (ErrorCode != NULL)
806 *ErrorCode = E_GIF_SUCCEEDED;
    [all...]
  /system/update_engine/common/
test_utils.h 47 void PrintTo(const ErrorCode& error_code, ::std::ostream* os);
234 this->processor_->ActionComplete(this, ErrorCode::kSuccess);
268 this->processor_->ActionComplete(this, ErrorCode::kSuccess);
  /system/update_engine/
update_engine_client_android.cc 97 ErrorCode code = static_cast<ErrorCode>(error_code);
100 client_->ExitWhenIdle(code == ErrorCode::kSuccess ? EX_OK : 1);
update_engine_client.cc 40 using chromeos_update_engine::ErrorCode;
521 ErrorCode code = static_cast<ErrorCode>(last_attempt_error);
binder_service_brillo.h 53 void SendPayloadApplicationComplete(ErrorCode error_code) override {}
dbus_service.h 133 // ErrorCode will be returned.
166 void SendPayloadApplicationComplete(ErrorCode error_code) override {}
metrics.h 267 ErrorCode internal_error_code,
omaha_response_handler_action_unittest.cc 66 : code_(ErrorCode::kError),
70 ErrorCode code) {
76 ErrorCode code_;
134 return delegate.code_ == ErrorCode::kSuccess;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Http2Test.java 224 frame.writeInt(ErrorCode.COMPRESSION_ERROR.httpCode);
227 @Override public void rstStream(int streamId, ErrorCode errorCode) {
229 assertEquals(ErrorCode.COMPRESSION_ERROR, errorCode);
565 final ErrorCode expectedError = ErrorCode.PROTOCOL_ERROR;
579 int lastGoodStreamId, ErrorCode errorCode, ByteString debugData) {
581 assertEquals(expectedError, errorCode);
    [all...]
MockSpdyPeer.java 224 public ErrorCode errorCode;
273 @Override public void rstStream(int streamId, ErrorCode errorCode) {
277 this.errorCode = errorCode;
288 @Override public void goAway(int lastGoodStreamId, ErrorCode errorCode, ByteString debugData) {
292 this.errorCode = errorCode;
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Spdy3.java 218 ErrorCode errorCode = ErrorCode.fromSpdy3Rst(errorCodeInt);
219 if (errorCode == null) {
222 handler.rstStream(streamId, errorCode);
253 ErrorCode errorCode = ErrorCode.fromSpdyGoAway(errorCodeInt);
254 if (errorCode == null) {
257 handler.goAway(lastGoodStreamId, errorCode, ByteString.EMPTY)
    [all...]
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 248 catch(const COutBufferException &e) { return e.ErrorCode; }
361 catch(const CInBufferException &e) { return e.ErrorCode; }
362 catch(const COutBufferException &e) { return e.ErrorCode; }
  /external/webrtc/webrtc/voice_engine/
voe_base_impl.h 106 void OnErrorIsReported(const ErrorCode error) override;
  /system/update_engine/update_manager/
policy.h 99 std::vector<std::tuple<int, chromeos_update_engine::ErrorCode, base::Time>>
  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 84 ConversionResult ErrorCode;
87 ConvertUTFResultContainer(ConversionResult ErrorCode)
88 : ErrorCode(ErrorCode) {}
124 auto ErrorCode =
130 return std::make_pair(ErrorCode, Decoded);
141 auto ErrorCode = ConvertUTF8toUTF32Partial(
147 return std::make_pair(ErrorCode, Decoded);
153 ConversionResult ErrorCode;
156 std::tie(ErrorCode, Decoded) = ConvertUTF8ToUnicodeScalarsLenient(S)
    [all...]
  /external/llvm/include/llvm/Support/
ErrorOr.h 98 ErrorOr(E ErrorCode,
103 new (getErrorStorage()) std::error_code(make_error_code(ErrorCode));
  /external/webrtc/webrtc/modules/audio_device/
audio_device_impl.h 58 ErrorCode LastError() const override;
226 mutable ErrorCode _lastError;
  /external/webrtc/webrtc/test/channel_transport/
udp_transport.h 118 enum ErrorCode
325 virtual ErrorCode LastError() const = 0;
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/protocol/
Vvm3EventHandler.java 48 public @interface ErrorCode {
232 private static void postError(VoicemailStatus.Editor editor, @ErrorCode int errorCode) {
233 switch (errorCode) {
254 editor.setConfigurationState(errorCode);
262 editor.setDataChannelState(errorCode);
265 editor.setNotificationChannelState(errorCode);
268 Log.wtf(TAG, "unknown error code: " + errorCode);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pdh.h 26 #define IsSuccessSeverity(ErrorCode) ((!((DWORD)(ErrorCode) & 0xC0000000)) ? TRUE : FALSE)
27 #define IsInformationalSeverity(ErrorCode) ((((DWORD)(ErrorCode) & 0xC0000000)==(DWORD)0x40000000) ? TRUE : FALSE)
28 #define IsWarningSeverity(ErrorCode) ((((DWORD)(ErrorCode) & 0xC0000000)==(DWORD)0x80000000) ? TRUE : FALSE)
29 #define IsErrorSeverity(ErrorCode) ((((DWORD)(ErrorCode) & 0xC0000000)==(DWORD)0xC0000000) ? TRUE : FALSE)
  /external/pdfium/third_party/lcms2-2.6/src/
cmserr.c 496 static void DefaultLogErrorHandlerFunction(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *Text);
521 void DefaultLogErrorHandlerFunction(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *Text)
527 cmsUNUSED_PARAMETER(ErrorCode);
553 void CMSEXPORT cmsSignalError(cmsContext ContextID, cmsUInt32Number ErrorCode, const char *ErrorText, ...)
567 lhg ->LogErrorHandler(ContextID, ErrorCode, Buffer);

Completed in 1446 milliseconds

1 2 3 45 6 7 8