Home
last modified time | relevance | path

Searched defs:RequestInformation (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_gatt_server.cpp43 struct RequestInformation { struct
44 uint8_t type_;
45 bluetooth::GattDevice device_;
46 union {
49 } context_;
51RequestInformation(uint8_t type, const bluetooth::GattDevice &device, GattCharacteristic *characte… in RequestInformation() argument
57 RequestInformation(uint8_t type, const bluetooth::GattDevice &device, GattDescriptor *decriptor) in RequestInformation() argument
63RequestInformation(uint8_t type, const bluetooth::GattDevice &device) : type_(type), device_(devic… in RequestInformation() argument
66 bool operator==(const RequestInformation &rhs) const in operator ==()
71 bool operator<(const RequestInformation &rhs) const in operator <()
H A Dbluetooth_gatt_client.cpp88 struct RequestInformation { struct
89 bool doing_;
90 uint8_t type_ = 0;
91 std::mutex mutex_;
92 RequestInformation() : doing_(false) in RequestInformation() argument