aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/surface
Commit message (Collapse)AuthorAge
* Merge pull request #2117 from dgquintas/bb_from_bbreaderGravatar Craig Tiller2015-07-05
|\ | | | | Introduced function to create byte buffers from the output of a byte buffer reader.
| * Introduced function to create byte buffers from the output of a byte buffer ↵Gravatar David Garcia Quintas2015-06-17
| | | | | | | | reader.
* | clang-format affected filesGravatar Craig Tiller2015-06-17
| |
* | Merge branch 'you-complete-me' into we-dont-need-no-backupGravatar Craig Tiller2015-06-17
|\|
| * Added flags support to grpc_op.Gravatar David Garcia Quintas2015-06-14
| | | | | | | | | | Which includes its propagation to grpc_ioreq and validation mechanisms for checking that only known bits are set ot in). Also added an internal flag (GRPC_WRITE_INTERNAL_COMPRESS) mask for its use in signaling compressed messages.
* | Merge branch 'you-complete-me' into we-dont-need-no-backupGravatar Craig Tiller2015-06-09
|\|
| * Changes to byte_buffer based on comments.Gravatar David Garcia Quintas2015-06-08
| |
| * Made grpc_byte_buffer_reader able to decompress msgs.Gravatar David Garcia Quintas2015-06-05
| |
* | Merge github.com:grpc/grpc into we-dont-need-no-backupGravatar Craig Tiller2015-06-05
|\|
| * Merge pull request #1866 from dgquintas/stack-allocate-bb-readerGravatar Craig Tiller2015-06-02
| |\ | | | | | | Removed grpc_byte_buffer_reader_{create,destroy}.
* | | Merge github.com:grpc/grpc into we-dont-need-no-backupGravatar Craig Tiller2015-06-02
|\| |
| | * Removed grpc_byte_buffer_reader_{create,destroy}.Gravatar David Garcia Quintas2015-06-01
| | | | | | | | | | | | | | | Introduced grpc_byte_buffer_init instead. It's now the user's responsibility to manage memory.
| * | Extend the test caseGravatar Craig Tiller2015-06-01
| | |
| * | Add a completion queue testGravatar Craig Tiller2015-06-01
| |/ | | | | | | | | | | - create completion queue - call shutdown - call next
* / Remove condition variable from pollsetGravatar Craig Tiller2015-05-28
|/
* Remove all uses of __FUNCTION__Gravatar Craig Tiller2015-05-24
|
* Clean out old codeGravatar Craig Tiller2015-05-11
|
* C Core API cleanup.Gravatar Craig Tiller2015-05-04
| | | | | | Simplify grpc_event into something that can be non-heap allocated. Deprecate grpc_event_finish. Remove grpc_op_error - use an int as this is more idiomatic C style.
* Fix some memory leaksGravatar Craig Tiller2015-05-01
|
* Fix cq testGravatar Craig Tiller2015-04-29
|
* Fix lame client testGravatar Craig Tiller2015-04-29
|
* Switching to batch oriented metadata passingGravatar Craig Tiller2015-04-16
|
* Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-02-26
|\
| * Introduce slowdown factor for unit test deadlinesGravatar Craig Tiller2015-02-25
| | | | | | | | Dramatically lowers (eliminates maybe?) false negatives from ?SAN runs.
* | Update C++ server with new core APIGravatar Craig Tiller2015-02-23
|/ | | | And reflects the C++ API in ServerBuilder.
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Add mixed shutdown/init testGravatar Craig Tiller2015-02-17
|
* Allow grpc_init to be called multiple timesGravatar Craig Tiller2015-02-17
|
* Merge branch 'async-api-prep' of github.com:ctiller/grpc into async-apiGravatar Craig Tiller2015-02-02
|\
| * Prepare for the new batch call API.Gravatar Craig Tiller2015-02-02
| | | | | | | | | | Rename all core API functions that are on their way to deprecation with an _old tag across all wrappings.
* | Rename & semantic fixup progressGravatar Craig Tiller2015-01-30
| |
* | Merge github.com:google/grpc into async-apiGravatar Craig Tiller2015-01-29
|\| | | | | | | | | Conflicts: test/core/echo/echo_test.c
| * Re-enabling errors on warning, disabling unused parameter warning, and ↵Gravatar Nicolas "Pixel" Noble2015-01-30
| | | | | | | | fixing all subsequent errors.
* | First compiling version of the new C api.Gravatar Craig Tiller2015-01-27
|/
* run clang-formatGravatar Yang Gao2015-01-26
|
* Merge branch 'new_invoke_api' of github.com:google/grpc into update-apiGravatar Craig Tiller2015-01-20
|\ | | | | | | | | | | | | | | | | Conflicts: src/cpp/client/channel.cc src/cpp/stream/stream_context.cc src/cpp/stream/stream_context.h src/php/ext/grpc/call.c test/core/end2end/tests/max_concurrent_streams.c
* | Use clang-format-3.5Gravatar Craig Tiller2015-01-18
| |
| * Merge branch 'new_invoke_api' of github.com:google/grpc into updateGravatar Craig Tiller2015-01-15
|/| | | | | | | | | | | | | Conflicts: src/core/surface/call.c test/core/end2end/tests/thread_stress.c tools/run_tests/run_tests.py
* | () --> (void)Gravatar Craig Tiller2015-01-15
| |
| * clang-format codebaseGravatar Craig Tiller2015-01-13
| |
| * Merge github.com:google/grpc into apiGravatar Craig Tiller2015-01-13
| |\ | |/ |/|
| * Moving prototype from Google to GitHubGravatar Craig Tiller2015-01-13
| | | | | | | | | | I'd started some prototyping work on this change before the move to GitHub; this change restores things.
* | clang-format codebaseGravatar Craig Tiller2015-01-13
|/
* Introducing iomgr.Gravatar ctiller2014-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | Move eventmanager and platform dependent endpoint functionality into a single library called 'iomgr'. This is primarily to prepare for a Windows port - where posix socket semantics lead to poor quality code. Mostly this is a code movement CL, with some small changes to help prepare the way for porting: - em style fd objects can only be held internally in iomgr, and own their memory - added grpc_iomgr_create_endpoint_pair() to accomodate the common pattern of creating a tcp endpoint from the output of socketpair - this will help keep our tests portable - separated em alarm interface into a separate file, as this part of event manager is needed higher up the stack - made the eventmanager bits a true singleton, simplifying API's across the stack as there's no longer a reason to carry a pointer there. Initial design document is here: https://docs.google.com/document/d/1VmafcHvvrP5kwtQkz84R5yXF7u7fW-9Pn0bkSUQHDt8/edit?disco=AAAAARNByxg Change on 2014/12/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81716456
* Initial import.Gravatar Nicolas Noble2014-11-26