MCPcopy Create free account

hub / github.com/SIPp/sipp / functions

Functions870 in github.com/SIPp/sipp

↓ 1 callersMethodCheckBegin
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 callersFunctionCheckBraces
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 callersFunctionCheckCheck
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 callersMethodCheckClassFinished
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 callersFunctionCheckComment
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 callersFunctionCheckEmptyLoopBody
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 callersMethodCheckEnd
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 callersFunctionCheckForCopyright
Logs an error if no Copyright message appears at the top of the file.
cpplint.py:1098
↓ 1 callersFunctionCheckForFunctionLengths
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 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
cpplint.py:1135
↓ 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
cpplint.py:3657
↓ 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
cpplint.py:1247
↓ 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,
cpplint.py:1229
↓ 1 callersFunctionCheckForNonStandardConstructs
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 callersFunctionCheckForUnicodeReplacementCharacters
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 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
cpplint.py:3018
↓ 1 callersFunctionCheckInvalidIncrement
Checks for invalid increment *count++. For example following function: void increment_counter(int* count) { *count++; } is invalid, becau
cpplint.py:1335
↓ 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
cpplint.py:3143
↓ 1 callersFunctionCheckMakePairUsesDeduction
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 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
cpplint.py:497
↓ 1 callersFunctionCheckPosixThreading
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 callersFunctionCheckSectionSpacing
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 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,
cpplint.py:2199
↓ 1 callersFunctionCheckSpacingForFunctionCall
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 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
cpplint.py:2792
↓ 1 callersMethodCount
Count line in current function body.
cpplint.py:695
↓ 1 callersMethodEnd
Stop analyzing function body.
cpplint.py:725
↓ 1 callersFunctionError
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 callersMethodExtension
File extension - text following the final period.
cpplint.py:812
↓ 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
cpplint.py:3573
↓ 1 callersFunctionFindNextMatchingAngleBracket
Find the corresponding > to close a template. Args: clean_lines: A CleansedLines instance containing the file. linenum: Current line number
cpplint.py:2072
↓ 1 callersFunctionFindNextMultiLineCommentEnd
We are inside a comment, find the end marker.
cpplint.py:937
↓ 1 callersFunctionFindNextMultiLineCommentStart
Find the beginning marker for a multiline comment.
cpplint.py:926
↓ 1 callersFunctionFindPreviousMatchingAngleBracket
Find the corresponding < that started a template. Args: clean_lines: A CleansedLines instance containing the file. linenum: Current line nu
cpplint.py:2142
↓ 1 callersFunctionGetLineWidth
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 callersMethodInNamespaceBody
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 callersMethodIncrementErrorCount
Bumps the module's error statistic.
cpplint.py:611
↓ 1 callersFunctionIsCppString
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 callersFunctionIsErrorSuppressedByNolint
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 callersMethodIsInAlphabeticalOrder
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 callersFunctionLOG_MSG
src/logger.cpp:381
↓ 1 callersFunctionParseArguments
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 callersFunctionPrintCategories
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 callersMethodPrintErrorCounts
Print a summary of errors by category, and the total.
cpplint.py:621
↓ 1 callersFunctionProcessFile
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 callersFunctionProcessFileData
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 callersFunctionProcessLine
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 callersFunctionRemoveMultiLineComments
Removes multiline (c-style) comments from lines.
cpplint.py:954
↓ 1 callersFunctionRemoveMultiLineCommentsFromRange
Clears a range of lines for multi-line comments.
cpplint.py:946
↓ 1 callersFunctionReplaceableCheck
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 callersMethodResetErrorCounts
Sets the module's error statistic back to zero.
cpplint.py:606
↓ 1 callersFunctionResetNolintSuppressions
Resets the set of NOLINT suppressions to empty.
cpplint.py:389
↓ 1 callersFunctionSSL_new_server
src/sslsocket.cpp:197
↓ 1 callersMethodSetCountingStyle
Sets the module's counting options.
cpplint.py:577
↓ 1 callersMethodSetFilters
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 callersMethodSetOutputFormat
Sets the output format for errors.
cpplint.py:567
↓ 1 callersMethodSetVerboseLevel
Sets the module's verbosity, and returns the previous setting.
cpplint.py:571
↓ 1 callersFunctionTLS_init
src/sslsocket.cpp:467
↓ 1 callersFunctionTLS_init_context
Prepare the SSL context ************************/
src/sslsocket.cpp:361
↓ 1 callersMethodUpdate
Update nesting state with current line. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containin
cpplint.py:1584
↓ 1 callersFunctionUpdateIncludeState
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 callersMethodUpdatePreprocessor
Update preprocessor stack. We need to handle preprocessors due to classes like this: #ifdef SWIG struct ResultDetailsPageElementExten
cpplint.py:1527
↓ 1 callersFunction_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 callersMethod_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 callersFunction_Filters
Returns the module's list of output filters, as a list.
cpplint.py:656
↓ 1 callersFunction_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 callersFunction_OutputFormat
Gets the module's output format.
cpplint.py:631
↓ 1 callersFunction_SetCountingStyle
Sets the module's counting options.
cpplint.py:651
↓ 1 callersFunction_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 callersFunction_SetOutputFormat
Sets the module's output format.
cpplint.py:636
↓ 1 callersFunction_ShouldPrintError
If confidence >= verbose, category passes filter and is not suppressed.
cpplint.py:825
↓ 1 callersMethodabort
src/task.cpp:154
↓ 1 callersFunctionabort_all_tasks
src/task.cpp:58
↓ 1 callersMethodadd_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 callersFunctionbase64_decode_string
src/auth.cpp:717
↓ 1 callersFunctionbegin_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 callersFunctionbind_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 callersMethodbind_to_device
src/socket.cpp:1633
↓ 1 callersMethodbuildTableNode
(self)
docs/rstFlatTable.py:157
↓ 1 callersMethodcdfInv
src/stat.cpp:1549
↓ 1 callersFunctionclear_int_int
src/scenario.cpp:1108
↓ 1 callersFunctionclear_int_str
src/scenario.cpp:1093
↓ 1 callersFunctionclose_local_sockets
src/socket.cpp:2789
↓ 1 callersFunctionclose_peer_sockets
src/socket.cpp:2774
↓ 1 callersFunctioncomp_load
src/comp.c:29
↓ 1 callersMethodcomparatorToString
src/actions.cpp:49
↓ 1 callersMethodcompare
src/actions.cpp:69
↓ 1 callersMethodcomputeRtt
src/stat.cpp:771
↓ 1 callersMethodcomputeSippMode
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 callersFunctioncreateAuthHeaderAKAv1MD5
src/auth.cpp:766
↓ 1 callersFunctioncreateAuthHeaderSHA256
src/auth.cpp:897
↓ 1 callersFunctiondo_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 callersMethoddumpData
src/stat.cpp:1145
↓ 1 callersMethoddumpDataRtt
src/stat.cpp:1409
↓ 1 callersFunctiondump_tasks
src/task.cpp:67
↓ 1 callersFunctionend_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 callersFunctionexpand_user_path
src/fileutil.c:25
↓ 1 callersFunctionexpire_paused_tasks
src/task.cpp:77
↓ 1 callersMethodexpire_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 callersFunctionf1
src/milenage.c:37
← previousnext →301–400 of 870, ranked by callers