Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SIPp/sipp
/ functions
Functions
870 in github.com/SIPp/sipp
⨍
Functions
870
◇
Types & classes
203
↓ 1 callers
Method
CheckBegin
Run checks that applies to text up to the opening brace. This is mostly for checking the text after the class identifier and the "{", usually
cpplint.py:1365
↓ 1 callers
Function
CheckBraces
Looks for misplaced braces (e.g. at the end of line). Args: filename: The name of the current file. clean_lines: A CleansedLines instance c
cpplint.py:2567
↓ 1 callers
Function
CheckCheck
Checks the use of CHECK and EXPECT macros. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing t
cpplint.py:2705
↓ 1 callers
Method
CheckClassFinished
Checks that all classes have been completely parsed. Call this when all lines in a file have been processed. Args: filename: The name o
cpplint.py:1732
↓ 1 callers
Function
CheckComment
Checks for common mistakes in TODO comments. Args: comment: The text of the comment from the line in question. filename: The name of the cu
cpplint.py:2012
↓ 1 callers
Function
CheckEmptyLoopBody
Loop for empty loop body with only a single semicolon. Args: filename: The name of the current file. clean_lines: A CleansedLines instance
cpplint.py:2643
↓ 1 callers
Method
CheckEnd
Run checks that applies to text after the closing brace. This is mostly used for checking end of namespace comments. Args: filename: T
cpplint.py:1380
↓ 1 callers
Function
CheckForCopyright
Logs an error if no Copyright message appears at the top of the file.
cpplint.py:1098
↓ 1 callers
Function
CheckForFunctionLengths
Reports for long function bodies. For an overview why this is done, see: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Write_Sho
cpplint.py:1939
↓ 1 callers
Function
CheckForHeaderGuard
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
cpplint.py:1135
↓ 1 callers
Function
CheckForIncludeWhatYouUse
Reports for missing stl includes. This function will output warnings to make sure you are including the headers necessary for the stl containers
cpplint.py:3657
↓ 1 callers
Function
CheckForMultilineCommentsAndStrings
Logs an error if we see /* ... */ or "..." that extend past one line. /* ... */ comments are legit inside macros, for one line. Otherwise, we pre
cpplint.py:1247
↓ 1 callers
Function
CheckForNewlineAtEOF
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,
cpplint.py:1229
↓ 1 callers
Function
CheckForNonStandardConstructs
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 not st
cpplint.py:1750
↓ 1 callers
Function
CheckForUnicodeReplacementCharacters
Logs an error for each line containing Unicode replacement characters. These indicate that either the file contained invalid UTF-8 (likely) or Un
cpplint.py:1210
↓ 1 callers
Function
CheckIncludeLine
Check rules that are applicable to #include lines. Strings on #include lines are NOT removed from elided line, to make certain tasks easier. Howe
cpplint.py:3018
↓ 1 callers
Function
CheckInvalidIncrement
Checks for invalid increment *count++. For example following function: void increment_counter(int* count) { *count++; } is invalid, becau
cpplint.py:1335
↓ 1 callers
Function
CheckLanguage
Checks rules from the 'C++ language rules' section of cppguide.html. Some of these rules are hard to test (function overloading, using uint32 ina
cpplint.py:3143
↓ 1 callers
Function
CheckMakePairUsesDeduction
Check that make_pair's template arguments are deduced. G++ 4.6 in C++0x mode fails badly if make_pair's template arguments are specified explicit
cpplint.py:3753
↓ 1 callers
Method
CheckNextIncludeOrder
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
cpplint.py:497
↓ 1 callers
Function
CheckPosixThreading
Checks for calls to thread-unsafe functions. Much code has been originally written without consideration of multi-threading. Also, engineers are
cpplint.py:1302
↓ 1 callers
Function
CheckSectionSpacing
Checks for additional blank line issues related to sections. Currently the only thing checked here is blank line before protected/private. Args:
cpplint.py:2489
↓ 1 callers
Function
CheckSpacing
Checks for the correctness of various spacing issues in the code. Things we check for: spaces around operators, spaces after if/for/while/switch,
cpplint.py:2199
↓ 1 callers
Function
CheckSpacingForFunctionCall
Checks for the correctness of various spacing around function calls. Args: filename: The name of the current file. line: The text of the li
cpplint.py:1857
↓ 1 callers
Function
CheckStyle
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
cpplint.py:2792
↓ 1 callers
Method
Count
Count line in current function body.
cpplint.py:695
↓ 1 callers
Method
End
Stop analyzing function body.
cpplint.py:725
↓ 1 callers
Function
Error
Logs the fact we've found a lint error. We log where the error was found, and also our confidence in the error, that is, how certain we are this
cpplint.py:852
↓ 1 callers
Method
Extension
File extension - text following the final period.
cpplint.py:812
↓ 1 callers
Function
FilesBelongToSameModule
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
cpplint.py:3573
↓ 1 callers
Function
FindNextMatchingAngleBracket
Find the corresponding > to close a template. Args: clean_lines: A CleansedLines instance containing the file. linenum: Current line number
cpplint.py:2072
↓ 1 callers
Function
FindNextMultiLineCommentEnd
We are inside a comment, find the end marker.
cpplint.py:937
↓ 1 callers
Function
FindNextMultiLineCommentStart
Find the beginning marker for a multiline comment.
cpplint.py:926
↓ 1 callers
Function
FindPreviousMatchingAngleBracket
Find the corresponding < that started a template. Args: clean_lines: A CleansedLines instance containing the file. linenum: Current line nu
cpplint.py:2142
↓ 1 callers
Function
GetLineWidth
Determines the width of the line in column positions. Args: line: A string, which may be a Unicode string. Returns: The width of the lin
cpplint.py:2770
↓ 1 callers
Method
InNamespaceBody
Check if we are currently one level inside a namespace body. Returns: True if top of the stack is a namespace block, False otherwise.
cpplint.py:1519
↓ 1 callers
Method
IncrementErrorCount
Bumps the module's error statistic.
cpplint.py:611
↓ 1 callers
Function
IsCppString
Does line terminate so, that the next symbol is in string constant. This function does not consider single-line nor multi-line comments. Args:
cpplint.py:909
↓ 1 callers
Function
IsErrorSuppressedByNolint
Returns true if the specified error category is suppressed on this line. Consults the global error_suppressions map populated by ParseNolintSuppr
cpplint.py:394
↓ 1 callers
Method
IsInAlphabeticalOrder
Check if a header is in alphabetical order with the previous header. Args: header_path: Header to be checked. Returns: Returns t
cpplint.py:482
↓ 1 callers
Function
LOG_MSG
src/logger.cpp:381
↓ 1 callers
Function
ParseArguments
Parses the command line arguments. This may set the output format and verbosity level as side-effects. Args: args: The command line argument
cpplint.py:3948
↓ 1 callers
Function
PrintCategories
Prints a list of all the error-categories used by error messages. These are the categories used to filter messages via --filter.
cpplint.py:3939
↓ 1 callers
Method
PrintErrorCounts
Print a summary of errors by category, and the total.
cpplint.py:621
↓ 1 callers
Function
ProcessFile
Does google-lint on a single file. Args: filename: The name of the file to parse. vlevel: The level of errors to report. Every error of c
cpplint.py:3859
↓ 1 callers
Function
ProcessFileData
Performs lint checks and reports any errors to the given error function. Args: filename: Filename of the file that is being processed. file
cpplint.py:3814
↓ 1 callers
Function
ProcessLine
Processes a single line in the file. Args: filename: Filename of the file that is being processed. file_extension: The extension (dot not i
cpplint.py:3775
↓ 1 callers
Function
RemoveMultiLineComments
Removes multiline (c-style) comments from lines.
cpplint.py:954
↓ 1 callers
Function
RemoveMultiLineCommentsFromRange
Clears a range of lines for multi-line comments.
cpplint.py:946
↓ 1 callers
Function
ReplaceableCheck
Determine whether a basic CHECK can be replaced with a more specific one. For example suggest using CHECK_EQ instead of CHECK(a == b) and similar
cpplint.py:2670
↓ 1 callers
Method
ResetErrorCounts
Sets the module's error statistic back to zero.
cpplint.py:606
↓ 1 callers
Function
ResetNolintSuppressions
Resets the set of NOLINT suppressions to empty.
cpplint.py:389
↓ 1 callers
Function
SSL_new_server
src/sslsocket.cpp:197
↓ 1 callers
Method
SetCountingStyle
Sets the module's counting options.
cpplint.py:577
↓ 1 callers
Method
SetFilters
Sets the error-message filters. These filters are applied when deciding whether to emit a given error message. Args: filters: A st
cpplint.py:581
↓ 1 callers
Method
SetOutputFormat
Sets the output format for errors.
cpplint.py:567
↓ 1 callers
Method
SetVerboseLevel
Sets the module's verbosity, and returns the previous setting.
cpplint.py:571
↓ 1 callers
Function
TLS_init
src/sslsocket.cpp:467
↓ 1 callers
Function
TLS_init_context
Prepare the SSL context ************************/
src/sslsocket.cpp:361
↓ 1 callers
Method
Update
Update nesting state with current line. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containin
cpplint.py:1584
↓ 1 callers
Function
UpdateIncludeState
Fill up the include_state with new includes found from the file. Args: filename: the name of the header to read. include_state: an _Include
cpplint.py:3628
↓ 1 callers
Method
UpdatePreprocessor
Update preprocessor stack. We need to handle preprocessors due to classes like this: #ifdef SWIG struct ResultDetailsPageElementExten
cpplint.py:1527
↓ 1 callers
Function
_ClassifyInclude
Figures out what kind of header 'include' is. Args: fileinfo: The current file cpplint is running over. A FileInfo instance. include: The p
cpplint.py:2957
↓ 1 callers
Method
_CollapseStrings
Collapses strings and chars on a line to simple "" or '' blocks. We nix strings first so we're not fooled by text like '"http://"' Args:
cpplint.py:1010
↓ 1 callers
Function
_Filters
Returns the module's list of output filters, as a list.
cpplint.py:656
↓ 1 callers
Function
_GetTextInside
Retrieves all the text between matching open and close parentheses. Given a string of lines and a regular expression string, retrieve all the text
cpplint.py:3087
↓ 1 callers
Function
_OutputFormat
Gets the module's output format.
cpplint.py:631
↓ 1 callers
Function
_SetCountingStyle
Sets the module's counting options.
cpplint.py:651
↓ 1 callers
Function
_SetFilters
Sets the module's error-message filters. These filters are applied when deciding whether to emit a given error message. Args: filters: A s
cpplint.py:661
↓ 1 callers
Function
_SetOutputFormat
Sets the module's output format.
cpplint.py:636
↓ 1 callers
Function
_ShouldPrintError
If confidence >= verbose, category passes filter and is not suppressed.
cpplint.py:825
↓ 1 callers
Method
abort
src/task.cpp:154
↓ 1 callers
Function
abort_all_tasks
src/task.cpp:58
↓ 1 callers
Method
add_paused_task
Adds a task to the correct timewheel. When increment is false, does not increment the count of tasks owned by this timewheel, and so can be used for r
src/task.cpp:274
↓ 1 callers
Function
base64_decode_string
src/auth.cpp:717
↓ 1 callers
Function
begin_pager
If stdout is a TTY, wrap stdout in a call to PAGER (generally less(1)). * Returns a pid_t you'll have to pass to end_pager(). */
src/sipp.cpp:771
↓ 1 callers
Function
bind_rtp_sockets
* Create and bind media_socket_audio, media_socket_video for RTP and * RCTP on try_port and try_port+2. * * Sets: media_socket_audio and media_sock
src/sipp.cpp:1239
↓ 1 callers
Method
bind_to_device
src/socket.cpp:1633
↓ 1 callers
Method
buildTableNode
(self)
docs/rstFlatTable.py:157
↓ 1 callers
Method
cdfInv
src/stat.cpp:1549
↓ 1 callers
Function
clear_int_int
src/scenario.cpp:1108
↓ 1 callers
Function
clear_int_str
src/scenario.cpp:1093
↓ 1 callers
Function
close_local_sockets
src/socket.cpp:2789
↓ 1 callers
Function
close_peer_sockets
src/socket.cpp:2774
↓ 1 callers
Function
comp_load
src/comp.c:29
↓ 1 callers
Method
comparatorToString
src/actions.cpp:49
↓ 1 callers
Method
compare
src/actions.cpp:69
↓ 1 callers
Method
computeRtt
src/stat.cpp:771
↓ 1 callers
Method
computeSippMode
Determine in which mode the sipp tool has been launched (client, server, 3pcc client, 3pcc server, 3pcc extended master or slave)
src/scenario.cpp:1269
↓ 1 callers
Function
createAuthHeaderAKAv1MD5
src/auth.cpp:766
↓ 1 callers
Function
createAuthHeaderSHA256
src/auth.cpp:897
↓ 1 callers
Function
do_sleep
* Given the timestamp on the current packet and the last packet sent, * calculate the appropriate amount of time to sleep and do so. */
src/send_packets.c:297
↓ 1 callers
Method
dumpData
src/stat.cpp:1145
↓ 1 callers
Method
dumpDataRtt
src/stat.cpp:1409
↓ 1 callers
Function
dump_tasks
src/task.cpp:67
↓ 1 callers
Function
end_pager
Make sure we flush and close, or the child won't get all the data (and know * when we're done). Wait for the child to exit first. */
src/sipp.cpp:857
↓ 1 callers
Function
expand_user_path
src/fileutil.c:25
↓ 1 callers
Function
expire_paused_tasks
src/task.cpp:77
↓ 1 callers
Method
expire_paused_tasks
Iterate through our sorted set of paused tasks, removing those that * should no longer be paused, and adding them to the run queue. */
src/task.cpp:201
↓ 1 callers
Function
f1
src/milenage.c:37
← previous
next →
301–400 of 870, ranked by callers