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

  /system/extras/tests/bionic/libc/bionic/
test_mutex.c 60 int attr_type; local
65 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
66 assert( attr_type == PTHREAD_MUTEX_NORMAL );
69 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
70 assert( attr_type == PTHREAD_MUTEX_ERRORCHECK );
73 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
74 assert( attr_type == PTHREAD_MUTEX_RECURSIVE );
  /external/bluetooth/bluedroid/stack/sdp/
sdp_discovery.c 901 UINT16 attr_type; local
913 attr_type = (type >> 3) & 0x0f;
930 p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
934 switch (attr_type)
994 p_attr->attr_len_type = (UINT16)attr_len | (attr_type << 12);
    [all...]
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host.cc 275 uint16 attr_type, attr_length; local
277 attr_type = talk_base::GetBE16(&packet[rtp_begin]);
279 &packet[rtp_begin + sizeof(attr_type)]);
285 if (attr_type != cricket::STUN_ATTR_DATA) {
286 rtp_begin += sizeof(attr_type) + sizeof(attr_length) + attr_length;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 163 uint16 attr_type, attr_length; local
165 attr_type = talk_base::GetBE16(&data[current_pos]);
166 attr_length = talk_base::GetBE16(&data[current_pos + sizeof(attr_type)]);
169 if (attr_type == STUN_ATTR_MESSAGE_INTEGRITY) {
179 current_pos += sizeof(attr_type) + sizeof(attr_length) + attr_length;
351 uint16 attr_type, attr_length; local
352 if (!buf->ReadUInt16(&attr_type))
357 StunAttribute* attr = CreateAttribute(attr_type, attr_length);
  /external/tcpdump/
print-l2tp.c 457 u_int16_t attr_type; local
502 attr_type = EXTRACT_16BITS(ptr); ptr++;
503 printf("%s", tok2str(l2tp_avp2str, "AVP-#%u", attr_type));
508 switch (attr_type) {
print-radius.c 341 } attr_type[]= variable in typeref:struct:attrtype
583 if (attr_type[attr_code].siz_subtypes)
587 table = attr_type[attr_code].subtypes;
602 if ( data_value <= (u_int32_t)(attr_type[attr_code].siz_subtypes - 1 +
603 attr_type[attr_code].first_subtype) &&
604 data_value >= attr_type[attr_code].first_subtype )
844 if (rad_attr->type > 0 && rad_attr->type < TAM_SIZE(attr_type))
845 attr_string = attr_type[rad_attr->type].name;
869 if (rad_attr->type < TAM_SIZE(attr_type))
873 if ( attr_type[rad_attr->type].print_func
    [all...]
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_int.h 263 tBTA_GATTC_ATTR_TYPE attr_type; member in struct:gattc_attr_cache
  /external/e2fsprogs/lib/blkid/
probe.c 690 unsigned int i, attr_type, val_len; local
753 attr_type = blkid_le32(attr->type);
763 if (attr_type == MFT_RECORD_ATTR_END)
766 if (attr_type == MFT_RECORD_ATTR_VOLUME_NAME) {
    [all...]
  /external/bluetooth/bluedroid/bta/include/
bta_gatt_api.h 277 UINT8 attr_type; member in struct:__anon5394
    [all...]

Completed in 313 milliseconds