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

Quelle  GLLibraryLoader.cpp   Sprache: C

 
/* 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/. */


#include "GLLibraryLoader.h"

#include <regex>

#include "mozilla/gfx/Logging.h"
#include "nsDebug.h"

#ifdef WIN32
#  include <windows.h>
#endif

namespace mozilla {
namespace gl {

void ClearSymbols(const SymLoadStruct* const firstStruct) {
  for (auto itr = firstStruct; itr->symPointer; ++itr) {
    *itr->symPointer = nullptr;
  }
}

bool SymbolLoader::LoadSymbols(const SymLoadStruct* const firstStruct,
                               const bool warnOnFailures) const {
  bool ok = true;

  for (auto itr = firstStruct; itr->symPointer; ++itr) {
    *itr->symPointer = nullptr;

    for (const auto& s : itr->symNames) {
      if (!s) break;

      const auto p = GetProcAddress(s);
      if (p) {
        *itr->symPointer = p;
        break;
      }
    }

    if (!*itr->symPointer) {
      if (warnOnFailures) {
        printf_stderr("Can't find symbol '%s'.\n", itr->symNames[0]);
      }
      ok = false;
    }
  }

  return ok;
}

// -

PRFuncPtr SymbolLoader::GetProcAddress(const charconst name) const {
#ifdef DEBUG
  static const std::regex kRESymbol("[a-z].*");
  if (!std::regex_match(name, kRESymbol)) {
    gfxCriticalError() << "Bad symbol name : " << name;
  }
#endif

  PRFuncPtr ret = nullptr;
  if (!ret && mLib) {
    ret = PR_FindFunctionSymbol(mLib, name);
  }
  if (!ret && mPfn) {
    ret = mPfn(name);
  }
  return ret;
}

}  // namespace gl
}  // namespace mozilla

Messung V0.5
C=94 H=96 G=94

¤ Dauer der Verarbeitung: 0.16 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.