Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/dom/quota/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  QMResult.h   Sprache: C

 
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */


#ifndef DOM_QUOTA_QMRESULT_H_
#define DOM_QUOTA_QMRESULT_H_

#include "ErrorList.h"
#include "mozilla/dom/quota/Config.h"
#include "mozilla/dom/quota/ForwardDecls.h"

namespace mozilla {

#ifdef QM_ERROR_STACKS_ENABLED
// A wrapped nsresult, primarily intended for use along with mozilla::Result
// and QM_TRY macros. The wrapper contains stack id and frame id which are
// reported in LogError besides the error result itself.
//
// XXX Document the general situation more, bug 1709777.
class QMResult {
  uint64_t mStackId;
  uint32_t mFrameId;
  nsresult mNSResult;

 public:
  QMResult() : QMResult(NS_OK) {}

  explicit QMResult(nsresult aNSResult);

  uint64_t StackId() const { return mStackId; }

  uint32_t FrameId() const { return mFrameId; }

  nsresult NSResult() const { return mNSResult; }

  /**
   * Propagate the result.
   *
   * This is used by GenericErrorResult<QMResult> to create a propagated
   * result.
   */

  QMResult Propagate() const {
    return QMResult{mStackId, mFrameId + 1, mNSResult};
  }

 private:
  QMResult(uint64_t aStackId, uint32_t aFrameId, nsresult aNSResult)
      : mStackId(aStackId), mFrameId(aFrameId), mNSResult(aNSResult) {}
};
#endif

inline QMResult ToQMResult(nsresult aValue) { return QMResult(aValue); }

}  // namespace mozilla

#endif

Messung V0.5
C=95 H=93 G=93

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.