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

1 2

  /external/libnfc-nci/src/nfc/ndef/
ndef_utils.c 83 UINT8 rec_hdr=0, type_len, id_len; local
133 id_len = *p_rec++;
136 id_len = 0;
147 if ( (type_len != 0) || (id_len != 0) || ((rec_hdr & NDEF_TNF_MASK) != NDEF_TNF_UNCHANGED) )
164 if ( (type_len != 0) || (id_len != 0) || ((rec_hdr & NDEF_TNF_MASK) != NDEF_TNF_UNCHANGED) )
180 if ( (type_len != 0) || (id_len != 0) || (payload_len != 0) )
191 p_rec += (payload_len + type_len + id_len);
223 UINT8 rec_hdr, type_len, id_len; local
247 id_len = *p_rec++;
249 id_len = 0
271 UINT8 rec_hdr, type_len, id_len; local
323 UINT8 rec_hdr, type_len, id_len; local
367 UINT8 rec_hdr, type_len, id_len; local
419 UINT8 rec_hdr, type_len, id_len; local
467 UINT8 rec_hdr, type_len, id_len; local
524 UINT8 rec_hdr, type_len, id_len; local
586 UINT8 rec_hdr, type_len, id_len; local
643 UINT8 rec_hdr, type_len, id_len; local
779 UINT8 rec_hdr, type_len, id_len; local
1084 UINT8 type_len, id_len; local
1168 UINT8 type_len, id_len; local
1524 UINT8 type_len, id_len, tnf; local
    [all...]
ndef_cho_utils.c 130 UINT8 payload[256], *p, id_len; local
147 id_len = (UINT8)strlen (p_id_str);
151 (UINT8*)p_id_str, id_len, payload, payload_len);
301 UINT8 payload_len, id_len; local
312 id_len = (UINT8)strlen (p_id_str);
316 (UINT8*)p_id_str, id_len, payload, payload_len);
539 UINT8 id_len = 0; local
542 id_len = (UINT8)strlen (p_id_str);
546 (UINT8*)p_id_str, id_len, p_payload, payload_len);
568 UINT8 id_len, tnf, type_len local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
lc3barch.h 54 (yasm_arch *arch, const char *id, size_t id_len, unsigned long line,
57 (yasm_arch *arch, const char *id, size_t id_len,
lc3bid.re 349 yasm_lc3b__parse_check_regtmod(yasm_arch *arch, const char *oid, size_t id_len,
381 size_t id_len, unsigned long line,
  /external/chromium_org/net/socket/
ssl_session_cache_openssl.cc 64 : id(a_id), id_len(a_id_len), hash(ComputeHash(a_id, a_id_len)) {}
67 : id(other.id), id_len(other.id_len), hash(other.hash) {}
71 id_len(session->session_id_length),
75 return hash == other.hash && id_len == other.id_len &&
76 !memcmp(id, other.id, id_len);
80 unsigned id_len; member in struct:net::__anon14166::SessionId
88 size_t ComputeHash(const unsigned char* id, unsigned id_len) {
90 for (unsigned n = 0; n < id_len; ++n
    [all...]
  /external/elfutils/0.153/libdwfl/
dwfl_build_id_find_elf.c 66 const size_t id_len = mod->build_id_len; local
71 char id_name[sizeof "/.build-id/" + 1 + id_len * 2 + sizeof ".debug" - 1];
76 for (size_t i = 1; i < id_len; ++i)
83 strcpy (&id_name[sizeof "/.build-id/" - 1 + 3 + (id_len - 1) * 2],
  /external/ipsec-tools/src/racoon/
admin.h 107 size_t id_len; member in struct:admin_com_psk
admin.c 373 if ((id = vmalloc(acp->id_len)) == NULL) {
390 data = (char *)(data + acp->id_len);
racoonctl.c 720 acp->id_len = strlen(id) + 1;
726 data = (char *)(data + acp->id_len);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
arch.h 133 (yasm_arch *arch, const char *id, size_t id_len, unsigned long line,
140 (yasm_arch *arch, const char *id, size_t id_len,
299 * \param id_len length of id string
308 (yasm_arch *arch, const char *id, size_t id_len, unsigned long line,
318 * \param id_len length of id string
324 (yasm_arch *arch, const char *id, size_t id_len,
460 #define yasm_arch_parse_check_insnprefix(arch, id, id_len, line, bc, prefix) \
462 (arch, id, id_len, line, bc, prefix)
463 #define yasm_arch_parse_check_regtmod(arch, id, id_len, data) \
465 (arch, id, id_len, data
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86regtmod.gperf 257 yasm_x86__parse_check_regtmod(yasm_arch *arch, const char *id, size_t id_len,
267 if (id_len > 7)
269 for (i=0; i<id_len; i++)
271 lcaseid[id_len] = '\0';
273 pdata = regtmod_find(lcaseid, id_len);
x86arch.h 307 (yasm_arch *arch, const char *id, size_t id_len, unsigned long line,
310 (yasm_arch *arch, const char *id, size_t id_len,
x86id.c     [all...]
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_ndef.c 371 UINT8 tnf, type_len, rec_hdr_flags, id_len; local
491 id_len = *p_rec_end++;
493 id_len = 0;
494 p_rec_end+=id_len;
  /external/chromium_org/media/base/
text_renderer.cc 187 size_t id_len = strlen(id_ptr); local
188 std::string id(id_ptr, id_len);
190 const char* settings_ptr = id_ptr + id_len + 1;
  /external/libnfc-nci/src/nfc/include/
ndef_utils.h 271 UINT8 *p_id, UINT8 id_len,
287 UINT8 *p_id, UINT8 id_len,
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_sess.c 236 unsigned int *id_len)
240 if (RAND_pseudo_bytes(id, *id_len) <= 0)
242 while(SSL_has_matching_session_id(ssl, id, *id_len) &&
ssl_lib.c 469 unsigned int id_len)
474 * any new session built out of this id/id_len and the ssl_version in
478 if(id_len > sizeof r.session_id)
482 r.session_id_length = id_len;
483 memcpy(r.session_id, id, id_len);
489 (id_len < SSL2_SSL_SESSION_ID_LENGTH))
491 memset(r.session_id + id_len, 0,
492 SSL2_SSL_SESSION_ID_LENGTH - id_len);
    [all...]
  /external/openssl/ssl/
ssl_sess.c 250 unsigned int *id_len)
254 if (RAND_pseudo_bytes(id, *id_len) <= 0)
256 while(SSL_has_matching_session_id(ssl, id, *id_len) &&
    [all...]
ssl_lib.c 461 unsigned int id_len)
466 * any new session built out of this id/id_len and the ssl_version in
470 if(id_len > sizeof r.session_id)
474 r.session_id_length = id_len;
475 memcpy(r.session_id, id, id_len);
481 (id_len < SSL2_SSL_SESSION_ID_LENGTH))
483 memset(r.session_id + id_len, 0,
484 SSL2_SSL_SESSION_ID_LENGTH - id_len);
    [all...]
  /external/openssl/apps/
s_server.c 214 unsigned int *id_len);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parse.c 908 size_t id_len; local
928 id_len = ID_len;
940 (p_object->arch, ID_val, ID_len, cur_line, &bc, &prefix)) {
992 switch (yasm_arch_parse_check_regtmod(p_object->arch, ID_val, ID_len,
    [all...]
  /external/elfutils/0.153/src/
unstrip.c 2123 int id_len = dwfl_module_build_id (mod, &id, &id_vaddr); local
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
ssl.h 704 * SSL_has_matching_session_id(ssl, id, *id_len)
712 unsigned int *id_len);
    [all...]
  /external/openssl/include/openssl/
ssl.h 780 * SSL_has_matching_session_id(ssl, id, *id_len)
788 unsigned int *id_len);
    [all...]

Completed in 3411 milliseconds

1 2