MCPcopy Create free account

hub / github.com/R-Fuzz/symsan / functions

Functions4,056 in github.com/R-Fuzz/symsan

↓ 1 callersMethodCheckEnd
Run checks that applies to text after the closing brace. This is mostly used for checking end of namespace comments. Args: filename: T
runtime/sanitizer_common/scripts/cpplint.py:2230
↓ 1 callersFunctionCheckForBadCharacters
Logs an error for each line containing bad characters. Two kinds of bad characters: 1. Unicode replacement characters: These indicate that eithe
runtime/sanitizer_common/scripts/cpplint.py:2008
↓ 1 callersFunctionCheckForCopyright
Logs an error if no Copyright message appears at the top of the file.
runtime/sanitizer_common/scripts/cpplint.py:1756
↓ 1 callersFunctionCheckForFunctionLengths
Reports for long function bodies. For an overview why this is done, see: https://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Write_Sh
runtime/sanitizer_common/scripts/cpplint.py:3046
↓ 1 callersFunctionCheckForHeaderGuard
Checks that the file contains a header guard. Logs an error if no #ifndef header guard is present. For other headers, checks that the full pathn
runtime/sanitizer_common/scripts/cpplint.py:1885
↓ 1 callersFunctionCheckForIncludeWhatYouUse
Reports for missing stl includes. This function will output warnings to make sure you are including the headers necessary for the stl containers
runtime/sanitizer_common/scripts/cpplint.py:5498
↓ 1 callersFunctionCheckForMultilineCommentsAndStrings
Logs an error if we see /* ... */ or "..." that extend past one line. /* ... */ comments are legit inside macros, for one line. Otherwise, we pre
runtime/sanitizer_common/scripts/cpplint.py:2051
↓ 1 callersFunctionCheckForNamespaceIndentation
(filename, nesting_state, clean_lines, line, error)
runtime/sanitizer_common/scripts/cpplint.py:3032
↓ 1 callersFunctionCheckForNewlineAtEOF
Logs an error if there is no newline char at the end of the file. Args: filename: The name of the current file. lines: An array of strings,
runtime/sanitizer_common/scripts/cpplint.py:2033
↓ 1 callersFunctionCheckForNonConstReference
Check for non-const references. Separate from CheckLanguage since it scans backwards from current line, instead of scanning forward. Args:
runtime/sanitizer_common/scripts/cpplint.py:5013
↓ 1 callersFunctionCheckForNonStandardConstructs
r"""Logs an error if we see certain non-ANSI constructs ignored by gcc-2. Complain about several constructs which gcc-2 accepts, but which are no
runtime/sanitizer_common/scripts/cpplint.py:2780
↓ 1 callersFunctionCheckGlobalStatic
Check for unsafe global or static objects. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing t
runtime/sanitizer_common/scripts/cpplint.py:4843
↓ 1 callersFunctionCheckHeaderFileIncluded
Logs an error if a .cc file does not include its header.
runtime/sanitizer_common/scripts/cpplint.py:1983
↓ 1 callersFunctionCheckIncludeLine
Check rules that are applicable to #include lines. Strings on #include lines are NOT removed from elided line, to make certain tasks easier. Howe
runtime/sanitizer_common/scripts/cpplint.py:4526
↓ 1 callersFunctionCheckInvalidIncrement
Checks for invalid increment *count++. For example following function: void increment_counter(int* count) { *count++; } is invalid, becau
runtime/sanitizer_common/scripts/cpplint.py:2169
↓ 1 callersFunctionCheckItemIndentationInNamespace
(filename, raw_lines_no_comments, linenum, error)
runtime/sanitizer_common/scripts/cpplint.py:5772
↓ 1 callersFunctionCheckLanguage
Checks rules from the 'C++ language rules' section of cppguide.html. Some of these rules are hard to test (function overloading, using uint32 ina
runtime/sanitizer_common/scripts/cpplint.py:4685
↓ 1 callersFunctionCheckMakePairUsesDeduction
Check that make_pair's template arguments are deduced. G++ 4.6 in C++11 mode fails badly if make_pair's template arguments are specified explicit
runtime/sanitizer_common/scripts/cpplint.py:5600
↓ 1 callersMethodCheckNextIncludeOrder
Returns a non-empty error message if the next header is out of order. This function also updates the internal state to be ready to check the
runtime/sanitizer_common/scripts/cpplint.py:808
↓ 1 callersMethodCheckNoLocks
runtime/sanitizer_common/sanitizer_mutex.cpp:197
↓ 1 callersFunctionCheckOperatorSpacing
Checks for horizontal spacing around operators. Args: filename: The name of the current file. clean_lines: A CleansedLines instance contain
runtime/sanitizer_common/scripts/cpplint.py:3299
↓ 1 callersFunctionCheckParenthesisSpacing
Checks for horizontal spacing around parentheses. Args: filename: The name of the current file. clean_lines: A CleansedLines instance conta
runtime/sanitizer_common/scripts/cpplint.py:3414
↓ 1 callersFunctionCheckPosixThreading
Checks for calls to thread-unsafe functions. Much code has been originally written without consideration of multi-threading. Also, engineers are
runtime/sanitizer_common/scripts/cpplint.py:2119
↓ 1 callersFunctionCheckPrintf
Check for printf related issues. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing the file.
runtime/sanitizer_common/scripts/cpplint.py:4904
↓ 1 callersFunctionCheckRedundantOverrideOrFinal
Check if line contains a redundant "override" or "final" virt-specifier. Args: filename: The name of the current file. clean_lines: A Clean
runtime/sanitizer_common/scripts/cpplint.py:5685
↓ 1 callersFunctionCheckRedundantVirtual
Check if line contains a redundant "virtual" function-specifier. Args: filename: The name of the current file. clean_lines: A CleansedLines
runtime/sanitizer_common/scripts/cpplint.py:5621
↓ 1 callersFunctionCheckSectionSpacing
Checks for additional blank line issues related to sections. Currently the only thing checked here is blank line before protected/private. Args:
runtime/sanitizer_common/scripts/cpplint.py:3658
↓ 1 callersFunctionCheckSpacing
Checks for the correctness of various spacing issues in the code. Things we check for: spaces around operators, spaces after if/for/while/switch,
runtime/sanitizer_common/scripts/cpplint.py:3171
↓ 1 callersFunctionCheckSpacingForFunctionCall
Checks for the correctness of various spacing around function calls. Args: filename: The name of the current file. clean_lines: A CleansedL
runtime/sanitizer_common/scripts/cpplint.py:2940
↓ 1 callersFunctionCheckStyle
Checks rules from the 'C++ style rules' section of cppguide.html. Most of these rules are hard to test (naming, comment style), but we do what we
runtime/sanitizer_common/scripts/cpplint.py:4311
↓ 1 callersFunctionCheckTrailingSemicolon
Looks for redundant trailing semicolon. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing the
runtime/sanitizer_common/scripts/cpplint.py:3855
↓ 1 callersFunctionCheckVlogArguments
Checks that VLOG() is only used for defining a logging level. For example, VLOG(2) is correct. VLOG(INFO), VLOG(WARNING), VLOG(ERROR), and VLOG(F
runtime/sanitizer_common/scripts/cpplint.py:2145
↓ 1 callersFunctionChooseExternalSymbolizer
runtime/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp:411
↓ 1 callersFunctionChooseSymbolizerTools
runtime/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp:468
↓ 1 callersFunctionChooseSymbolizerTools
runtime/sanitizer_common/sanitizer_symbolizer_win.cpp:278
↓ 1 callersMethodClassID
runtime/sanitizer_common/sanitizer_allocator_size_class_map.h:158
↓ 1 callersFunctionCleanseRawStrings
Removes C++11 raw strings from lines. Before: static const char kData[] = R"( multi-line string )"; After: s
runtime/sanitizer_common/scripts/cpplint.py:1288
↓ 1 callersMethodClear
runtime/sanitizer_common/sanitizer_allocator_primary32.h:85
↓ 1 callersFunctionColorizeReports
runtime/sanitizer_common/sanitizer_symbolizer_report.cpp:62
↓ 1 callersFunctionCompressDelta
runtime/sanitizer_common/sanitizer_stack_store.cpp:205
↓ 1 callersFunctionCompressLzw
runtime/sanitizer_common/sanitizer_stack_store.cpp:221
↓ 1 callersMethodContainsTid
runtime/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp:544
↓ 1 callersMethodCopyToArray
runtime/sanitizer_common/sanitizer_allocator_primary32.h:90
↓ 1 callersFunctionCov8bitCountersInit
runtime/sanitizer_common/sanitizer_coverage_libcdep_new.cpp:190
↓ 1 callersFunctionCovPcsInit
runtime/sanitizer_common/sanitizer_coverage_libcdep_new.cpp:196
↓ 1 callersFunctionCplusV3Demangle
runtime/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp:68
↓ 1 callersFunctionCreateAliases
runtime/sanitizer_common/sanitizer_linux_libcdep.cpp:987
↓ 1 callersMethodCreateBatch
Returns a TransferBatch suitable for class_id.
runtime/sanitizer_common/sanitizer_allocator_local_cache.h:139
↓ 1 callersFunctionCreateDir
runtime/sanitizer_common/sanitizer_win.cpp:573
↓ 1 callersFunctionCreateTwoHighNumberedPipes
runtime/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp:94
↓ 1 callersFunctionDFL_ck_alloc
include/alloc_inl.h:126
↓ 1 callersFunctionDFL_ck_alloc_nozero
include/alloc_inl.h:103
↓ 1 callersFunctionDFL_ck_memdup
include/alloc_inl.h:287
↓ 1 callersFunctionDFL_ck_memdup_str
include/alloc_inl.h:311
↓ 1 callersFunctionDFL_ck_strdup
include/alloc_inl.h:260
↓ 1 callersFunctionDTLS_Deallocate
runtime/sanitizer_common/sanitizer_tls_get_addr.cpp:46
↓ 1 callersFunctionDTLS_Find
runtime/sanitizer_common/sanitizer_tls_get_addr.cpp:74
↓ 1 callersMethodDeallocateBatch
runtime/sanitizer_common/sanitizer_allocator_primary32.h:183
↓ 1 callersFunctionDebugMutexInit
runtime/sanitizer_common/sanitizer_mutex.cpp:72
↓ 1 callersFunctionDecorateMapping
runtime/sanitizer_common/sanitizer_posix.cpp:379
↓ 1 callersFunctionDemangleCXXABI
Attempts to demangle the name via __cxa_demangle from __cxxabiv1.
runtime/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp:48
↓ 1 callersFunctionDemangleSwift
Attempts to demangle a Swift name. The demangler will return nullptr if a non-Swift name is passed in.
runtime/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp:80
↓ 1 callersMethodDescribe
runtime/sanitizer_common/sanitizer_win.cpp:1011
↓ 1 callersMethodDestroy
runtime/sanitizer_common/sanitizer_common.h:492
↓ 1 callersMethodDestroyCache
runtime/sanitizer_common/sanitizer_allocator_combined.h:159
↓ 1 callersFunctionDisableMmapExcGuardExceptions
ASan/TSan use mmap in a way that creates “deallocation gaps” which triggers EXC_GUARD exceptions on macOS 10.15+ (XNU 19.0+).
runtime/sanitizer_common/sanitizer_mac.cpp:928
↓ 1 callersFunctionDontDumpShadowMemory
runtime/sanitizer_common/sanitizer_win.cpp:357
↓ 1 callersMethodDump
runtime/sanitizer_common/sanitizer_coverage_libcdep_new.cpp:142
↓ 1 callersMethodDump
runtime/sanitizer_common/sanitizer_coverage_fuchsia.cpp:91
↓ 1 callersFunctionDyldNeedsEnvVariable
runtime/sanitizer_common/sanitizer_mac.cpp:989
↓ 1 callersMethodEnd
Stop analyzing function body.
runtime/sanitizer_common/scripts/cpplint.py:1087
↓ 1 callersMethodEnsureSpace
runtime/sanitizer_common/sanitizer_allocator_secondary.h:22
↓ 1 callersFunctionExpectingFunctionArgs
Checks whether where function type arguments are expected. Args: clean_lines: A CleansedLines instance containing the file. linenum: The nu
runtime/sanitizer_common/scripts/cpplint.py:5324
↓ 1 callersFunctionExtractInt
runtime/sanitizer_common/sanitizer_symbolizer_libcdep.cpp:42
↓ 1 callersFunctionExtractSptr
runtime/sanitizer_common/sanitizer_symbolizer_libcdep.cpp:62
↓ 1 callersFunctionFilesBelongToSameModule
Check if these two filenames belong to the same module. The concept of a 'module' here is a as follows: foo.h, foo-inl.h, foo.cc, foo_test.cc and
runtime/sanitizer_common/scripts/cpplint.py:5416
↓ 1 callersFunctionFindAvailableMemoryRange
runtime/sanitizer_common/sanitizer_win.cpp:379
↓ 1 callersFunctionFindCheckMacro
Find a replaceable CHECK-like macro. Args: line: line to search on. Returns: (macro name, start position), or (None, -1) if no replaceabl
runtime/sanitizer_common/scripts/cpplint.py:4106
↓ 1 callersFunctionFindFile
runtime/sanitizer_common/sanitizer_suppressions.cpp:50
↓ 1 callersMethodFindHeader
Check if a header has already been included. Args: header: header to check. Returns: Line number of previous occurrence, or -1 if
runtime/sanitizer_common/scripts/cpplint.py:736
↓ 1 callersFunctionFindNextMultiLineCommentEnd
We are inside a comment, find the end marker.
runtime/sanitizer_common/scripts/cpplint.py:1375
↓ 1 callersFunctionFindNextMultiLineCommentStart
Find the beginning marker for a multiline comment.
runtime/sanitizer_common/scripts/cpplint.py:1364
↓ 1 callersMethodFindThreadContextLocked
runtime/sanitizer_common/sanitizer_thread_registry.cpp:199
↓ 1 callersFunctionFindUUID
runtime/sanitizer_common/sanitizer_procmaps_mac.cpp:269
↓ 1 callersFunctionFixedCVE_2016_2143
runtime/sanitizer_common/sanitizer_linux_s390.cpp:126
↓ 1 callersFunctionFixupPathFromRoot
()
runtime/sanitizer_common/scripts/cpplint.py:1831
↓ 1 callersFunctionFlagCxx11Features
Flag those c++11 features that we only allow in certain places. Args: filename: The name of the current file. clean_lines: A CleansedLines
runtime/sanitizer_common/scripts/cpplint.py:5824
↓ 1 callersMethodForEach
runtime/sanitizer_common/sanitizer_addrhashmap.h:113
↓ 1 callersFunctionForEachMappedRegion
Call cb for each region mapped by map.
runtime/sanitizer_common/sanitizer_linux.cpp:1168
↓ 1 callersMethodFormat
runtime/sanitizer_common/sanitizer_flag_parser.h:78
↓ 1 callersFunctionFormatUUID
runtime/sanitizer_common/sanitizer_mac.cpp:1379
↓ 1 callersFunctionFunctionHasPadding
runtime/interception/interception_win.cpp:238
↓ 1 callersFunctionFunctionHasPrefix
runtime/interception/interception_win.cpp:230
↓ 1 callersFunctionFutexWait
runtime/sanitizer_common/sanitizer_mac.cpp:514
↓ 1 callersFunctionFutexWake
runtime/sanitizer_common/sanitizer_mac.cpp:519
↓ 1 callersMethodGetAndResetStats
runtime/sanitizer_common/sanitizer_allocator_primary64.h:52
↓ 1 callersFunctionGetArgv
runtime/sanitizer_common/sanitizer_linux.cpp:658
↓ 1 callersFunctionGetCodeRangeForFile
runtime/sanitizer_common/sanitizer_posix.cpp:276
↓ 1 callersFunctionGetCoverageFilename
runtime/sanitizer_common/sanitizer_coverage_libcdep_new.cpp:39
↓ 1 callersMethodGetDestroyed
runtime/sanitizer_common/sanitizer_thread_registry.cpp:53
← previousnext →1,001–1,100 of 4,056, ranked by callers