Searched defs:cbs (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/boringssl/src/ssl/
H A Dt1_reneg.c150 int ssl_parse_clienthello_renegotiate_ext(SSL *s, CBS *cbs, int *out_alert) argument
154 if (!CBS_get_u8_length_prefixed(cbs, &renegotiated_connection) ||
155 CBS_len(cbs) != 0)
214 int ssl_parse_serverhello_renegotiate_ext(SSL *s, CBS *cbs, int *out_alert) argument
226 if (!CBS_get_u8_length_prefixed(cbs, &renegotiated_connection) ||
227 CBS_len(cbs) != 0)
H A Dd1_srtp.c310 int ssl_parse_clienthello_use_srtp_ext(SSL *s, CBS *cbs, int *out_alert) argument
318 if (!CBS_get_u16_length_prefixed(cbs, &profile_ids) ||
320 !CBS_get_u8_length_prefixed(cbs, &srtp_mki) ||
321 CBS_len(cbs) != 0)
404 int ssl_parse_serverhello_use_srtp_ext(SSL *s, CBS *cbs, int *out_alert) argument
419 if (!CBS_get_u16_length_prefixed(cbs, &profile_ids) ||
422 !CBS_get_u8_length_prefixed(cbs, &srtp_mki) ||
423 CBS_len(cbs) != 0)
H A Ds3_clnt.c1001 CBS cbs, certificate_list; local
1014 CBS_init(&cbs, s->init_msg, n);
1022 if (!CBS_get_u24_length_prefixed(&cbs, &certificate_list) ||
1023 CBS_len(&cbs) != 0)
1589 CBS cbs; local
1638 CBS_init(&cbs, s->init_msg, n);
1648 if (!CBS_get_u8_length_prefixed(&cbs, &certificate_types))
1664 if (!CBS_get_u16_length_prefixed(&cbs, &supported_signature_algorithms))
1685 if (!CBS_get_u16_length_prefixed(&cbs, &certificate_authorities))
H A Dt1_lib.c207 static int tls1_check_duplicate_extensions(const CBS *cbs) argument
209 CBS extensions = *cbs;
242 extensions = *cbs;
457 int tls1_check_curve(SSL *s, CBS *cbs, uint16_t *out_curve_id) argument
465 if (!CBS_get_u8(cbs, &curve_type) ||
467 !CBS_get_u16(cbs, &curve_id))
748 * |cbs|. It checks it is consistent with |s|'s sent supported
754 SSL *s, CBS *cbs, EVP_PKEY *pkey)
767 if (!CBS_get_u8(cbs, &hash) ||
768 !CBS_get_u8(cbs,
753 tls12_check_peer_sigalg(const EVP_MD **out_md, int *out_alert, SSL *s, CBS *cbs, EVP_PKEY *pkey) argument
1369 tls1_alpn_handle_client_hello(SSL *s, CBS *cbs, int *out_alert) argument
1415 ssl_scan_clienthello_tlsext(SSL *s, CBS *cbs, int *out_alert) argument
1796 ssl_parse_clienthello_tlsext(SSL *s, CBS *cbs) argument
1816 ssl_next_proto_validate(const CBS *cbs) argument
1832 ssl_scan_serverhello_tlsext(SSL *s, CBS *cbs, int *out_alert) argument
2222 ssl_parse_serverhello_tlsext(SSL *s, CBS *cbs) argument
[all...]
/external/ltrace/
H A Dbreakpoint.h63 struct bp_callbacks *cbs; member in struct:breakpoint
112 /* Set callbacks. If CBS is non-NULL, then BP->cbs shall be NULL. */
113 void breakpoint_set_callbacks(struct breakpoint *bp, struct bp_callbacks *cbs);
H A Dbreakpoints.c66 if (bp->cbs != NULL && bp->cbs->on_hit != NULL)
67 (bp->cbs->on_hit)(bp, proc);
74 if (bp->cbs != NULL && bp->cbs->on_continue != NULL)
75 (bp->cbs->on_continue)(bp, proc);
84 if (bp->cbs != NULL && bp->cbs->on_retract != NULL)
85 (bp->cbs->on_retract)(bp, proc);
92 if (bp->cbs !
194 breakpoint_set_callbacks(struct breakpoint *bp, struct bp_callbacks *cbs) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineJob.java18 private List<ResourceCallback> cbs; field in class:EngineJob
34 if (cbs == null) {
35 cbs = new ArrayList<ResourceCallback>(2);
36 cbs.add(this.cb);
38 cbs.add(cb);
43 if (cbs != null) {
44 cbs.remove(cb);
45 if (cbs.size() == 0) {
89 if (cbs != null) {
90 resource.acquire(cbs
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DViewTarget.java81 private Set<SizeReadyCallback> cbs = new HashSet<SizeReadyCallback>(); field in class:ViewTarget.SizeDeterminer
89 for (SizeReadyCallback cb : cbs) {
92 cbs.clear();
96 if (cbs.isEmpty()) {
143 cbs.add(cb);
/external/chromium_org/net/cert/
H A Dct_objects_extractor_openssl.cc270 CBS cbs; local
271 CBS_init(&cbs,
279 if (!CBS_get_asn1(&cbs, &sequence, CBS_ASN1_SEQUENCE) ||
280 CBS_len(&cbs) != 0 ||
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
H A Dcbs.c25 void CBS_init(CBS *cbs, const uint8_t *data, size_t len) { argument
26 cbs->data = data;
27 cbs->len = len;
30 static int cbs_get(CBS *cbs, const uint8_t **p, size_t n) { argument
31 if (cbs->len < n) {
35 *p = cbs->data;
36 cbs->data += n;
37 cbs->len -= n;
41 int CBS_skip(CBS *cbs, size_t len) { argument
43 return cbs_get(cbs,
46 CBS_data(const CBS *cbs) argument
50 CBS_len(const CBS *cbs) argument
54 CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) argument
72 CBS_strdup(const CBS *cbs, char **out_ptr) argument
80 CBS_contains_zero_byte(const CBS *cbs) argument
84 CBS_mem_equal(const CBS *cbs, const uint8_t *data, size_t len) argument
90 cbs_get_u(CBS *cbs, uint32_t *out, size_t len) argument
106 CBS_get_u8(CBS *cbs, uint8_t *out) argument
115 CBS_get_u16(CBS *cbs, uint16_t *out) argument
124 CBS_get_u24(CBS *cbs, uint32_t *out) argument
128 CBS_get_u32(CBS *cbs, uint32_t *out) argument
132 CBS_get_bytes(CBS *cbs, CBS *out, size_t len) argument
141 cbs_get_length_prefixed(CBS *cbs, CBS *out, size_t len_len) argument
149 CBS_get_u8_length_prefixed(CBS *cbs, CBS *out) argument
153 CBS_get_u16_length_prefixed(CBS *cbs, CBS *out) argument
157 CBS_get_u24_length_prefixed(CBS *cbs, CBS *out) argument
161 CBS_get_any_asn1_element(CBS *cbs, CBS *out, unsigned *out_tag, size_t *out_header_len) argument
231 cbs_get_asn1(CBS *cbs, CBS *out, unsigned tag_value, int skip_header) argument
259 CBS_get_asn1(CBS *cbs, CBS *out, unsigned tag_value) argument
263 CBS_get_asn1_element(CBS *cbs, CBS *out, unsigned tag_value) argument
267 CBS_get_asn1_uint64(CBS *cbs, uint64_t *out) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/obj/
H A Dobj.c217 int OBJ_cbs2nid(const CBS *cbs) { argument
220 obj.data = CBS_data(cbs);
221 obj.length = CBS_len(cbs);
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dplt.c927 leader->arch.dl_plt_update_bp->cbs = &dl_plt_update_cbs;
1170 static struct bp_callbacks cbs = { local
1175 breakpoint_set_callbacks(bp, &cbs);
/external/ltrace/sysdeps/linux-gnu/
H A Dtrace.c602 static struct bp_callbacks cbs = { local
607 breakpoint_set_callbacks(bp, &cbs);
1487 static struct bp_callbacks cbs = { local
1490 breakpoint_set_callbacks(*ret, &cbs);
1501 static struct bp_callbacks cbs = { local
1504 breakpoint_set_callbacks(bp, &cbs);
/external/opencv/cv/src/
H A Dcvstereobm.cpp270 __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/kernel-headers/original/uapi/linux/
H A Ddcbnl.h37 * @cbs: credit based shaper ets algorithm supported
60 __u8 cbs; member in struct:ieee_ets
/external/stressapptest/src/
H A Dworker.cc2922 struct iocb *cbs[] = { &cb }; local
2923 if (io_submit(aio_ctx_, 1, cbs) != 1) {
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dx509.h1174 /* PKCS7_get_certificates parses a PKCS#7, SignedData structure from |cbs| and
1177 OPENSSL_EXPORT int PKCS7_get_certificates(STACK_OF(X509) *out_certs, CBS *cbs); variable

Completed in 428 milliseconds