Home
last modified time | relevance | path

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

/hal_espressif-latest/components/esp_hw_support/
Dmodem_clock.c51 int16_t refs; member
138 …[MODEM_CLOCK_MODEM_ADC_COMMON_FE] = { .refs = 0, .configure = modem_clock_modem_adc_common_fe_co… in MODEM_CLOCK_instance()
139 …[MODEM_CLOCK_MODEM_PRIVATE_FE] = { .refs = 0, .configure = modem_clock_modem_private_fe_confi… in MODEM_CLOCK_instance()
140 … [MODEM_CLOCK_COEXIST] = { .refs = 0, .configure = modem_clock_coex_configure }, in MODEM_CLOCK_instance()
141 …[MODEM_CLOCK_I2C_MASTER] = { .refs = 0, .configure = modem_clock_i2c_master_configure }, in MODEM_CLOCK_instance()
143 … [MODEM_CLOCK_WIFI_MAC] = { .refs = 0, .configure = modem_clock_wifi_mac_configure }, in MODEM_CLOCK_instance()
144 … [MODEM_CLOCK_WIFI_BB] = { .refs = 0, .configure = modem_clock_wifi_bb_configure }, in MODEM_CLOCK_instance()
146 … [MODEM_CLOCK_ETM] = { .refs = 0, .configure = modem_clock_etm_configure }, in MODEM_CLOCK_instance()
148 … [MODEM_CLOCK_BLE_MAC] = { .refs = 0, .configure = modem_clock_ble_mac_configure }, in MODEM_CLOCK_instance()
149 … [MODEM_CLOCK_BLE_BB] = { .refs = 0, .configure = modem_clock_ble_bb_configure }, in MODEM_CLOCK_instance()
[all …]
Dsleep_modes.c194 int16_t refs; member
238 .refs = 0
1968 int refs = (option == ESP_PD_OPTION_ON) ? s_config.domain[domain].refs++ \ local
1969 : (option == ESP_PD_OPTION_OFF) ? --s_config.domain[domain].refs \
1970 : s_config.domain[domain].refs;
1971 if (refs == 0) {
1975 assert(refs >= 0);
/hal_espressif-latest/tools/ci/
Dcheck_callgraph.py29 self.refs: List[str] = list()
187 if call_matching_pairs and last_function and last_function.refs:
189 ignored_symbols = [ref for ref in last_function.refs if pair.symbol in ref]
192 … last_function.refs = [ref for ref in last_function.refs if last_ref != ref]
202 if target not in last_function.refs:
203 last_function.refs.append(target)
280 refs: List[Reference] = []
301 for target_rtl_func_name in source_rtl_func.calls + source_rtl_func.refs:
316 refs.append(Reference(sym_from, sym_to))
320 return symbols, refs
[all …]