Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/absl/debugging/symbolize_unimplemented.inc is written in an unsupported language. File is not indexed.

0001 // Copyright 2018 The Abseil Authors.
0002 //
0003 // Licensed under the Apache License, Version 2.0 (the "License");
0004 // you may not use this file except in compliance with the License.
0005 // You may obtain a copy of the License at
0006 //
0007 //      https://www.apache.org/licenses/LICENSE-2.0
0008 //
0009 // Unless required by applicable law or agreed to in writing, software
0010 // distributed under the License is distributed on an "AS IS" BASIS,
0011 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0012 // See the License for the specific language governing permissions and
0013 // limitations under the License.
0014 
0015 #include <cstdint>
0016 
0017 #include "absl/base/internal/raw_logging.h"
0018 
0019 namespace absl {
0020 ABSL_NAMESPACE_BEGIN
0021 
0022 namespace debugging_internal {
0023 
0024 int InstallSymbolDecorator(SymbolDecorator, void*) { return -1; }
0025 bool RemoveSymbolDecorator(int) { return false; }
0026 bool RemoveAllSymbolDecorators(void) { return false; }
0027 bool RegisterFileMappingHint(const void *, const void *, uint64_t, const char *) {
0028   return false;
0029 }
0030 bool GetFileMappingHint(const void **, const void **, uint64_t *, const char **) {
0031   return false;
0032 }
0033 
0034 }  // namespace debugging_internal
0035 
0036 void InitializeSymbolizer(const char*) {}
0037 bool Symbolize(const void *, char *, int) { return false; }
0038 
0039 ABSL_NAMESPACE_END
0040 }  // namespace absl