HomeSort by relevance Sort by last modified time
    Searched defs:asn1_context_t (Results 1 - 2 of 2) sorted by null

  /bootable/recovery/
asn1_decoder.h 23 typedef struct asn1_context asn1_context_t; typedef in typeref:struct:asn1_context
25 asn1_context_t* asn1_context_new(uint8_t* buffer, size_t length);
26 void asn1_context_free(asn1_context_t* ctx);
27 asn1_context_t* asn1_constructed_get(asn1_context_t* ctx);
28 bool asn1_constructed_skip_all(asn1_context_t* ctx);
29 int asn1_constructed_type(asn1_context_t* ctx);
30 asn1_context_t* asn1_sequence_get(asn1_context_t* ctx);
31 asn1_context_t* asn1_set_get(asn1_context_t* ctx)
    [all...]
asn1_decoder.cpp 28 } asn1_context_t; typedef in typeref:struct:asn1_context
41 asn1_context_t* asn1_context_new(uint8_t* buffer, size_t length) {
42 asn1_context_t* ctx = (asn1_context_t*) calloc(1, sizeof(asn1_context_t));
51 void asn1_context_free(asn1_context_t* ctx) {
55 static inline int peek_byte(asn1_context_t* ctx) {
62 static inline int get_byte(asn1_context_t* ctx) {
72 static inline bool skip_bytes(asn1_context_t* ctx, size_t num_skip) {
81 static bool decode_length(asn1_context_t* ctx, size_t* out_len)
    [all...]

Completed in 80 milliseconds