aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/security/oauth2_utils.c
Commit message (Collapse)AuthorAge
* Add rich closure debug modeGravatar ncteisen2017-06-08
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* Add some casts for C++ compatibilityGravatar Craig Tiller2017-05-10
|
* zalloc grpc_pollsetGravatar Yuchen Zeng2017-02-22
|
* Changes to exec_ctx/closure/combiner/workqueue interfacesGravatar Craig Tiller2016-12-28
| | | | | | | | - make closures know where they should be executed (eg, on a workqueue, or a combiner, or on an exec_ctx) - this allows removal of a large number of trampoline functions that were appearing whenever we used combiners, and should allow for a much easier interface to combiner locks
* clang-formatGravatar Craig Tiller2016-10-26
|
* s/GPR_SLICE/GRPC_SLICE/gGravatar Craig Tiller2016-10-26
|
* Bulk update #includesGravatar Craig Tiller2016-10-26
|
* s/gpr_slice/grpc_slice, and move around tests, implsGravatar Craig Tiller2016-10-26
|
* Merge pull request #6798 from jboeuf/fix_3803Gravatar Jan Tattermusch2016-06-24
|\ | | | | Fix #3803
* \ Merge github.com:grpc/grpc into errorGravatar Craig Tiller2016-06-07
|\ \
| * | clang-formatGravatar David Garcia Quintas2016-06-06
| | |
| * | moar renamingsGravatar David Garcia Quintas2016-06-06
| | |
| | * Merge branch 'master' into fix_3803Gravatar Julien Boeuf2016-06-04
| | |\
* | | | Fix flipped conditionGravatar Craig Tiller2016-06-02
| | | |
| * | | s/grpc_pops/grpc_polling_entityGravatar David Garcia Quintas2016-05-31
| | | |
| * | | Merge branch 'master' of github.com:grpc/grpc into lb_pollset_propagationGravatar David Garcia Quintas2016-05-31
| |\ \ \ | | | |/ | | |/|
| | | * Starting the work to fix #3803.Gravatar Julien Boeuf2016-05-18
| | | | | | | | | | | | | | | | - We still need a way to bubble up this error.
| * | | Added missing pops_create to oauth2_utilsGravatar David Garcia Quintas2016-05-18
| | | |
* | | | Error reporting progressGravatar Craig Tiller2016-05-06
| | | |
* | | | API fuzzer compiles with new error handlingGravatar Craig Tiller2016-05-05
| |/ / |/| |
| * | allocate grpc_pops on the stackGravatar David Garcia Quintas2016-05-04
| | |
* | | Refactoring the core security code.Gravatar Julien Boeuf2016-05-04
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As opposed to a flat directory, we now have the following structure: - security -context - credentials - composite - fake - google_default - iam - jwt - oauth2 - plugin - ssl - transport - util We have not refactored the test code yet but this PR is already large enough...
| * Introduced grpc_pops (pollset or pollset_set)Gravatar David Garcia Quintas2016-05-03
| |
| * Changes across the board from pollset to pollset_setGravatar David Garcia Quintas2016-04-18
|/
* Update copyrightsGravatar Craig Tiller2016-03-31
|
* Fix includesGravatar Craig Tiller2016-03-25
|
* Revert "Revert "Add an implementation firewall against pollset_set""Gravatar Craig Tiller2016-02-25
|
* Revert "Add an implementation firewall against pollset_set"Gravatar Vijay Pai2016-02-25
|
* Change pollset mutex ownershipGravatar Craig Tiller2016-02-25
|
* Provide an interface firewall between pollset and its implementationsGravatar Craig Tiller2016-02-19
| | | | | | | Starting to allow for >1 implementation of pollset within a binary. Do so without requiring an extra allocation for completion queues (which we could not tolerate).
* Move worker into pollsetGravatar Craig Tiller2016-02-18
|
* Update copyrightsGravatar Craig Tiller2016-01-28
|
* Preparatory changes for work sheddingGravatar Craig Tiller2016-01-28
| | | | | | | | - cleanup: change grpc_iomgr_cb_func to take a bool instead of int success - cleanup: follow through with iomgr callback scheduling functions - prepare: add a workqueue to offload to to grpc_exec_ctx_enqueue* functions
* Merge branch 'release-0_12'Gravatar Nicolas "Pixel" Noble2015-12-01
|\ | | | | | | | | | | Conflicts: src/core/security/credentials.c test/core/security/credentials_test.c
| * Fixing implementations.Gravatar Julien Boeuf2015-11-18
|/
* Got the core test passing.Gravatar Julien Boeuf2015-10-09
|
* clang-format all core filesGravatar Craig Tiller2015-09-22
|
* Final patches for renameGravatar Craig Tiller2015-09-22
|
* Move argument passing to start of listGravatar Craig Tiller2015-09-22
|
* Rename initGravatar Craig Tiller2015-09-22
|
* Rename runGravatar Craig Tiller2015-09-22
|
* Move arguments to the start of listsGravatar Craig Tiller2015-09-22
|
* indent pass to get logical source lines on one physical lineGravatar Craig Tiller2015-09-22
|
* Rename call_list to closure_listGravatar Craig Tiller2015-09-22
|
* Call list progressGravatar Craig Tiller2015-09-21
|
* Call list progressGravatar Craig Tiller2015-09-18
|
* Add a test of non-blocking API behaviorGravatar Craig Tiller2015-08-06
| | | | ... also fix things that were broken :)
* Merge github.com:grpc/grpc into plucking-hellGravatar Craig Tiller2015-07-30
|\
* | Allow specific pollers to be wokenGravatar Craig Tiller2015-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, if two threads call grpc_completion_queue_pluck on the same completion queue for different tags, there is a 50% chance that we deliver the completion wakeup to the wrong poller - forcing the correct poller to wait until its polling times out before it can return an event up to the application. This change tweaks our polling interfaces so that we can indeed wake a specific poller. Nothing has been performance tuned yet. It's definitely sub-optimal in a number of places. Wakeup file-descriptors should be recycled. We should have a path that avoids calling poll() followed by epoll(). We can probably live without it right at the second though. This code will fail on Windows at least (I'll do that port when I'm in the office and have a Windows machine).