aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/transport
Commit message (Collapse)AuthorAge
...
| | * Merge branch 'master' of https://github.com/grpc/grpc into no-more-extern-cGravatar ncteisen2017-11-20
| | |\ | | |/ | |/|
| * | Rename tracer_peer to tracer_utilGravatar ncteisen2017-11-17
| | |
| | * Un extern the fuzzersGravatar ncteisen2017-11-17
| | |
| * | reviewer feedbackGravatar ncteisen2017-11-17
| | |
* | | Merge masterGravatar Yash Tibrewal2017-11-16
|\ \ \ | | |/ | |/|
| | * Reviewer feedback: friend func not clasSGravatar ncteisen2017-11-16
| | |
* | | Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | | | | | ExecCtx and some minor changes
| | * Add tracer peer to keep set_enabled private()Gravatar ncteisen2017-11-14
| | |
* | | Address some PR commentsGravatar Yash Tibrewal2017-11-14
| | |
| | * Merge branch 'master' of https://github.com/grpc/grpc into tracing++Gravatar Noah Eisen2017-11-13
| | |\ | | |/ | |/|
| | * Fix test compileGravatar Noah Eisen2017-11-12
| | |
| * | Enable clang-tidy as a sanity check, fix up all known failuresGravatar Craig Tiller2017-11-10
| |/
* | Merge with masterGravatar Yash Tibrewal2017-11-09
|\|
| * Merge masterGravatar Yash Tibrewal2017-11-06
| |\
| | * Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| | |
| * | LLVMfuzzer extern CGravatar Yash Tibrewal2017-10-31
| | |
| * | BUILD changes. test languauge to C++Gravatar Yash Tibrewal2017-10-31
| | |
| * | some BUILD changes and designated initializersGravatar Yash Tibrewal2017-10-30
| | |
| * | BUILD files changes for bazelGravatar Yash Tibrewal2017-10-30
| | |
| * | Merge branch 'master' into testc++izeGravatar Yash Tibrewal2017-10-30
| |\|
| | * Fix portabilotyGravatar ncteisen2017-10-27
| | |
| | * Address github comment, sleep for minimal timeGravatar ncteisen2017-10-27
| | |
| | * Fix test timing bug:Gravatar ncteisen2017-10-26
| | |
| * | rename all test core files to cc and a lot of C++ style conversionsGravatar Yash Tibrewal2017-10-25
| |/
* | Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
| | | | | | | | | | | | | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
| * Fix Bazel buildGravatar Craig Tiller2017-10-18
| |
| * Fix compilationGravatar Craig Tiller2017-10-18
| |
| * Merge github.com:grpc/grpc into pid++Gravatar Craig Tiller2017-10-18
| |\
| | * Use key in dynamic table if availableGravatar yang-g2017-10-16
| |/ |/|
| * Merge github.com:grpc/grpc into pid++Gravatar Craig Tiller2017-10-16
| |\ | |/ |/|
* | Merge github.com:grpc/grpc into timerGravatar Craig Tiller2017-10-13
|\ \
| * | Fix windows portabilityGravatar Craig Tiller2017-10-13
| | |
| | * C++ize PidControllerGravatar Craig Tiller2017-10-09
| |/ |/|
* | Fix testGravatar Craig Tiller2017-10-09
|/
* Fix buildGravatar Craig Tiller2017-10-09
|
* Fix testGravatar Craig Tiller2017-10-09
|
* Fix testGravatar Craig Tiller2017-10-09
|
* explicit type conversionGravatar Yash Tibrewal2017-10-06
|
* Fix testGravatar Craig Tiller2017-10-03
|
* Merge branch 'flowctlN' into flowctl+millisGravatar Craig Tiller2017-10-02
|\
* \ Merge branch 'grpc_millis' into flowctl+millisGravatar Craig Tiller2017-09-21
|\ \
| | * Bug fixes, remove async e2e dependence on flow control sizeGravatar Craig Tiller2017-09-20
| |/ |/|
| * clang-formatGravatar Craig Tiller2017-09-19
| |
| * Fix timeout encoding testGravatar Craig Tiller2017-09-19
| |
* | Mock time to resolve test errorGravatar Craig Tiller2017-09-18
| |
| * Merge github.com:grpc/grpc into wcGravatar Craig Tiller2017-09-01
| |\ | |/ |/|
* | Moving visibility and package creation to the build system.Gravatar Nicolas "Pixel" Noble2017-08-30
| |
| * Merge github.com:grpc/grpc into grpc_millisGravatar Craig Tiller2017-08-29
| |\ | |/ |/|
* | Pull bdp estimation into flowctl moduleGravatar ncteisen2017-08-13
| |
* | Improvements to grpc_byte_stream API and handling.Gravatar Mark D. Roth2017-07-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add shutdown() method (to be used in forthcoming call combiner code). - Use a vtable instead of storing method pointers in each instance. - Check all callers of pull() to make sure that they are properly handling errors. - Clarify ownership rules and attempt to adhere to them. - Added a new grpc_caching_byte_stream implementation, which is used in http_client_filter to avoid having to read the whole send_message byte stream before passing control down the stack. (This class may also be used in the retry code I'm working on separately.) - As part of this, did a major rewrite of http_client_filter, which made the code more readable and fixed a number of potential bugs. Note that some of this code is hard to test right now, due to the fact that the send_message byte stream is always a slice_buffer stream, for which next() is always synchronous and no destruction is needed. However, some future work (specifically, my call combiner work and Craig's incremental send work) will start leveraging this.