Home
last modified time | relevance | path

Searched refs:common (Results 1 – 25 of 725) sorted by relevance

12345678910>>...29

/system/bt/audio_hearing_aid_hw/src/
Daudio_hearing_aid_hw.cc140 struct ha_stream_common common; member
147 struct ha_stream_common common; member
176 static void ha_open_ctrl_path(struct ha_stream_common* common);
356 static int ha_ctrl_receive(struct ha_stream_common* common, void* buffer, in ha_ctrl_receive() argument
362 OSI_NO_INTR(ret = recv(common->ctrl_fd, buffer, length, MSG_NOSIGNAL)); in ha_ctrl_receive()
381 skt_disconnect(common->ctrl_fd); in ha_ctrl_receive()
382 common->ctrl_fd = AUDIO_SKT_DISCONNECTED; in ha_ctrl_receive()
390 static int ha_ctrl_send(struct ha_stream_common* common, const void* buffer, in ha_ctrl_send() argument
399 OSI_NO_INTR(sent = send(common->ctrl_fd, buffer, remaining, MSG_NOSIGNAL)); in ha_ctrl_send()
422 skt_disconnect(common->ctrl_fd); in ha_ctrl_send()
[all …]
/system/bt/audio_a2dp_hw/src/
Daudio_a2dp_hw.cc131 struct a2dp_stream_common common; member
138 struct a2dp_stream_common common; member
170 static void a2dp_open_ctrl_path(struct a2dp_stream_common* common);
350 static int a2dp_ctrl_receive(struct a2dp_stream_common* common, void* buffer, in a2dp_ctrl_receive() argument
356 OSI_NO_INTR(ret = recv(common->ctrl_fd, buffer, length, MSG_NOSIGNAL)); in a2dp_ctrl_receive()
375 skt_disconnect(common->ctrl_fd); in a2dp_ctrl_receive()
376 common->ctrl_fd = AUDIO_SKT_DISCONNECTED; in a2dp_ctrl_receive()
384 static int a2dp_ctrl_send(struct a2dp_stream_common* common, const void* buffer, in a2dp_ctrl_send() argument
393 OSI_NO_INTR(sent = send(common->ctrl_fd, buffer, remaining, MSG_NOSIGNAL)); in a2dp_ctrl_send()
416 skt_disconnect(common->ctrl_fd); in a2dp_ctrl_send()
[all …]
/system/bt/embdrv/sbc/decoder/srce/
Dbitalloc-sbc.c34 static void dualBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT* common) { in dualBitAllocation() argument
42 bitcountL = computeBitneed(common, bitneedsL.uint8, 0, &bitpoolPreferenceL); in dualBitAllocation()
43 bitcountR = computeBitneed(common, bitneedsR.uint8, 1, &bitpoolPreferenceR); in dualBitAllocation()
45 oneChannelBitAllocation(common, &bitneedsL, 0, bitcountL); in dualBitAllocation()
46 oneChannelBitAllocation(common, &bitneedsR, 1, bitcountR); in dualBitAllocation()
49 static void stereoBitAllocation(OI_CODEC_SBC_COMMON_CONTEXT* common) { in stereoBitAllocation() argument
50 const OI_UINT nrof_subbands = common->frameInfo.nrof_subbands; in stereoBitAllocation()
59 bitcount = computeBitneed(common, &bitneeds.uint8[0], 0, &bitpoolPreference); in stereoBitAllocation()
60 bitcount += computeBitneed(common, &bitneeds.uint8[nrof_subbands], 1, in stereoBitAllocation()
65 bitadjust = adjustToFitBitpool(common->frameInfo.bitpool, bitneeds.uint32, in stereoBitAllocation()
[all …]
Ddecoder-private.c66 status = OI_CODEC_SBC_Alloc(&context->common, decoderData, decoderDataBytes, in internal_DecoderReset()
73 context->common.codecInfo = OI_Codec_Copyright; in internal_DecoderReset()
74 context->common.maxBitneed = 0; in internal_DecoderReset()
76 OI_SBC_ExpandFrameFields(&context->common.frameInfo); in internal_DecoderReset()
88 INLINE void OI_SBC_ReadHeader(OI_CODEC_SBC_COMMON_CONTEXT* common, in OI_SBC_ReadHeader() argument
90 OI_CODEC_SBC_FRAME_INFO* frame = &common->frameInfo; in OI_SBC_ReadHeader()
131 PRIVATE void OI_SBC_ReadScalefactors(OI_CODEC_SBC_COMMON_CONTEXT* common, in OI_SBC_ReadScalefactors() argument
133 OI_UINT i = common->frameInfo.nrof_subbands * common->frameInfo.nrof_channels; in OI_SBC_ReadScalefactors()
134 int8_t* scale_factor = common->scale_factor; in OI_SBC_ReadScalefactors()
137 if (common->frameInfo.nrof_subbands == 8 || in OI_SBC_ReadScalefactors()
[all …]
Ddecoder-sbc.c75 context->common.frameInfo.enhanced = in FindSyncword()
93 context->common.frameInfo.enhanced = FALSE; in FindSyncword()
108 OI_UINT frameSamples = context->common.frameInfo.nrof_blocks * in DecodeBody()
109 context->common.frameInfo.nrof_subbands; in DecodeBody()
117 (sizeof(int16_t) * frameSamples * context->common.pcmStride) && in DecodeBody()
124 context->common.frameInfo.nrof_subbands * in DecodeBody()
125 context->common.pcmStride) { in DecodeBody()
133 OI_SBC_ReadScalefactors(&context->common, bodyData, &bs); in DecodeBody()
136 OI_SBC_ComputeBitAllocation(&context->common); in DecodeBody()
139 if (context->common.frameInfo.mode == SBC_JOINT_STEREO) { in DecodeBody()
[all …]
Dsynthesis-sbc.c281 OI_UINT nrof_channels = context->common.frameInfo.nrof_channels; in OI_SBC_SynthFrame_80()
282 OI_UINT pcmStrideShift = context->common.pcmStride == 1 ? 0 : 1; in OI_SBC_SynthFrame_80()
283 OI_UINT offset = context->common.filterBufferOffset; in OI_SBC_SynthFrame_80()
284 int32_t* s = context->common.subdata + 8 * nrof_channels * blkstart; in OI_SBC_SynthFrame_80()
290 context->common.filterBuffer[0] + context->common.filterBufferLen - in OI_SBC_SynthFrame_80()
292 context->common.filterBuffer[0]); in OI_SBC_SynthFrame_80()
295 context->common.filterBuffer[1] + context->common.filterBufferLen - in OI_SBC_SynthFrame_80()
297 context->common.filterBuffer[1]); in OI_SBC_SynthFrame_80()
299 offset = context->common.filterBufferLen - 80; in OI_SBC_SynthFrame_80()
305 DCT2_8(context->common.filterBuffer[ch] + offset, s); in OI_SBC_SynthFrame_80()
[all …]
Dalloc.c29 PRIVATE OI_STATUS OI_CODEC_SBC_Alloc(OI_CODEC_SBC_COMMON_CONTEXT* common, in OI_CODEC_SBC_Alloc() argument
46 common->maxChannels = maxChannels; in OI_CODEC_SBC_Alloc()
47 common->pcmStride = pcmStride; in OI_CODEC_SBC_Alloc()
52 maxChannels * sizeof(common->subdata[0]) * SBC_MAX_BANDS * SBC_MAX_BLOCKS; in OI_CODEC_SBC_Alloc()
59 (sizeof(common->filterBuffer[0][0]) * SBC_MAX_BANDS * maxChannels); in OI_CODEC_SBC_Alloc()
63 common->filterBufferLen = filterBufferCount * SBC_MAX_BANDS; in OI_CODEC_SBC_Alloc()
66 common->subdata = (int32_t*)codecData; in OI_CODEC_SBC_Alloc()
74 common->filterBufferLen * sizeof(common->filterBuffer[0][0]); in OI_CODEC_SBC_Alloc()
75 common->filterBuffer[i] = (SBC_BUFFER_T*)codecData; in OI_CODEC_SBC_Alloc()
Ddecoder-oina.c73 context->common.frameInfo.enhanced = enhanced; in OI_CODEC_SBC_DecoderConfigureRaw()
75 context->common.frameInfo.enhanced = FALSE; in OI_CODEC_SBC_DecoderConfigureRaw()
77 context->common.frameInfo.freqIndex = frequency; in OI_CODEC_SBC_DecoderConfigureRaw()
78 context->common.frameInfo.mode = mode; in OI_CODEC_SBC_DecoderConfigureRaw()
79 context->common.frameInfo.subbands = subbands; in OI_CODEC_SBC_DecoderConfigureRaw()
80 context->common.frameInfo.blocks = blocks; in OI_CODEC_SBC_DecoderConfigureRaw()
81 context->common.frameInfo.alloc = alloc; in OI_CODEC_SBC_DecoderConfigureRaw()
82 context->common.frameInfo.bitpool = maxBitpool; in OI_CODEC_SBC_DecoderConfigureRaw()
84 OI_SBC_ExpandFrameFields(&context->common.frameInfo); in OI_CODEC_SBC_DecoderConfigureRaw()
86 if (context->common.frameInfo.nrof_channels >= context->common.pcmStride) { in OI_CODEC_SBC_DecoderConfigureRaw()
/system/bt/gd/os/
Dhandler.h36 class Handler : public common::IPostableContext {
47 virtual void Post(common::OnceClosure closure) override;
57 Post(common::BindOnce(std::forward<Functor>(functor), std::forward<Args>(args)...)); in Call()
62 …Post(common::BindOnce(std::forward<Functor>(functor), common::Unretained(obj), std::forward<Args>(… in CallOn()
66 common::ContextualOnceCallback<common::MakeUnboundRunType<Functor, Args...>> BindOnce( in BindOnce()
68 return common::ContextualOnceCallback<common::MakeUnboundRunType<Functor, Args...>>( in BindOnce()
69 common::BindOnce(std::forward<Functor>(functor), std::forward<Args>(args)...), this); in BindOnce()
73 common::ContextualOnceCallback<common::MakeUnboundRunType<Functor, T, Args...>> BindOnceOn( in BindOnceOn()
75 return common::ContextualOnceCallback<common::MakeUnboundRunType<Functor, T, Args...>>( in BindOnceOn()
76common::BindOnce(std::forward<Functor>(functor), common::Unretained(obj), std::forward<Args>(args)… in BindOnceOn()
[all …]
/system/bt/gd/security/
Dsecurity_manager.cc30common::BindOnce(&internal::SecurityManagerImpl::Init, common::Unretained(security_manager_impl_))… in Init()
34 security_handler_->Post(common::BindOnce(&internal::SecurityManagerImpl::CreateBond, in CreateBond()
35 common::Unretained(security_manager_impl_), in CreateBond()
41 security_handler_->Post(common::BindOnce( in CreateBondOutOfBand()
43 common::Unretained(security_manager_impl_), in CreateBondOutOfBand()
50 security_handler_->Post(common::BindOnce( in GetOutOfBandData()
52 common::Unretained(security_manager_impl_), in GetOutOfBandData()
57 security_handler_->Post(common::BindOnce(&internal::SecurityManagerImpl::CreateBondLe, in CreateBondLe()
58 common::Unretained(security_manager_impl_), in CreateBondLe()
63 security_handler_->Post(common::BindOnce(&internal::SecurityManagerImpl::CancelBond, in CancelBond()
[all …]
/system/bt/gd/hci/fuzz/
Dfuzz_hci_layer.h36common::ContextualOnceCallback<void(hci::CommandCompleteView)> on_complete) override {} in EnqueueCommand()
39common::ContextualOnceCallback<void(hci::CommandStatusView)> on_status) override {} in EnqueueCommand()
54 common::ContextualOnceCallback<void(hci::CommandCompleteView)> on_complete) override { in EnqueueCommand()
63 common::ContextualOnceCallback<void(hci::CommandStatusView)> on_status) override { in EnqueueCommand()
70 common::BidiQueueEnd<hci::AclBuilder, hci::AclView>* GetAclQueueEnd() override { in GetAclQueueEnd()
74 common::BidiQueueEnd<hci::IsoBuilder, hci::IsoView>* GetIsoQueueEnd() override { in GetIsoQueueEnd()
78 …void RegisterEventHandler(hci::EventCode event, common::ContextualCallback<void(hci::EventView)> h… in RegisterEventHandler()
90common::ContextualCallback<void(hci::LeMetaEventView)> handler) override { in RegisterLeEventHandler()
101 …hci::SecurityInterface* GetSecurityInterface(common::ContextualCallback<void(hci::EventView)> even…
104 common::ContextualCallback<void(hci::LeMetaEventView)> event_handler) override;
[all …]
/system/bt/gd/dumpsys/
Dinit_flags.cc21 flatbuffers::Offset<bluetooth::common::InitFlagsData> bluetooth::dumpsys::InitFlags::Dump( in Dump()
24 common::InitFlagsDataBuilder builder(*fb_builder); in Dump()
26 builder.add_gd_advertising_enabled(bluetooth::common::init_flags::gd_advertising_is_enabled()); in Dump()
27 builder.add_gd_scanning_enabled(bluetooth::common::init_flags::gd_scanning_is_enabled()); in Dump()
28 builder.add_gd_security_enabled(bluetooth::common::init_flags::gd_security_is_enabled()); in Dump()
29 builder.add_gd_acl_enabled(bluetooth::common::init_flags::gd_acl_is_enabled()); in Dump()
30 builder.add_gd_hci_enabled(bluetooth::common::init_flags::gd_hci_is_enabled()); in Dump()
31 builder.add_gd_controller_enabled(bluetooth::common::init_flags::gd_controller_is_enabled()); in Dump()
32 builder.add_gd_core_enabled(bluetooth::common::init_flags::gd_core_is_enabled()); in Dump()
33 builder.add_btaa_hci_log_enabled(bluetooth::common::init_flags::btaa_hci_is_enabled()); in Dump()
/system/bt/gd/hci/
Dhci_layer.h51 common::ContextualOnceCallback<void(CommandCompleteView)> on_complete) override;
55 common::ContextualOnceCallback<void(CommandStatusView)> on_status) override;
57 virtual common::BidiQueueEnd<AclBuilder, AclView>* GetAclQueueEnd();
59 virtual common::BidiQueueEnd<IsoBuilder, IsoView>* GetIsoQueueEnd();
61 …virtual void RegisterEventHandler(EventCode event_code, common::ContextualCallback<void(EventView)…
66common::ContextualCallback<void(LeMetaEventView)> event_handler);
70 …virtual SecurityInterface* GetSecurityInterface(common::ContextualCallback<void(EventView)> event_…
72 …virtual LeSecurityInterface* GetLeSecurityInterface(common::ContextualCallback<void(LeMetaEventVie…
75 common::ContextualCallback<void(EventView)> event_handler,
76 common::ContextualCallback<void(uint16_t, hci::ErrorCode)> on_disconnect,
[all …]
/system/bt/common/
Dtime_util_unittest.cc31 uint64_t t1 = bluetooth::common::time_get_os_boottime_ms(); in TEST()
40 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST()
49 uint64_t t1 = bluetooth::common::time_get_os_boottime_ms(); in TEST()
50 uint64_t t2 = bluetooth::common::time_get_os_boottime_ms(); in TEST()
59 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST()
60 uint64_t t2 = bluetooth::common::time_get_os_boottime_us(); in TEST()
76 uint64_t t1 = bluetooth::common::time_get_os_boottime_ms(); in TEST()
78 uint64_t t2 = bluetooth::common::time_get_os_boottime_ms(); in TEST()
97 uint64_t t1 = bluetooth::common::time_get_os_boottime_us(); in TEST()
99 uint64_t t2 = bluetooth::common::time_get_os_boottime_us(); in TEST()
[all …]
/system/bt/main/shim/
Dstack.cc76 if (common::init_flags::gd_rust_is_enabled()) { in StartEverything()
82 if (common::init_flags::gd_hci_is_enabled()) { in StartEverything()
85 if (common::init_flags::gd_controller_is_enabled()) { in StartEverything()
97 if (common::init_flags::gd_hci_is_enabled()) { in StartEverything()
104 if (common::init_flags::gd_controller_is_enabled()) { in StartEverything()
107 if (common::init_flags::gd_acl_is_enabled()) { in StartEverything()
110 if (common::init_flags::gd_l2cap_is_enabled()) { in StartEverything()
115 if (common::init_flags::gd_security_is_enabled()) { in StartEverything()
118 if (common::init_flags::gd_advertising_is_enabled()) { in StartEverything()
121 if (common::init_flags::gd_scanning_is_enabled()) { in StartEverything()
[all …]
Dshim.cc58 return bluetooth::common::init_flags::gd_advertising_is_enabled(); in is_gd_advertising_enabled()
62 return bluetooth::common::init_flags::gd_scanning_is_enabled(); in is_gd_scanning_enabled()
66 return bluetooth::common::init_flags::gd_security_is_enabled(); in is_gd_security_enabled()
70 return bluetooth::common::init_flags::gd_acl_is_enabled(); in is_gd_acl_enabled()
74 return bluetooth::common::init_flags::gd_link_policy_is_enabled(); in is_gd_link_policy_enabled()
78 return bluetooth::common::init_flags::gd_hci_is_enabled(); in is_gd_hci_enabled()
82 return bluetooth::common::init_flags::gd_controller_is_enabled(); in is_gd_controller_enabled()
86 return bluetooth::common::init_flags::gd_l2cap_is_enabled(); in is_gd_l2cap_enabled()
90 return bluetooth::common::init_flags::gd_core_is_enabled(); in is_gd_shim_enabled()
94 return bluetooth::common::init_flags::gd_hci_is_enabled(); in is_any_gd_enabled()
[all …]
/system/update_engine/
DBUILD.gn20 import("//common-mk/generate-dbus-adaptors.gni")
21 import("//common-mk/generate-dbus-proxies.gni")
22 import("//common-mk/openssl_pem.gni")
23 import("//common-mk/pkg_config.gni")
24 import("//common-mk/proto_library.gni")
120 # The payload application component and common dependencies.
123 "common/action_processor.cc",
124 "common/boot_control_stub.cc",
125 "common/clock.cc",
126 "common/constants.cc",
[all …]
/system/bt/service/
DBUILD.gn23 "//bt/service/common",
81 "common/bluetooth/a2dp_codec_config.cc",
82 "common/bluetooth/adapter_state.cc",
83 "common/bluetooth/advertise_data.cc",
84 "common/bluetooth/advertise_settings.cc",
85 "common/bluetooth/avrcp_int_value.cc",
86 "common/bluetooth/avrcp_media_attr.cc",
87 "common/bluetooth/avrcp_register_notification_response.cc",
88 "common/bluetooth/characteristic.cc",
89 "common/bluetooth/descriptor.cc",
[all …]
/system/bt/gd/os/linux_generic/
Dreactor_unittest.cc36 using common::Bind;
106 Bind(&FakeReactable::OnReadReady, common::Unretained(this)), in OnReadReady()
107 Bind(&FakeReactable::OnWriteReadyNoOp, common::Unretained(this))); in OnReadReady()
192 …fake_reactable.fd_, Bind(&FakeReactable::OnReadReady, common::Unretained(&fake_reactable)), common in TEST_F()
200 …fake_reactable.fd_, Bind(&FakeReactable::OnReadReady, common::Unretained(&fake_reactable)), common in TEST_F()
218 …fake_reactable.fd_, Bind(&FakeReactable::OnReadReady, common::Unretained(&fake_reactable)), common in TEST_F()
232 Bind(&FakeRunningReactable::OnReadReady, common::Unretained(&fake_reactable)), in TEST_F()
233 common::Closure()); in TEST_F()
250 common::Bind(&FakeRunningReactable::OnReadReady, common::Unretained(&fake_reactable)), in TEST_F()
251 common::Closure()); in TEST_F()
[all …]
/system/bt/gd/common/
Dcircular_buffer.h26 namespace common {
85 bluetooth::common::CircularBuffer<T>::CircularBuffer(size_t size) : size_(size) {} in CircularBuffer()
88 void bluetooth::common::CircularBuffer<T>::Push(const T item) { in Push()
97 std::vector<T> bluetooth::common::CircularBuffer<T>::Pull() const { in Pull()
103 std::vector<T> bluetooth::common::CircularBuffer<T>::Drain() { in Drain()
111 bluetooth::common::TimestampedCircularBuffer<T>::TimestampedCircularBuffer( in TimestampedCircularBuffer()
116 void bluetooth::common::TimestampedCircularBuffer<T>::Push(const T item) { in Push()
118 bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Push(timestamped_entry); in Push()
122 std::vector<struct bluetooth::common::TimestampedEntry<T>> bluetooth::common::TimestampedCircularBu… in Pull()
124 return bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Pull(); in Pull()
[all …]
Dcontextual_callback.h23 namespace common {
38 ContextualOnceCallback(common::OnceCallback<R(Args...)>&& callback, IPostableContext* context) in ContextualOnceCallback()
49 context_->Post(common::BindOnce(std::move(callback_), std::forward<Args>(args)...)); in Invoke()
54 context_->Post(common::BindOnce(std::move(callback_), std::forward<Args>(args)...)); in InvokeIfNotEmpty()
63 common::OnceCallback<R(Args...)> callback_;
74 ContextualCallback(common::Callback<R(Args...)>&& callback, IPostableContext* context) in ContextualCallback()
85 context_->Post(common::BindOnce(callback_, std::forward<Args>(args)...)); in Invoke()
90 context_->Post(common::BindOnce(callback_, std::forward<Args>(args)...)); in InvokeIfNotEmpty()
99 common::Callback<R(Args...)> callback_;
Dbidi_queue_unittest.cc30 namespace common { namespace
72 common::Unretained(this), in Send()
73 common::Unretained(value), in Send()
74 common::Unretained(promise))); in Send()
81 …BindOnce(&TestBidiQueueEnd<TA, TB>::handle_receive, common::Unretained(this), common::Unretained(p… in Receive()
91 common::Unretained(this), in handle_send()
92 common::Unretained(value), in handle_send()
93 common::Unretained(promise))); in handle_send()
106 …&TestBidiQueueEnd<TA, TB>::handle_register_dequeue, common::Unretained(this), common::Unretained(p… in handle_receive()
/system/bt/btif/src/
Dbtif_metrics_logging.cc34 bluetooth::common::LogA2dpAudioUnderrunEvent( in log_a2dp_audio_underrun_event()
49 bluetooth::common::LogA2dpAudioOverrunEvent( in log_a2dp_audio_overrun_event()
61 bluetooth::common::LogA2dpPlaybackEvent(address, playback_state, in log_a2dp_playback_event()
71 bluetooth::common::LogReadRssiResult(address, handle, cmd_status, rssi); in log_read_rssi_result()
83 bluetooth::common::LogReadFailedContactCounterResult( in log_read_failed_contact_counter_result()
95 bluetooth::common::LogReadTxPowerLevelResult(address, handle, cmd_status, in log_read_tx_power_level_result()
110 bluetooth::common::LogSocketConnectionState( in log_socket_connection_state()
125 return bluetooth::common::MetricIdAllocator::GetInstance().Init( in init_metric_id_allocator()
134 return bluetooth::common::MetricIdAllocator::GetInstance().Close(); in close_metric_id_allocator()
141 return bluetooth::common::MetricIdAllocator::GetInstance().AllocateId( in allocate_metric_id_from_metric_id_allocator()
[all …]
/system/bt/gd/common/testing/
Dwired_pair_of_bidi_queues.h30 namespace common {
52 common::BidiQueue<B, A> queue_a_{10};
53 common::BidiQueue<B, A> queue_b_{10};
60 … handler_, common::Bind(&WiredPairOfBiDiQueues::dequeue_callback_a, common::Unretained(this))); in WiredPairOfBiDiQueues()
62 … handler_, common::Bind(&WiredPairOfBiDiQueues::dequeue_callback_b, common::Unretained(this))); in WiredPairOfBiDiQueues()
71 common::BidiQueueEnd<A, B>* GetQueueAUpEnd() { in GetQueueAUpEnd()
76 common::BidiQueueEnd<A, B>* GetQueueBUpEnd() { in GetQueueBUpEnd()
/system/bt/gd/os/android/
Dmetrics.cc32 using bluetooth::common::MetricIdManager;
70 common::ToHexString(cmd_status).c_str(), in LogMetricLinkLayerConnectionEvent()
71 common::ToHexString(reason_code).c_str(), in LogMetricLinkLayerConnectionEvent()
72 common::ToHexString(hci_cmd).c_str(), in LogMetricLinkLayerConnectionEvent()
73 common::ToHexString(hci_event).c_str(), in LogMetricLinkLayerConnectionEvent()
74 common::ToHexString(hci_ble_event).c_str(), in LogMetricLinkLayerConnectionEvent()
77 common::ToHexString(link_type).c_str(), in LogMetricLinkLayerConnectionEvent()
85 LOG_WARN("Failed for opcode %s, error %d", common::ToHexString(hci_cmd).c_str(), ret); in LogMetricHciTimeoutEvent()
97 common::ToHexString(status).c_str(), in LogMetricRemoteVersionInfo()
98 common::ToHexString(version).c_str(), in LogMetricRemoteVersionInfo()
[all …]

12345678910>>...29