| /external/ltrace/ |
| breakpoint.h | 63 struct bp_callbacks *cbs; member in struct:breakpoint 101 * disabled. orig_value has to be set separately. CBS may be 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);
|
| /external/strace/tests/ |
| aio.c | 116 const long cbs[ARRAY_SIZE(cb) + 2] = { local 140 if (syscall(__NR_io_submit, ctx, nr, cbs) != (long) nr)
|
| /external/boringssl/src/ssl/ |
| tls_record.c | 176 CBS cbs; local 177 CBS_init(&cbs, in, in_len); 182 if (!CBS_get_u8(&cbs, &type) || 183 !CBS_get_u16(&cbs, &version) || 184 !CBS_get_u16(&cbs, &ciphertext_len)) { 205 CBS body; 206 if (!CBS_get_bytes(&cbs, &body, ciphertext_len)) { 253 *out_consumed = in_len - CBS_len(&cbs);
|
| dtls_record.c | 178 CBS cbs; local 179 CBS_init(&cbs, in, in_len); 185 CBS body; 186 if (!CBS_get_u8(&cbs, &type) || 187 !CBS_get_u16(&cbs, &version) || 188 !CBS_copy_bytes(&cbs, sequence, 8) || 189 !CBS_get_u16_length_prefixed(&cbs, &body) || 210 *out_consumed = in_len - CBS_len(&cbs); 226 *out_consumed = in_len - CBS_len(&cbs); [all...] |
| ssl_asn1.c | 405 * explicitly tagged with |tag| from |cbs| and saves it in |*out|. On 410 static int SSL_SESSION_parse_string(CBS *cbs, char **out, unsigned tag) { 411 CBS value; 413 if (!CBS_get_optional_asn1_octet_string(cbs, &value, &present, tag)) { 434 * explicitly tagged with |tag| from |cbs| and stows it in |*out_ptr| 439 static int SSL_SESSION_parse_octet_string(CBS *cbs, uint8_t **out_ptr, 441 CBS value; 442 if (!CBS_get_optional_asn1_octet_string(cbs, &value, NULL, tag)) 684 CBS cbs; local 704 CBS cbs; local [all...] |
| s3_clnt.c | 745 CBS server_hello, server_random, session_id; 975 CBS cbs, certificate_list; local 986 CBS_init(&cbs, ssl->init_msg, n); 994 if (!CBS_get_u24_length_prefixed(&cbs, &certificate_list) || 996 CBS_len(&cbs) != 0) { 1003 CBS certificate 1312 CBS cbs; local [all...] |
| /external/boringssl/src/crypto/ecdsa/ |
| ecdsa_asn1.c | 111 ECDSA_SIG *ECDSA_SIG_parse(CBS *cbs) { 116 CBS child; 117 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || 129 CBS cbs; local 130 CBS_init(&cbs, in, in_len); 131 ECDSA_SIG *ret = ECDSA_SIG_parse(&cbs); 132 if (ret == NULL || CBS_len(&cbs) != 0) { 204 CBS cbs local [all...] |
| /external/libevent/ |
| evthread_pthread.c | 164 struct evthread_lock_callbacks cbs = { local 185 evthread_set_lock_callbacks(&cbs);
|
| 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/glide/library/src/main/java/com/bumptech/glide/request/target/ |
| ViewTarget.java | 115 private final List<SizeReadyCallback> cbs = new ArrayList<SizeReadyCallback>(); field in class:ViewTarget.SizeDeterminer 123 for (SizeReadyCallback cb : cbs) { 126 cbs.clear(); 130 if (cbs.isEmpty()) { 179 if (!cbs.contains(cb)) { 180 cbs.add(cb);
|
| /external/boringssl/src/crypto/rsa/ |
| rsa_asn1.c | 72 static int parse_integer_buggy(CBS *cbs, BIGNUM **out, int buggy) { 79 return BN_cbs2unsigned_buggy(cbs, *out); 81 return BN_cbs2unsigned(cbs, *out); 84 static int parse_integer(CBS *cbs, BIGNUM **out) { 85 return parse_integer_buggy(cbs, out, 0 /* not buggy */); 97 static RSA *parse_public_key(CBS *cbs, int buggy) { 102 CBS child 135 CBS cbs; local 294 CBS cbs; local 372 CBS cbs; local 414 CBS cbs; local [all...] |
| rsa_test.cc | 866 CBS cbs; local [all...] |
| /external/boringssl/src/crypto/x509/ |
| pkcs7.c | 31 * SignedData blob from |cbs| and sets |*out| to point to the rest of the 38 static int pkcs7_parse_header(uint8_t **der_bytes, CBS *out, CBS *cbs) { 40 CBS in, content_info, content_type, wrapped_signed_data, signed_data; 45 if (!CBS_asn1_ber_to_der(cbs, der_bytes, &der_len)) { 51 CBS_init(&in, CBS_data(cbs), CBS_len(cbs)); 92 int PKCS7_get_certificates(STACK_OF(X509) *out_certs, CBS *cbs) { 236 CBS cbs; local 258 CBS cbs; local [all...] |
| /external/boringssl/src/crypto/evp/ |
| p_rsa_asn1.c | 101 CBS cbs; local 102 CBS_init(&cbs, p, pklen); 103 RSA *rsa = RSA_parse_public_key_buggy(&cbs); 104 if (rsa == NULL || CBS_len(&cbs) != 0) {
|
| /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/boringssl/src/crypto/bn/ |
| bn_test.cc | 1824 CBS cbs; local 1870 CBS cbs; local 1895 CBS cbs; local [all...] |
| /external/boringssl/src/crypto/bytestring/ |
| bytestring_test.cc | 34 CBS data; 50 CBS data; 69 CBS data, prefixed; 90 CBS data, prefixed; 121 CBS data, contents; 238 CBS data; 545 CBS in; 663 CBS cbs; local 669 CBS_init(&cbs, (const uint8_t *)test->encoding, test->encoding_len) 694 CBS cbs; local [all...] |
| /external/ltrace/sysdeps/linux-gnu/ppc/ |
| plt.c | 927 leader->arch.dl_plt_update_bp->cbs = &dl_plt_update_cbs; 1170 static struct bp_callbacks 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...] |
| /external/ltrace/sysdeps/linux-gnu/ |
| trace.c | 602 static struct bp_callbacks cbs = { local 607 breakpoint_set_callbacks(bp, &cbs); 1487 static struct bp_callbacks cbs = { local 1501 static struct bp_callbacks cbs = { 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 | 1159 OPENSSL_EXPORT int PKCS7_get_certificates(STACK_OF(X509) *out_certs, CBS *cbs); variable 1169 OPENSSL_EXPORT int PKCS7_get_CRLs(STACK_OF(X509_CRL) *out_crls, CBS *cbs); variable [all...] |