HomeSort by relevance Sort by last modified time
    Searched refs:cbs (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/boringssl/src/crypto/bytestring/
cbs.c 25 void CBS_init(CBS *cbs, const uint8_t *data, size_t len) {
26 cbs->data = data;
27 cbs->len = len;
30 static int cbs_get(CBS *cbs, const uint8_t **p, size_t n) {
31 if (cbs->len < n) {
35 *p = cbs->data;
36 cbs->data += n;
37 cbs->len -= n
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
bytestring.h 27 * A "CBS" (CRYPTO ByteString) represents a string of bytes in memory and
42 /* CBS_init sets |cbs| to point to |data|. It does not take ownership of
44 OPENSSL_EXPORT void CBS_init(CBS *cbs, const uint8_t *data, size_t len);
46 /* CBS_skip advances |cbs| by |len| bytes. It returns one on success and zero
48 OPENSSL_EXPORT int CBS_skip(CBS *cbs, size_t len);
50 /* CBS_data returns a pointer to the contains of |cbs|. */
51 OPENSSL_EXPORT const uint8_t *CBS_data(const CBS *cbs);
    [all...]
obj.h 101 /* OBJ_cbs2nid returns the nid corresponding to the DER data in |cbs|, or
103 OPENSSL_EXPORT int OBJ_cbs2nid(const CBS *cbs);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineJob.java 18 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.size())
    [all...]
  /external/ltrace/
breakpoints.c 66 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 != NULL && bp->cbs->on_install != NULL
    [all...]
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/chromium_org/third_party/boringssl/src/ssl/
t1_reneg.c 150 int ssl_parse_clienthello_renegotiate_ext(SSL *s, CBS *cbs, int *out_alert)
152 CBS renegotiated_connection;
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)
218 CBS renegotiated_connection;
226 if (!CBS_get_u8_length_prefixed(cbs, &renegotiated_connection) ||
227 CBS_len(cbs) != 0
    [all...]
d1_srtp.c 310 int ssl_parse_clienthello_use_srtp_ext(SSL *s, CBS *cbs, int *out_alert)
312 CBS profile_ids, srtp_mki;
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)
406 CBS profile_ids, srtp_mki;
419 if (!CBS_get_u16_length_prefixed(cbs, &profile_ids) |
    [all...]
t1_lib.c 207 static int tls1_check_duplicate_extensions(const CBS *cbs)
209 CBS extensions = *cbs;
218 CBS extension;
242 extensions = *cbs;
245 CBS extension;
275 CBS client_hello, session_id, cipher_suites, compression_methods, extensions;
296 CBS cookie;
343 CBS extensions
    [all...]
ssl_locl.h 805 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, const CBS *cbs,
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ViewTarget.java 81 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/third_party/boringssl/src/crypto/x509/
pkcs7.c 25 int PKCS7_get_certificates(STACK_OF(X509) *out_certs, CBS *cbs) {
28 CBS in, content_info, content_type, wrapped_signed_data, signed_data,
35 if (!CBS_asn1_ber_to_der(cbs, &der_bytes, &der_len)) {
41 CBS_init(&in, CBS_data(cbs), CBS_len(cbs));
80 CBS cert;
  /frameworks/base/services/core/java/com/android/server/
AppOpsService.java 386 ArrayList<Callback> cbs = mOpModeWatchers.get(code); local
387 if (cbs != null) {
391 repCbs.addAll(cbs);
393 cbs = mPackageModeWatchers.get(packageName);
394 if (cbs != null) {
398 repCbs.addAll(cbs);
421 String packageName, int op, ArrayList<Callback> cbs) {
422 if (cbs == null) {
428 for (int i=0; i<cbs.size(); i++) {
429 Callback cb = cbs.get(i)
519 ArrayList<Callback> cbs = mOpModeWatchers.get(op); local
527 ArrayList<Callback> cbs = mPackageModeWatchers.get(packageName); local
544 ArrayList<Callback> cbs = mOpModeWatchers.valueAt(i); local
551 ArrayList<Callback> cbs = mPackageModeWatchers.valueAt(i); local
    [all...]
  /external/chromium_org/net/cert/
ct_objects_extractor_openssl.cc 47 bool StringEqualToCBS(const std::string& value1, const CBS* value2) {
77 CBS ext_value, sct_list;
98 bool FindMatchingSingleResponse(CBS* responses,
101 CBS* out_single_response) {
130 CBS single_response, cert_id;
136 CBS hash_algorithm, hash, serial_number, issuer_name_hash, issuer_key_hash;
270 CBS cbs; local
271 CBS_init(&cbs,
277 CBS sequence, response_status, tagged_response_bytes, response_bytes
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/obj/
obj.c 217 int OBJ_cbs2nid(const CBS *cbs) {
220 obj.data = CBS_data(cbs);
221 obj.length = CBS_len(cbs);
  /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-L/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /external/kernel-headers/original/uapi/linux/
dcbnl.h 37 * @cbs: credit based shaper ets algorithm supported
60 __u8 cbs; member in struct:ieee_ets
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
dcbnl.h 32 __u8 cbs; member in struct:ieee_ets

Completed in 691 milliseconds

1 2