Home
last modified time | relevance | path

Searched refs:ops (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-3.7.0/components/bt/host/bluedroid/bta/sdp/
Dbta_sdp_act.c257 record->ops.hdr.type = SDP_TYPE_OPP_SERVER; in bta_create_ops_sdp_record()
258 record->ops.hdr.service_name_length = 0; in bta_create_ops_sdp_record()
259 record->ops.hdr.service_name = NULL; in bta_create_ops_sdp_record()
260 record->ops.hdr.rfcomm_channel_number = 0; in bta_create_ops_sdp_record()
261 record->ops.hdr.l2cap_psm = -1; in bta_create_ops_sdp_record()
262 record->ops.hdr.profile_version = 0; in bta_create_ops_sdp_record()
263 record->ops.supported_formats_list_len = 0; in bta_create_ops_sdp_record()
266 record->ops.hdr.service_name_length = SDP_DISC_ATTR_LEN(p_attr->attr_len_type); in bta_create_ops_sdp_record()
267 record->ops.hdr.service_name = (char *)p_attr->attr_value.v.array; in bta_create_ops_sdp_record()
271 record->ops.hdr.profile_version = pversion; in bta_create_ops_sdp_record()
[all …]
/hal_espressif-3.7.0/components/esp_rom/patches/
Desp_rom_systimer.c27 void systimer_hal_set_tick_rate_ops(systimer_hal_context_t *hal, systimer_hal_tick_rate_ops_t *ops) in systimer_hal_set_tick_rate_ops() argument
29 hal->ticks_to_us = ops->ticks_to_us; in systimer_hal_set_tick_rate_ops()
30 hal->us_to_ticks = ops->us_to_ticks; in systimer_hal_set_tick_rate_ops()
/hal_espressif-3.7.0/components/hal/
Dsystimer_hal.c45 void systimer_hal_set_tick_rate_ops(systimer_hal_context_t *hal, systimer_hal_tick_rate_ops_t *ops) in systimer_hal_set_tick_rate_ops() argument
47 hal->ticks_to_us = ops->ticks_to_us; in systimer_hal_set_tick_rate_ops()
48 hal->us_to_ticks = ops->us_to_ticks; in systimer_hal_set_tick_rate_ops()
/hal_espressif-3.7.0/components/esp_timer/src/
Desp_timer_impl_systimer.c134 systimer_hal_tick_rate_ops_t ops = { in esp_timer_impl_early_init() local
139 systimer_hal_set_tick_rate_ops(&systimer_hal, &ops); in esp_timer_impl_early_init()
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/include/
Dbt_sdp.h108 bluetooth_sdp_ops_record ops; member
/hal_espressif-3.7.0/components/hal/include/hal/
Dsystimer_hal.h60 void systimer_hal_set_tick_rate_ops(systimer_hal_context_t *hal, systimer_hal_tick_rate_ops_t *ops);
/hal_espressif-3.7.0/components/bt/host/bluedroid/api/include/api/
Desp_sdp_api.h132 esp_bluetooth_sdp_ops_record_t ops; /*!< Object Push Profile */ member
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/sdp/
Dbtc_sdp.c804 handle = add_opps_sdp(&record->ops); in btc_handle_create_record_event()