Home
last modified time | relevance | path

Searched refs:Descriptor (Results 1 – 25 of 27) sorted by relevance

12

/system/bt/service/common/bluetooth/
Ddescriptor.cc20 Descriptor::Descriptor(const Descriptor& other) { in Descriptor() function in bluetooth::Descriptor
26 Descriptor& Descriptor::operator=(const Descriptor& other) { in operator =()
36 bool Descriptor::Equals(const Descriptor& other) const { in Equals()
41 bool Descriptor::operator==(const Descriptor& rhs) const { return Equals(rhs); } in operator ==()
43 bool Descriptor::operator!=(const Descriptor& rhs) const { in operator !=()
Ddescriptor.h22 class Descriptor {
24 Descriptor() = default;
25 Descriptor(const Descriptor& other);
26 Descriptor& operator=(const Descriptor& other);
27 Descriptor(uint16_t handle, const Uuid& uuid, uint16_t permissions) in Descriptor() function
29 virtual ~Descriptor() = default;
32 bool Equals(const Descriptor& other) const;
33 bool operator==(const Descriptor& rhs) const;
34 bool operator!=(const Descriptor& rhs) const;
Dcharacteristic.h31 const std::vector<Descriptor>& descriptors) in Characteristic()
49 const std::vector<Descriptor>& descriptors() const { return descriptors_; } in descriptors()
50 std::vector<Descriptor>& descriptors() { return descriptors_; } in descriptors()
57 std::vector<Descriptor> descriptors_;
/system/bt/service/test/
Dparcelable_unittest.cc35 using bluetooth::Descriptor;
149 Descriptor s = Descriptor(0x0000, Uuid::GetRandom(), in TEST()
151 Descriptor s2 = Descriptor(0xFFFE, Uuid::GetRandom(), in TEST()
153 Descriptor s3 = Descriptor(0x003D, Uuid::GetRandom(), in TEST()
158 TestData<Descriptor, android::bluetooth::BluetoothGattDescriptor>(s); in TEST()
162 TestData<Descriptor, android::bluetooth::BluetoothGattDescriptor>(s2); in TEST()
166 TestData<Descriptor, android::bluetooth::BluetoothGattDescriptor>(s3); in TEST()
172 {Descriptor(0x0005, Uuid::GetRandom(), 0), in TEST()
173 Descriptor(0x0007, Uuid::GetRandom(), 0), in TEST()
174 Descriptor(0x00A1, Uuid::GetRandom(), 0)}); in TEST()
[all …]
/system/extras/simpleperf/
DJITDebugReader.h140 struct Descriptor { struct
170 Descriptor last_jit_descriptor;
172 Descriptor last_dex_descriptor;
184 bool ReadDebugInfo(Process& process, Descriptor& new_descriptor,
186 bool IsDescriptorChanged(Process& process, Descriptor& old_descriptor);
191 bool ReadDescriptors(Process& process, Descriptor* jit_descriptor, Descriptor* dex_descriptor);
192 bool LoadDescriptor(bool is_64bit, const char* data, Descriptor* descriptor);
194 bool LoadDescriptorImpl(const char* data, Descriptor* descriptor);
196 bool ReadNewCodeEntries(Process& process, const Descriptor& descriptor,
200 bool ReadNewCodeEntriesImpl(Process& process, const Descriptor& descriptor,
DJITDebugReader.cpp374 Descriptor jit_descriptor; in ReadProcess()
375 Descriptor dex_descriptor; in ReadProcess()
390 bool JITDebugReader::ReadDebugInfo(Process& process, Descriptor& new_descriptor, in ReadDebugInfo()
393 Descriptor* old_descriptor = in ReadDebugInfo()
433 bool JITDebugReader::IsDescriptorChanged(Process& process, Descriptor& prev_descriptor) { in IsDescriptorChanged()
434 Descriptor tmp_jit_descriptor; in IsDescriptorChanged()
435 Descriptor tmp_dex_descriptor; in IsDescriptorChanged()
548 bool JITDebugReader::ReadDescriptors(Process& process, Descriptor* jit_descriptor, in ReadDescriptors()
549 Descriptor* dex_descriptor) { in ReadDescriptors()
565 bool JITDebugReader::LoadDescriptor(bool is_64bit, const char* data, Descriptor* descriptor) { in LoadDescriptor()
[all …]
/system/bt/service/common/android/bluetooth/
Dbluetooth_gatt_descriptor.h32 public ::bluetooth::Descriptor {
36 const ::bluetooth::Descriptor& characteristic) // NOLINT(implicit) in BluetoothGattDescriptor()
37 : ::bluetooth::Descriptor(characteristic){}; in BluetoothGattDescriptor()
/system/core/init/
Dservice_utils.h35 class Descriptor {
37 Descriptor(const std::string& name, android::base::unique_fd fd) in Descriptor() function
56 Result<Descriptor> Create(const std::string& global_context) const;
63 Result<Descriptor> Create() const;
Dservice_utils.cpp149 void Descriptor::Publish() const { in Publish()
168 Result<Descriptor> SocketDescriptor::Create(const std::string& global_context) const { in Create()
175 return Descriptor(ANDROID_SOCKET_ENV_PREFIX + name, unique_fd(*result)); in Create()
178 Result<Descriptor> FileDescriptor::Create() const { in Create()
195 return Descriptor(ANDROID_FILE_ENV_PREFIX + name, std::move(fd)); in Create()
/system/bt/bta/gatt/
Ddatabase.h65 struct Descriptor;
88 std::vector<Descriptor> descriptors;
91 struct Descriptor { struct
Ddatabase.cc73 for (const Descriptor& d : c.descriptors) { in ToString()
112 for (const Descriptor& desc : charac.descriptors) { in Serialize()
181 Descriptor{.handle = attr.handle, .uuid = attr.type}); in Deserialize()
Dbta_gattc_cache.cc55 using gatt::Descriptor;
64 const Descriptor* bta_gattc_get_descriptor_srcb(tBTA_GATTC_SERV* p_srcb,
477 const Descriptor* bta_gattc_get_descriptor_srcb(tBTA_GATTC_SERV* p_srcb, in bta_gattc_get_descriptor_srcb()
487 for (const Descriptor& desc : charac.descriptors) { in bta_gattc_get_descriptor_srcb()
495 const Descriptor* bta_gattc_get_descriptor(uint16_t conn_id, uint16_t handle) { in bta_gattc_get_descriptor()
512 for (const Descriptor& desc : charac.descriptors) { in bta_gattc_get_owning_characteristic_srcb()
639 for (const Descriptor& desc : charac.descriptors) { in bta_gattc_get_gatt_db_impl()
Ddatabase_builder.cc127 gatt::Descriptor{.handle = handle, .uuid = uuid}); in AddDescriptor()
Dbta_gattc_int.h438 extern const gatt::Descriptor* bta_gattc_get_descriptor(uint16_t conn_id,
Dbta_gattc_api.cc307 const gatt::Descriptor* BTA_GATTC_GetDescriptor(uint16_t conn_id, in BTA_GATTC_GetDescriptor()
/system/libfmq/include/fmq/
DMessageQueue.h27 typedef MQDescriptor<T, flavor> Descriptor; typedef
28 MessageQueue(const Descriptor& Desc, bool resetPointers = true)
DMessageQueueBase.h39 typedef MQDescriptorType<T, flavor> Descriptor; typedef
46 MessageQueueBase(const Descriptor& Desc, bool resetPointers = true);
221 const Descriptor* getDesc() const { return mDesc.get(); } in getDesc()
434 std::unique_ptr<Descriptor> mDesc;
575 (mDesc->countGrantors() < Descriptor::kMinGrantorCount) || in initMemory()
582 reinterpret_cast<std::atomic<uint64_t>*>(mapGrantorDescr(Descriptor::READPTRPOS)); in initMemory()
593 mWritePtr = reinterpret_cast<std::atomic<uint64_t>*>(mapGrantorDescr(Descriptor::WRITEPTRPOS)); in initMemory()
604 mRing = reinterpret_cast<uint8_t*>(mapGrantorDescr(Descriptor::DATAPTRPOS)); in initMemory()
607 mEvFlagWord = static_cast<std::atomic<uint32_t>*>(mapGrantorDescr(Descriptor::EVFLAGWORDPOS)); in initMemory()
615 MessageQueueBase<MQDescriptorType, T, flavor>::MessageQueueBase(const Descriptor& Desc, in MessageQueueBase()
[all …]
/system/core/fs_mgr/libsnapshot/
Dfuzz_utils.cpp26 const google::protobuf::Descriptor* action_desc) { in GetProtoValueDescriptor()
Dfuzz_utils.h40 const google::protobuf::Descriptor* action_desc);
/system/extras/simpleperf/scripts/
Dprofile_pb2.py29 _PROFILE = _descriptor.Descriptor(
151 _VALUETYPE = _descriptor.Descriptor(
189 _SAMPLE = _descriptor.Descriptor(
234 _LABEL = _descriptor.Descriptor(
279 _MAPPING = _descriptor.Descriptor(
373 _LOCATION = _descriptor.Descriptor(
425 _LINE = _descriptor.Descriptor(
463 _FUNCTION = _descriptor.Descriptor(
/system/update_engine/scripts/update_payload/
Dupdate_metadata_pb2.py87 _EXTENT = _descriptor.Descriptor(
125 _SIGNATURES_SIGNATURE = _descriptor.Descriptor(
169 _SIGNATURES = _descriptor.Descriptor(
200 _PARTITIONINFO = _descriptor.Descriptor(
238 _IMAGEINFO = _descriptor.Descriptor(
304 _INSTALLOPERATION = _descriptor.Descriptor(
392 _PARTITIONUPDATE = _descriptor.Descriptor(
528 _DYNAMICPARTITIONGROUP = _descriptor.Descriptor(
573 _DYNAMICPARTITIONMETADATA = _descriptor.Descriptor(
611 _DELTAARCHIVEMANIFEST = _descriptor.Descriptor(
/system/bt/bta/hh/
Dbta_hh_le.cc459 static const gatt::Descriptor* find_descriptor_by_short_uuid( in find_descriptor_by_short_uuid()
469 for (const gatt::Descriptor& desc : p_char->descriptors) { in find_descriptor_by_short_uuid()
488 const gatt::Descriptor* p_desc = in bta_hh_le_read_char_descriptor()
673 const gatt::Descriptor* p_desc = find_descriptor_by_short_uuid( in bta_hh_le_write_ccc()
1310 const gatt::Descriptor* p_desc = BTA_GATTC_GetDescriptor(conn_id, handle); in read_report_ref_desc_cb()
/system/libhidl/transport/base/1.0/vts/functional/
Dvts_ibase_test.cpp194 TEST_F(VtsHalBaseV1_0TargetTest, Descriptor) { in TEST_F() argument
/system/bt/bta/include/
Dbta_gatt_api.h525 extern const gatt::Descriptor* BTA_GATTC_GetDescriptor(uint16_t conn_id,
/system/bt/audio_hal_interface/
Dclient_interface.cc377 const DataMQ::Descriptor& dataMQ) { in StartSession()

12