Searched refs:write_req (Results 1 – 8 of 8) sorted by relevance
/packages/modules/Bluetooth/system/stack/test/gatt/ |
D | gatt_sr_test.cc | 217 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.offset, in TEST_F() 219 ASSERT_TRUE(test_state_.application_request_callback.data_.write_req.is_prep); in TEST_F() 220 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.len, 0); in TEST_F() 259 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.offset, in TEST_F() 262 test_state_.application_request_callback.data_.write_req.is_prep); in TEST_F() 263 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.len, in TEST_F() 295 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.offset, in TEST_F() 298 test_state_.application_request_callback.data_.write_req.is_prep); in TEST_F() 299 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.len, in TEST_F() 332 ASSERT_EQ(test_state_.application_request_callback.data_.write_req.offset, in TEST_F() [all …]
|
/packages/modules/Bluetooth/system/bta/ras/ |
D | ras_server.cc | 418 uint16_t write_req_handle = p_data->req_data.p_data->write_req.handle; in OnWriteCharacteristic() 419 uint16_t len = p_data->req_data.p_data->write_req.len; in OnWriteCharacteristic() 420 bool need_rsp = p_data->req_data.p_data->write_req.need_rsp; in OnWriteCharacteristic() 463 HandleControlPoint(tracker, &p_data->req_data.p_data->write_req); in OnWriteCharacteristic() 477 uint16_t len = p_data->req_data.p_data->write_req.len; in WriteVendorSpecificCharacteristic() 489 auto value = p_data->req_data.p_data->write_req.value; in WriteVendorSpecificCharacteristic() 516 uint16_t write_req_handle = p_data->req_data.p_data->write_req.handle; in OnWriteDescriptor() 517 uint16_t len = p_data->req_data.p_data->write_req.len; in OnWriteDescriptor() 535 const uint8_t* value = p_data->req_data.p_data->write_req.value; in OnWriteDescriptor() 546 void HandleControlPoint(ClientTracker* tracker, tGATT_WRITE_REQ* write_req) { in HandleControlPoint() argument [all …]
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | gatt_sr.cc | 997 sr_data.write_req.is_prep = true; in gatts_process_write_req() 998 STREAM_TO_UINT16(sr_data.write_req.offset, p); in gatts_process_write_req() 1010 sr_data.write_req.need_rsp = true; in gatts_process_write_req() 1011 sr_data.write_req.handle = handle; in gatts_process_write_req() 1013 sr_data.write_req.len = len; in gatts_process_write_req() 1015 memcpy(sr_data.write_req.value, p, len); in gatts_process_write_req() 1023 sr_data.write_req.offset, p, len, in gatts_process_write_req()
|
D | gatt_attr.cc | 332 if (!p_data->write_req.need_rsp) rsp_needed = false; in gatt_request_cback() 334 status = proc_write_req(conn_id, type, &p_data->write_req); in gatt_request_cback()
|
/packages/modules/Bluetooth/system/stack/srvc/ |
D | srvc_eng.cc | 260 act = srvc_eng_process_write_req(clcb_idx, &p_data->write_req, &rsp_msg, in srvc_eng_s_request_cback() 262 if (!p_data->write_req.need_rsp) act = SRVC_ACT_IGNORE; in srvc_eng_s_request_cback()
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_gatt_server.cc | 191 const auto& req = p_data->req_data.p_data->write_req; in btapp_gatts_handle_cback() 200 const auto& req = p_data->req_data.p_data->write_req; in btapp_gatts_handle_cback()
|
/packages/modules/Bluetooth/system/stack/gap/ |
D | gap_ble.cc | 221 if (!p_data->write_req.need_rsp) ignore = true; in server_attr_request_cback() 223 status = proc_write_req(type, &p_data->write_req); in server_attr_request_cback()
|
/packages/modules/Bluetooth/system/stack/include/ |
D | gatt_api.h | 534 tGATT_WRITE_REQ write_req; /* write */ member
|