Home
last modified time | relevance | path

Searched refs:uu (Results 1 – 18 of 18) sorted by relevance

/packages/modules/Bluetooth/system/gd/hci/
Duuid.cc39 …if (memcmp(uu.data() + kNumBytes32, kBase.uu.data() + kNumBytes32, kNumBytes128 - kNumBytes32) != … in GetShortestRepresentationSize()
43 if (uu[0] == 0 && uu[1] == 0) { in GetShortestRepresentationSize()
55 return (((uint16_t)uu[2]) << 8) + uu[3]; in As16Bit()
59 return (((uint32_t)uu[0]) << 24) + (((uint32_t)uu[1]) << 16) + (((uint32_t)uu[2]) << 8) + uu[3]; in As32Bit()
68 uint8_t* p = ret.uu.data(); in FromString()
136 u.uu[2] = (uint8_t)((0xFF00 & uuid16) >> 8); in From16Bit()
137 u.uu[3] = (uint8_t)(0x00FF & uuid16); in From16Bit()
144 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()
145 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()
146 u.uu[2] = (uint8_t)((0x0000FF00 & uuid32) >> 8); in From32Bit()
[all …]
Duuid.h53 return uu.data(); in data()
57 return uu.data(); in data()
123 constexpr Uuid(const UUID128Bit& val) : uu{val} {}; in Uuid()
126 UUID128Bit uu = {}; variable
/packages/modules/Bluetooth/system/types/bluetooth/
Duuid.cc44 if (memcmp(uu.data() + kNumBytes32, kBase.uu.data() + kNumBytes32, in GetShortestRepresentationSize()
49 if (uu[0] == 0 && uu[1] == 0) return kNumBytes16; in GetShortestRepresentationSize()
58 uint16_t Uuid::As16Bit() const { return (((uint16_t)uu[2]) << 8) + uu[3]; } in As16Bit()
61 return (((uint32_t)uu[0]) << 24) + (((uint32_t)uu[1]) << 16) + in As32Bit()
62 (((uint32_t)uu[2]) << 8) + uu[3]; in As32Bit()
71 uint8_t* p = ret.uu.data(); in FromString()
112 u.uu[2] = (uint8_t)((0xFF00 & uuid16) >> 8); in From16Bit()
113 u.uu[3] = (uint8_t)(0x00FF & uuid16); in From16Bit()
120 u.uu[0] = (uint8_t)((0xFF000000 & uuid32) >> 24); in From32Bit()
121 u.uu[1] = (uint8_t)((0x00FF0000 & uuid32) >> 16); in From32Bit()
[all …]
Duuid.h118 constexpr Uuid(const UUID128Bit& val) : uu{val} {}; in Uuid()
121 UUID128Bit uu; variable
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs428 Ok((&value.uu).to_vec()) in try_from()
437 let mut uu: [u8; 16] = in try_from() localVariable
441 uu[2..4].copy_from_slice(&value[0..2]); in try_from()
442 Ok(Uuid::from(uu)) in try_from()
445 uu[0..4].copy_from_slice(&value[0..4]); in try_from()
446 Ok(Uuid::from(uu)) in try_from()
449 uu.copy_from_slice(&value[0..16]); in try_from()
450 Ok(Uuid::from(uu)) in try_from()
461 Self { uu: value }
467 uuid.uu in from()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_admin.rs93 remote_uuids.iter().filter(|&&uu| !self.is_service_allowed(uu)).cloned().collect() in get_blocked_services()
142 .map(|uu| uu.to_string()) in get_config_string()
333 v.sort_by(|lhs, rhs| lhs.uu.cmp(&rhs.uu)); in get_sorted_allowed_services()
352 allowed_services_uuid.sort_by(|lhs, rhs| lhs.uu.cmp(&rhs.uu)); in test_config()
Dbluetooth.rs1953 BluetoothProperty::Uuids(uu) => uu.len() > 0, in remote_device_properties_changed()
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_csip_set_coordinator.cpp50 auto uu = uuid.To128BitBE(); in uuid_lsb() local
53 lsb |= uu[i]; in uuid_lsb()
62 auto uu = uuid.To128BitBE(); in uuid_msb() local
65 msb |= uu[i]; in uuid_msb()
Dcom_android_bluetooth_gatt.cpp41 std::array<uint8_t, Uuid::kNumBytes128> uu; in from_java_uuid() local
43 uu[7 - i] = (uuid_msb >> (8 * i)) & 0xFF; in from_java_uuid()
44 uu[15 - i] = (uuid_lsb >> (8 * i)) & 0xFF; in from_java_uuid()
46 return Uuid::From128BitBE(uu); in from_java_uuid()
52 auto uu = uuid.To128BitBE(); in uuid_lsb() local
55 lsb |= uu[i]; in uuid_lsb()
64 auto uu = uuid.To128BitBE(); in uuid_msb() local
67 msb |= uu[i]; in uuid_msb()
Dcom_android_bluetooth_btservice_AdapterService.cpp49 std::array<uint8_t, Uuid::kNumBytes128> uu; in from_java_uuid() local
51 uu[7 - i] = (uuid_msb >> (8 * i)) & 0xFF; in from_java_uuid()
52 uu[15 - i] = (uuid_lsb >> (8 * i)) & 0xFF; in from_java_uuid()
54 return Uuid::From128BitBE(uu); in from_java_uuid()
/packages/modules/Bluetooth/system/btif/src/
Dbtif_sock_l2cap.cc394 auto uu = uuid.To128BitBE(); in uuid_lsb() local
397 lsb |= uu[i]; in uuid_lsb()
406 auto uu = uuid.To128BitBE(); in uuid_msb() local
409 msb |= uu[i]; in uuid_msb()
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcallbacks.rs490 allowlist.into_iter().map(|uu| uu.to_string()).collect::<Vec<String>>().join(", ") in on_service_allowlist_changed()
Dcommand_handler.rs1918 Some(uu) => uu, in cmd_socket()
/packages/apps/DocumentsUI/tests/res/raw/
Dimages_tar28 0�d�M�B�=h��@��uu�@��%ə&�ĭ�cyo�J%\'/+7�,�����b��&��FKf8��~9��0�>'<u��s]��}��+�LK&�(�…
66 …̛X�,��_�q"�R��猫�Al�� ~�HPϻ�z�ױӞ��O���]�HJ�m�֭ T�Q��P�Y�W�dP�*�>;z}�>aȕuu-|��-? X�F���#����Ne…
1005 …1k�A��3�{翠�f�����:o�kyB�^i{��1����)'�/����Kw����pU��1�#�j���z�/&v���Xuu�B��(���������…
1286 ���[l��A�A����dR�P���g�j��</���X�\�9��?Z5 J��-��ky�R��es�uu
2460 �<;uu�Dc�r6:ƪ�>~�o���|�N@8�=rk�,�<�)l�<������W�N�=PJ7B'�a�b��!A��w��w�V�z�x�v��ӭs��+�…
5021 …q��}�/�ˡ3n*�<;D��qT���4r�Σl 8�H��?�����q���6�,Jr����}�<K$nl`.x��ץ}uu�3X0f�L����c�U�eXFD…
5800 …D�-ɂU��Q�2qӨ�p*u�������)i��V������6��>S��8�_9xS�[~=ˣ��H�c(�02N�`���|�uu�����݂�m�g�k篂��hMZ…
8173 …�j�r*f]��}��w<�~~?��:��M�X2b�//k�������b+���n�V�ۼ��l`�)#�>��f����uu*�C��]�}����i4�̥�4,�…
8507 h���uu���yI��22A=2G��P"���F�hf���O�q��*���f[o(�,����~Py�{�~�Ң�U[����X��P��u㿽]�H�"e�����…
10233 ��-���S���Ԍ0�p=y�I3���s���+T_1�m�F��r�#ф�4~Af �y�k�|C�–�����q��n�?h���0+$���Pʱ�g��y�uuy~YFT…
[all …]
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/
Dthird_party_licenses11781 site such as uunet.uu.net, or by allowing the Copyright Holder to include
/packages/inputmethods/LatinIME/dictionaries/
Dpl_wordlist.combined.gz
Dlv_wordlist.combined.gz1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ...
Dhr_wordlist.combined.gz1dictionary=main:hr,locale=hr,description=Hrvatski,date=1393228135, ...