HomeSort by relevance Sort by last modified time
    Searched defs:cbs (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/boringssl/src/crypto/rsa/
rsa_test.cc 821 CBS cbs; local
    [all...]
  /external/boringssl/src/ssl/
d1_both.c 336 CBS cbs; local
337 CBS_init(&cbs, rr->data, rr->length);
339 while (CBS_len(&cbs) > 0) {
342 CBS body;
343 if (!dtls1_parse_fragment(&cbs, &msg_hdr, &body)) {
431 void dtls1_get_current_message(const SSL *ssl, CBS *out) {
476 int dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr,
477 CBS *out_body)
657 CBS cbs, body; local
    [all...]
s3_both.c 576 CBS v2_client_hello;
593 CBS cipher_specs, session_id, challenge;
740 void ssl3_get_current_message(const SSL *ssl, CBS *out) {
750 CBS cbs; local
751 hs->ssl->method->get_current_message(hs->ssl, &cbs);
752 return SSL_TRANSCRIPT_update(&hs->transcript, CBS_data(&cbs), CBS_len(&cbs));
773 int ssl_parse_extensions(const CBS *cbs, uint8_t *out_alert
    [all...]
ssl_asn1.c 471 * explicitly tagged with |tag| from |cbs| and saves it in |*out|. On
476 static int SSL_SESSION_parse_string(CBS *cbs, char **out, unsigned tag) {
477 CBS value;
479 if (!CBS_get_optional_asn1_octet_string(cbs, &value, &present, tag)) {
500 * explicitly tagged with |tag| from |cbs| and stows it in |*out_ptr|
505 static int SSL_SESSION_parse_octet_string(CBS *cbs, uint8_t **out_ptr,
507 CBS value;
508 if (!CBS_get_optional_asn1_octet_string(cbs, &value, NULL, tag))
812 CBS cbs; local
    [all...]
tls13_both.c 174 CBS cbs, context, certificate_list; local
175 CBS_init(&cbs, ssl->init_msg, ssl->init_num);
176 if (!CBS_get_u8_length_prefixed(&cbs, &context) ||
195 if (!CBS_get_u24_length_prefixed(&cbs, &certificate_list)) {
202 CBS certificate, extensions;
244 CBS status_request, sct;
268 CBS ocsp_response;
309 if (CBS_len(&cbs) != 0) {
370 CBS cbs, signature local
616 CBS cbs; local
    [all...]
tls13_client.c 57 CBS cbs, extensions; local
59 CBS_init(&cbs, ssl->init_msg, ssl->init_num);
60 if (!CBS_get_u16(&cbs, &server_wire_version) ||
61 !CBS_get_u16_length_prefixed(&cbs, &extensions) ||
64 CBS_len(&cbs) != 0) {
71 CBS cookie, key_share;
86 CBS cookie_value;
166 CBS cbs, server_random, extensions local
337 CBS cbs; local
401 CBS cbs, context, supported_signature_algorithms; local
672 CBS cbs, ticket, extensions; local
    [all...]
ssl_x509.c 1074 CBS cbs; local
    [all...]
handshake_client.c 795 CBS hello_verify_request, cookie;
837 CBS server_hello, server_random, session_id;
1056 CBS cbs; local
1429 CBS cbs; local
    [all...]
t1_lib.c 148 static int tls1_check_duplicate_extensions(const CBS *cbs) {
149 CBS extensions = *cbs;
157 CBS extension;
178 extensions = *cbs;
180 CBS extension;
212 CBS client_hello, random, session_id;
228 CBS cookie;
235 CBS cipher_suites, compression_methods
296 CBS cbs; local
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineJob.java 28 private final List<ResourceCallback> cbs = new ArrayList<ResourceCallback>(); field in class:EngineJob
82 cbs.add(cb);
91 cbs.remove(cb);
92 if (cbs.isEmpty()) {
143 } else if (cbs.isEmpty()) {
154 for (ResourceCallback cb : cbs) {
173 } else if (cbs.isEmpty()) {
180 for (ResourceCallback cb : cbs) {
  /external/libevent/
evthread.c 72 evthread_set_lock_callbacks(const struct evthread_lock_callbacks *cbs)
78 if (!cbs) {
87 if (target->lock_api_version == cbs->lock_api_version &&
88 target->supported_locktypes == cbs->supported_locktypes &&
89 target->alloc == cbs->alloc &&
90 target->free == cbs->free &&
91 target->lock == cbs->lock &&
92 target->unlock == cbs->unlock) {
100 if (cbs->alloc && cbs->free && cbs->lock && cbs->unlock)
269 struct evthread_lock_callbacks cbs = { local
    [all...]
evthread_win32.c 300 struct evthread_lock_callbacks cbs = { local
327 evthread_set_lock_callbacks(&cbs);
  /external/boringssl/src/crypto/bn/
bn_test.cc 1160 CBS cbs; local
1205 CBS cbs; local
1230 CBS cbs; local
    [all...]
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 34 CBS data;
50 CBS data;
72 CBS data, prefixed;
93 CBS data, prefixed;
124 CBS data, contents;
260 CBS data;
579 CBS in;
696 CBS in, out;
758 CBS cbs; local
788 CBS cbs; local
907 CBS cbs; local
926 CBS cbs; local
963 CBS cbs; local
    [all...]
  /external/opencv/cv/src/
cvstereobm.cpp 270 __m128i cbs = _mm_load_si128((const __m128i*)(cbuf_sub + d)); local
272 __m128i diff_h = _mm_sub_epi16(_mm_unpackhi_epi8(diff, z), _mm_unpackhi_epi8(cbs, z));
274 diff = _mm_sub_epi16(_mm_unpacklo_epi8(diff, z), _mm_unpacklo_epi8(cbs, z));
  /external/ipsec-tools/src/racoon/
oakley.c 2199 CBS cbs; local
    [all...]
  /hardware/interfaces/camera/device/3.2/default/
CameraDeviceSession.cpp 254 CirculatingBuffers& cbs = mCirculatingBuffers[streamIds[i]]; local
255 if (cbs.count(bufId) == 0) {
267 cbs[bufId] = importedBuf;
270 allBufPtrs[i] = &cbs[bufId];
949 CirculatingBuffers& cbs = cbsIt->second; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /development/ndk/platforms/android-21/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /external/boringssl/src/include/openssl/
x509.h 1121 OPENSSL_EXPORT int PKCS7_get_certificates(STACK_OF(X509) *out_certs, CBS *cbs); variable
1131 OPENSSL_EXPORT int PKCS7_get_CRLs(STACK_OF(X509_CRL) *out_crls, CBS *cbs); variable
    [all...]
  /external/kernel-headers/original/uapi/linux/
dcbnl.h 37 * @cbs: credit based shaper ets algorithm supported
60 __u8 cbs; member in struct:ieee_ets
  /external/stressapptest/src/
worker.cc 2947 struct iocb *cbs[] = { &cb }; local
    [all...]
  /external/vulkan-validation-layers/layers/
core_validation_types.h 74 // When an object is destroyed, any bound cbs are set to INVALID
620 CB_SUBMISSION(std::vector<VkCommandBuffer> const &cbs, std::vector<SEMAPHORE_WAIT> const &waitSemaphores, std::vector<VkSemaphore> const &signalSemaphores, VkFence fence)
621 : cbs(cbs), waitSemaphores(waitSemaphores), signalSemaphores(signalSemaphores), fence(fence) {}
623 std::vector<VkCommandBuffer> cbs; member in struct:CB_SUBMISSION
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 235 pktpool_cbinfo_t cbs[PKTPOOL_CB_MAX]; member in struct:pktpool
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
dcbnl.h 37 * @cbs: credit based shaper ets algorithm supported
60 __u8 cbs; member in struct:ieee_ets

Completed in 1871 milliseconds

12 3 4