Home
last modified time | relevance | path

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

/hal_espressif-3.7.0/components/esp_system/task_wdt/
Dtask_wdt_impl_esp_timer.c39 twdt_ctx_t *obj) in esp_task_wdt_impl_timer_allocate() argument
59 *obj = (twdt_ctx_t) ctx; in esp_task_wdt_impl_timer_allocate()
65 esp_err_t esp_task_wdt_impl_timer_reconfigure(twdt_ctx_t obj, const esp_task_wdt_config_t *config) in esp_task_wdt_impl_timer_reconfigure() argument
68 twdt_ctx_soft_t* ctx = (twdt_ctx_soft_t*) obj; in esp_task_wdt_impl_timer_reconfigure()
85 void esp_task_wdt_impl_timer_free(twdt_ctx_t obj) in esp_task_wdt_impl_timer_free() argument
87 const twdt_ctx_soft_t* ctx = (twdt_ctx_soft_t*) obj; in esp_task_wdt_impl_timer_free()
95 esp_err_t esp_task_wdt_impl_timer_feed(twdt_ctx_t obj) in esp_task_wdt_impl_timer_feed() argument
98 const twdt_ctx_soft_t* ctx = (twdt_ctx_soft_t*) obj; in esp_task_wdt_impl_timer_feed()
113 void esp_task_wdt_impl_timeout_triggered(twdt_ctx_t obj) in esp_task_wdt_impl_timeout_triggered() argument
115 (void) obj; in esp_task_wdt_impl_timeout_triggered()
[all …]
Dtask_wdt_impl_timergroup.c44 twdt_ctx_t *obj) in esp_task_wdt_impl_timer_allocate() argument
49 if (config == NULL || obj == NULL) { in esp_task_wdt_impl_timer_allocate()
70 *obj = (twdt_ctx_t) ctx; in esp_task_wdt_impl_timer_allocate()
77 esp_err_t esp_task_wdt_impl_timer_reconfigure(twdt_ctx_t obj, const esp_task_wdt_config_t *config) in esp_task_wdt_impl_timer_reconfigure() argument
81 twdt_ctx_hard_t* ctx = (twdt_ctx_hard_t*) obj; in esp_task_wdt_impl_timer_reconfigure()
99 void esp_task_wdt_impl_timer_free(twdt_ctx_t obj) in esp_task_wdt_impl_timer_free() argument
101 twdt_ctx_hard_t* ctx = (twdt_ctx_hard_t*) obj; in esp_task_wdt_impl_timer_free()
117 esp_err_t esp_task_wdt_impl_timer_feed(twdt_ctx_t obj) in esp_task_wdt_impl_timer_feed() argument
120 twdt_ctx_hard_t* ctx = (twdt_ctx_hard_t*) obj; in esp_task_wdt_impl_timer_feed()
136 void esp_task_wdt_impl_timeout_triggered(twdt_ctx_t obj) in esp_task_wdt_impl_timeout_triggered() argument
[all …]
Dtask_wdt.c595 twdt_obj_t *obj = NULL; in esp_task_wdt_init() local
598 obj = calloc(1, sizeof(twdt_obj_t)); in esp_task_wdt_init()
599 ESP_GOTO_ON_FALSE((obj != NULL), ESP_ERR_NO_MEM, err, TAG, "insufficient memory"); in esp_task_wdt_init()
600 SLIST_INIT(&obj->entries_slist); in esp_task_wdt_init()
601 obj->panic = config->trigger_panic; in esp_task_wdt_init()
604 ret = esp_task_wdt_impl_timer_allocate(config, task_wdt_isr, &obj->impl_ctx); in esp_task_wdt_init()
610 p_twdt_obj = obj; in esp_task_wdt_init()
629 free(obj); in esp_task_wdt_init()
/hal_espressif-3.7.0/components/esp_system/include/esp_private/
Desp_task_wdt_impl.h30 twdt_ctx_t *obj);
45 esp_err_t esp_task_wdt_impl_timer_reconfigure(twdt_ctx_t obj, const esp_task_wdt_config_t *config);
53 void esp_task_wdt_impl_timer_free(twdt_ctx_t obj);
66 esp_err_t esp_task_wdt_impl_timer_feed(twdt_ctx_t obj);
74 void esp_task_wdt_impl_timeout_triggered(twdt_ctx_t obj);
83 esp_err_t esp_task_wdt_impl_timer_stop(twdt_ctx_t obj);
96 esp_err_t esp_task_wdt_impl_timer_restart(twdt_ctx_t obj);
/hal_espressif-3.7.0/components/esp_netif/lwip/
Desp_netif_lwip_ppp.c71 struct lwip_peer2peer_ctx *obj = (struct lwip_peer2peer_ctx*)netif->related_data; in on_ppp_status_changed() local
72 assert(obj->base.netif_type == PPP_LWIP_NETIF); in on_ppp_status_changed()
123 if (obj->ppp_error_event_enabled) { in on_ppp_status_changed()
172 lwip_peer2peer_ctx_t *obj = (lwip_peer2peer_ctx_t *)netif->related_data; in on_ppp_notify_phase() local
173 assert(obj->base.netif_type == PPP_LWIP_NETIF); in on_ppp_notify_phase()
174 if (obj && obj->ppp_phase_event_enabled) { in on_ppp_notify_phase()
274 struct lwip_peer2peer_ctx * obj = ppp_ctx; in esp_netif_lwip_ppp_input() local
275 err_t ret = pppos_input_tcpip(obj->ppp, buffer, len); in esp_netif_lwip_ppp_input()
311 struct lwip_peer2peer_ctx *obj = (struct lwip_peer2peer_ctx *)netif->related_data; in esp_netif_ppp_set_params() local
312 obj->ppp_phase_event_enabled = config->ppp_phase_event_enabled; in esp_netif_ppp_set_params()
[all …]
/hal_espressif-3.7.0/tools/idf_monitor/idf_monitor_base/
Dweb_socket_client.py103 obj = json.loads(r)
104 if all([k in obj and obj[k] == v for k, v in expect_iterable]):
105 yellow_print('WebSocket received: {}'.format(obj))
107 red_print('WebSocket expected: {}, received: {}'.format(dict(expect_iterable), obj))
/hal_espressif-3.7.0/tools/esptool_py/flasher_stub/
Dwrap_stub.py67 def default(self, obj): argument
68 if isinstance(obj, bytes):
69 return base64.b64encode(obj).decode("ascii")
70 return json.JSONEncoder.default(self, obj)
/hal_espressif-3.7.0/components/driver/deprecated/
Di2s_legacy.c1500 i2s_obj_t *obj = p_i2s[i2s_num]; in i2s_driver_uninstall() local
1504 if ((int)(obj->mode) == I2S_COMM_MODE_ADC_DAC) { in i2s_driver_uninstall()
1505 if (obj->dir & I2S_DIR_TX) { in i2s_driver_uninstall()
1509 if (obj->dir & I2S_DIR_RX) { in i2s_driver_uninstall()
1517 if (obj->tx_dma_chan) { in i2s_driver_uninstall()
1518 gdma_disconnect(obj->tx_dma_chan); in i2s_driver_uninstall()
1519 gdma_del_channel(obj->tx_dma_chan); in i2s_driver_uninstall()
1521 if (obj->rx_dma_chan) { in i2s_driver_uninstall()
1522 gdma_disconnect(obj->rx_dma_chan); in i2s_driver_uninstall()
1523 gdma_del_channel(obj->rx_dma_chan); in i2s_driver_uninstall()
[all …]
Drmt_legacy.c1223 rmt_obj_t *obj = __containerof(item_num, rmt_obj_t, tx_len_rem); in rmt_translator_get_context() local
1224 *context = obj->tx_context; in rmt_translator_get_context()
/hal_espressif-3.7.0/components/esp_phy/
DCMakeLists.txt99 -o phy_init_data.obj
101 COMMAND ${CMAKE_OBJCOPY} -O binary phy_init_data.obj ${phy_init_data_bin}
/hal_espressif-3.7.0/tools/esptool_py/espsecure/
D__init__.py1805 obj = getattr(args, arg_name)
1806 if isinstance(obj, (OutFileType, IOBase)):
1807 obj.close()
1808 elif isinstance(obj, list):
1809 for f in [o for o in obj if isinstance(o, IOBase)]:
/hal_espressif-3.7.0/tools/esptool_py/flasher_stub/include/
Dminiz.h539 #define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj)) argument
/hal_espressif-3.7.0/tools/esptool_py/esptool/
Dloader.py131 obj = args[0]
132 if check_func(obj):
135 raise NotImplementedInROMError(obj, func)