/external/grpc-grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_verifier.cc | 189 void grpc_jwt_claims_destroy(grpc_jwt_claims* claims) { in grpc_jwt_claims_destroy() argument 190 grpc_json_destroy(claims->json); in grpc_jwt_claims_destroy() 191 grpc_slice_unref_internal(claims->buffer); in grpc_jwt_claims_destroy() 192 gpr_free(claims); in grpc_jwt_claims_destroy() 195 const grpc_json* grpc_jwt_claims_json(const grpc_jwt_claims* claims) { in grpc_jwt_claims_json() argument 196 if (claims == nullptr) return nullptr; in grpc_jwt_claims_json() 197 return claims->json; in grpc_jwt_claims_json() 200 const char* grpc_jwt_claims_subject(const grpc_jwt_claims* claims) { in grpc_jwt_claims_subject() argument 201 if (claims == nullptr) return nullptr; in grpc_jwt_claims_subject() 202 return claims->sub; in grpc_jwt_claims_subject() [all …]
|
D | jwt_verifier.h | 56 void grpc_jwt_claims_destroy(grpc_jwt_claims* claims); 59 const grpc_json* grpc_jwt_claims_json(const grpc_jwt_claims* claims); 62 const char* grpc_jwt_claims_subject(const grpc_jwt_claims* claims); 63 const char* grpc_jwt_claims_issuer(const grpc_jwt_claims* claims); 64 const char* grpc_jwt_claims_id(const grpc_jwt_claims* claims); 65 const char* grpc_jwt_claims_audience(const grpc_jwt_claims* claims); 66 gpr_timespec grpc_jwt_claims_issued_at(const grpc_jwt_claims* claims); 67 gpr_timespec grpc_jwt_claims_expires_at(const grpc_jwt_claims* claims); 68 gpr_timespec grpc_jwt_claims_not_before(const grpc_jwt_claims* claims); 107 grpc_jwt_claims* claims); [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_verifier.cc | 197 void grpc_jwt_claims_destroy(grpc_jwt_claims* claims) { in grpc_jwt_claims_destroy() argument 198 claims->json.Destroy(); in grpc_jwt_claims_destroy() 199 gpr_free(claims); in grpc_jwt_claims_destroy() 202 const Json* grpc_jwt_claims_json(const grpc_jwt_claims* claims) { in grpc_jwt_claims_json() argument 203 if (claims == nullptr) return nullptr; in grpc_jwt_claims_json() 204 return claims->json.get(); in grpc_jwt_claims_json() 207 const char* grpc_jwt_claims_subject(const grpc_jwt_claims* claims) { in grpc_jwt_claims_subject() argument 208 if (claims == nullptr) return nullptr; in grpc_jwt_claims_subject() 209 return claims->sub; in grpc_jwt_claims_subject() 212 const char* grpc_jwt_claims_issuer(const grpc_jwt_claims* claims) { in grpc_jwt_claims_issuer() argument [all …]
|
D | jwt_verifier.h | 56 void grpc_jwt_claims_destroy(grpc_jwt_claims* claims); 59 const grpc_core::Json* grpc_jwt_claims_json(const grpc_jwt_claims* claims); 62 const char* grpc_jwt_claims_subject(const grpc_jwt_claims* claims); 63 const char* grpc_jwt_claims_issuer(const grpc_jwt_claims* claims); 64 const char* grpc_jwt_claims_id(const grpc_jwt_claims* claims); 65 const char* grpc_jwt_claims_audience(const grpc_jwt_claims* claims); 66 gpr_timespec grpc_jwt_claims_issued_at(const grpc_jwt_claims* claims); 67 gpr_timespec grpc_jwt_claims_expires_at(const grpc_jwt_claims* claims); 68 gpr_timespec grpc_jwt_claims_not_before(const grpc_jwt_claims* claims); 106 grpc_jwt_claims* claims); [all …]
|
/external/grpc-grpc/test/core/security/ |
D | jwt_verifier_test.cc | 207 grpc_jwt_claims* claims; in test_claims_success() local 213 claims = grpc_jwt_claims_from_json(json, s); in test_claims_success() 214 GPR_ASSERT(claims != nullptr); in test_claims_success() 215 GPR_ASSERT(grpc_jwt_claims_json(claims) == json); in test_claims_success() 216 GPR_ASSERT(strcmp(grpc_jwt_claims_audience(claims), "https://foo.com") == 0); in test_claims_success() 217 GPR_ASSERT(strcmp(grpc_jwt_claims_issuer(claims), "blah.foo.com") == 0); in test_claims_success() 218 GPR_ASSERT(strcmp(grpc_jwt_claims_subject(claims), "juju@blah.foo.com") == 0); in test_claims_success() 219 GPR_ASSERT(strcmp(grpc_jwt_claims_id(claims), "jwtuniqueid") == 0); in test_claims_success() 220 GPR_ASSERT(grpc_jwt_claims_check(claims, "https://foo.com") == in test_claims_success() 222 grpc_jwt_claims_destroy(claims); in test_claims_success() [all …]
|
D | verify_jwt.cc | 50 grpc_jwt_claims* claims) { in on_jwt_verification_done() argument 56 GPR_ASSERT(claims != nullptr); in on_jwt_verification_done() 58 const_cast<grpc_json*>(grpc_jwt_claims_json(claims)), 2); in on_jwt_verification_done() 61 grpc_jwt_claims_destroy(claims); in on_jwt_verification_done() 63 GPR_ASSERT(claims == nullptr); in on_jwt_verification_done()
|
/external/rust/crates/grpcio-sys/grpc/test/core/security/ |
D | jwt_verifier_test.cc | 209 grpc_jwt_claims* claims; in test_claims_success() local 218 claims = grpc_jwt_claims_from_json(json); in test_claims_success() 219 GPR_ASSERT(claims != nullptr); in test_claims_success() 220 GPR_ASSERT(*grpc_jwt_claims_json(claims) == json); in test_claims_success() 221 GPR_ASSERT(strcmp(grpc_jwt_claims_audience(claims), "https://foo.com") == 0); in test_claims_success() 222 GPR_ASSERT(strcmp(grpc_jwt_claims_issuer(claims), "blah.foo.com") == 0); in test_claims_success() 223 GPR_ASSERT(strcmp(grpc_jwt_claims_subject(claims), "juju@blah.foo.com") == 0); in test_claims_success() 224 GPR_ASSERT(strcmp(grpc_jwt_claims_id(claims), "jwtuniqueid") == 0); in test_claims_success() 225 GPR_ASSERT(grpc_jwt_claims_check(claims, "https://foo.com") == in test_claims_success() 227 grpc_jwt_claims_destroy(claims); in test_claims_success() [all …]
|
D | verify_jwt.cc | 49 grpc_jwt_claims* claims) { in on_jwt_verification_done() argument 54 GPR_ASSERT(claims != nullptr); in on_jwt_verification_done() 55 std::string claims_str = grpc_jwt_claims_json(claims)->Dump(/*indent=*/2); in on_jwt_verification_done() 57 grpc_jwt_claims_destroy(claims); in on_jwt_verification_done() 59 GPR_ASSERT(claims == nullptr); in on_jwt_verification_done()
|
/external/libaom/libaom/third_party/libwebm/ |
D | PATENTS.TXT | 11 such license applies only to those patent claims, both currently owned by 13 infringed by these implementations of WebM. This grant does not include claims
|
/external/libvpx/libvpx/ |
D | PATENTS | 11 such license applies only to those patent claims, both currently owned by 13 infringed by these implementations of WebM. This grant does not include claims
|
/external/webrtc/ |
D | PATENTS | 11 only to those patent claims, both currently owned by Google and 14 grant does not include claims that would be infringed only as a
|
/external/webp/ |
D | PATENTS | 11 such license applies only to those patent claims, both currently owned by 13 infringed by these implementations of WebM. This grant does not include claims
|
/external/libwebm/ |
D | PATENTS.TXT | 11 such license applies only to those patent claims, both currently owned by 13 infringed by these implementations of WebM. This grant does not include claims
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | PATENTS.TXT | 11 such license applies only to those patent claims, both currently owned by 13 infringed by these implementations of WebM. This grant does not include claims
|
/external/libyuv/files/ |
D | PATENTS | 11 only to those patent claims, both currently owned by Google and 14 grant does not include claims that would be infringed only as a
|
/external/junit/ |
D | LICENSE-junit.txt | 31 "Licensed Patents " mean patent claims licensable by a Contributor which are 63 any liability to Recipient for claims brought by any other entity based on 124 and costs (collectively "Losses") arising from claims, lawsuits and other legal 128 offering. The obligations in this section do not apply to any claims or Losses 138 Commercial Contributor then makes performance claims, or offers warranties 139 related to Product X, those performance claims and warranties are such 141 Commercial Contributor would have to defend claims against the other 142 Contributors related to those performance claims and warranties, and if a court
|
/external/kotlinc/license/third_party/testdata/ |
D | eclipse_license.txt | 28 "Licensed Patents " mean patent claims licensable by a Contributor which are 63 Each Contributor disclaims any liability to Recipient for claims 124 losses, damages and costs (collectively "Losses") arising from claims, 129 to any claims or Losses relating to any actual or alleged intellectual 139 If that Commercial Contributor then makes performance claims, or offers 140 warranties related to Product X, those performance claims and warranties 142 the Commercial Contributor would have to defend claims against the other 143 Contributors related to those performance claims and warranties, and if a
|
/external/icu/tools/srcgen/currysrc/libs/ |
D | NOTICE | 32 "Licensed Patents" mean patent claims licensable by a Contributor which 66 Contributor disclaims any liability to Recipient for claims brought by 128 costs (collectively "Losses") arising from claims, lawsuits and other 133 section do not apply to any claims or Losses relating to any actual or 144 claims, or offers warranties related to Product X, those performance 145 claims and warranties are such Commercial Contributor's responsibility 147 defend claims against the other Contributors related to those 148 performance claims and warranties, and if a court requires any other
|
/external/emma/ |
D | NOTICE | 23 "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed … 40 … other entity. Each Contributor disclaims any liability to Recipient for claims brought by any oth… 83 …ainst any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and othe… 85 commercial product offering. The obligations in this section do not apply to any claims or Losses r… 90 then makes performance claims, or offers warranties related to Product X, those performance claims … 91 …ercial Contributor would have to defend claims against the other Contributors related to those per…
|
/external/llvm-project/polly/lib/External/isl/test_inputs/ |
D | affine.polylib | 7 # ... is {[a,b] : a=b} (and not {[In_1,In_2]}, as Omega 1.2 claims)
|
/external/curl/docs/cmdline-opts/ |
D | anyauth.d | 8 secure one the remote site claims to support. This is done by first doing a
|
/external/webrtc/third_party/abseil-cpp/ |
D | ABSEIL_ISSUE_TEMPLATE.md | 11 proposed API changes. No controversial claims should be made here. If there are
|
/external/libtextclassifier/abseil-cpp/ |
D | ABSEIL_ISSUE_TEMPLATE.md | 11 proposed API changes. No controversial claims should be made here. If there are
|
/external/llvm-project/llvm/test/Analysis/BasicAA/ |
D | 2014-03-18-Maxlookup-reached.ll | 4 ; BasicAA claims no alias when there is (due to a problem when the MaxLookup
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/ |
D | ABSEIL_ISSUE_TEMPLATE.md | 11 proposed API changes. No controversial claims should be made here. If there are
|