Home
last modified time | relevance | path

Searched refs:node (Results 1 – 25 of 157) sorted by relevance

1234567

/hal_nxp-3.6.0/mcux/mcux-sdk/scripts/kconfig/
Dguiconfig.py283 _id_to_node = {str(id(node)): node for node in _kconf.node_iter()}
579 for node in _kconf.node_iter():
580 item = node.item
581 insert("", "end", iid=id_(node),
684 for node in _shown_full_nodes(menu):
685 _add_to_tree(node, _kconf.top_node)
689 if node.list and not isinstance(node.item, Symbol):
690 if _tree.item(id(node), "open"):
691 _build_full_tree(node)
695 shown = _shown_menu_nodes(node)
[all …]
Dmenuconfig.py1134 for node in choice.selection.nodes:
1135 if node in _shown:
1136 _sel_node_i = _shown.index(node)
1141 def _jump_to(node): argument
1156 jump_into = (isinstance(node.item, Choice) or node.item == MENU) and \
1157 node.list
1162 _cur_menu = node
1163 node = node.list
1165 _cur_menu = _parent_menu(node)
1168 if node not in _shown:
[all …]
Dkconfiglib.py1606 node = self.top_node
1609 if node.list:
1610 node = node.list
1611 elif node.next:
1612 node = node.next
1614 while node.parent:
1615 node = node.parent
1618 if node.item is MENU and expr_value(node.dep) and \
1619 expr_value(node.visibility) and \
1620 node is not self.top_node:
[all …]
Dkconfig.py223 return not any(node.prompt for node in sym.nodes)
/hal_nxp-3.6.0/mcux/mcux-sdk/components/srtm/srtm/
Dsrtm_list.h75 static inline void SRTM_List_AddHead(srtm_list_t *list, srtm_list_t *node) in SRTM_List_AddHead() argument
78 assert(node); in SRTM_List_AddHead()
80 node->next = list->next; in SRTM_List_AddHead()
81 node->prev = list; in SRTM_List_AddHead()
82 list->next->prev = node; in SRTM_List_AddHead()
83 list->next = node; in SRTM_List_AddHead()
92 static inline void SRTM_List_AddTail(srtm_list_t *list, srtm_list_t *node) in SRTM_List_AddTail() argument
95 assert(node); in SRTM_List_AddTail()
97 node->prev = list->prev; in SRTM_List_AddTail()
98 node->next = list; in SRTM_List_AddTail()
[all …]
Dsrtm_dispatcher.c77 message = SRTM_LIST_OBJ(srtm_message_t, node, list); in SRTM_Dispatcher_InsertOrderedMessage()
83 SRTM_List_InsertAfter(list, &msg->node); in SRTM_Dispatcher_InsertOrderedMessage()
91 assert(SRTM_List_IsEmpty(&msg->node)); in SRTM_Dispatcher_QueueMessage()
108 if (!SRTM_List_IsEmpty(&msg->node)) in SRTM_Dispatcher_DequeueMessage()
110 SRTM_List_Remove(&msg->node); in SRTM_Dispatcher_DequeueMessage()
130 message = SRTM_LIST_OBJ(srtm_message_t, node, list); in SRTM_Dispatcher_RecvMessage()
196 SRTM_List_AddTail(&disp->freeRxMsgs, &msg->node); in SRTM_Dispatcher_RecycleMessage()
240 SRTM_List_AddTail(&disp->freeRxMsgs, &msg->node); in SRTM_Dispatcher_Create()
267 core = SRTM_LIST_OBJ(srtm_peercore_t, node, list); in SRTM_Dispatcher_Destroy()
275 service = SRTM_LIST_OBJ(srtm_service_t, node, list); in SRTM_Dispatcher_Destroy()
[all …]
Dsrtm_peercore.c46 SRTM_List_Init(&core->node); in SRTM_PeerCore_Create()
75 channel = SRTM_LIST_OBJ(srtm_channel_t, node, list); in SRTM_PeerCore_Destroy()
113 channel = SRTM_LIST_OBJ(srtm_channel_t, node, list); in SRTM_PeerCore_Start()
139 channel = SRTM_LIST_OBJ(srtm_channel_t, node, list); in SRTM_PeerCore_Stop()
195 if (!SRTM_List_IsEmpty(&channel->node)) in SRTM_PeerCore_AddChannel()
201 SRTM_List_AddTail(&core->channels, &channel->node); in SRTM_PeerCore_AddChannel()
216 if (SRTM_List_IsEmpty(&channel->node)) in SRTM_PeerCore_RemoveChannel()
222 SRTM_List_Remove(&channel->node); in SRTM_PeerCore_RemoveChannel()
Dsrtm_message.c48 SRTM_List_Init(&msg->node); in SRTM_Message_Create()
69 SRTM_List_Init(&dup->node); in SRTM_Message_Duplicate()
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/MIMX8QM6/drivers/
Dfsl_sc_event.c41 sc_event_list_t node; member
92 static inline void SCEvent_List_AddTail(sc_event_list_t *list, sc_event_list_t *node) in SCEvent_List_AddTail() argument
95 assert(node); in SCEvent_List_AddTail()
97 node->prev = list->prev; in SCEvent_List_AddTail()
98 node->next = list; in SCEvent_List_AddTail()
99 list->prev->next = node; in SCEvent_List_AddTail()
100 list->prev = node; in SCEvent_List_AddTail()
108 static inline void SCEvent_List_Remove(sc_event_list_t *node) in SCEvent_List_Remove() argument
110 assert(node); in SCEvent_List_Remove()
112 node->prev->next = node->next; in SCEvent_List_Remove()
[all …]
/hal_nxp-3.6.0/mcux/mcux-sdk/components/log/
Dfsl_component_log.c447 log_string_node_t *node = NULL; in LOG_AsyncPrintf() local
458 node = s_logContext.idle; in LOG_AsyncPrintf()
463 if (NULL == node) in LOG_AsyncPrintf()
467 node = s_logContext.pend; in LOG_AsyncPrintf()
473 if (NULL == node) in LOG_AsyncPrintf()
482 node = s_logContext.idle; in LOG_AsyncPrintf()
492 while (NULL == node); in LOG_AsyncPrintf()
496 if (NULL != node) in LOG_AsyncPrintf()
499 node->formatString = format; in LOG_AsyncPrintf()
500 node->timeStamp = timeStamp; in LOG_AsyncPrintf()
[all …]
/hal_nxp-3.6.0/mcux/mcux-sdk/components/srtm/services/
Dsrtm_audio_service.c86 srtm_list_t node; member
122 SRTM_List_AddTail(&iface->freeProcs, &msg->node); in SRTM_AudioService_RecycleMessage()
194 proc = SRTM_LIST_OBJ(srtm_procedure_t, node, list); in SRTM_AudioService_PeriodDone()
715 SRTM_List_AddTail(&iface->freeProcs, &proc->node); in SRTM_AudioService_CreateIface()
730 SRTM_List_Remove(&iface->node); in SRTM_AudioService_DestroyIface()
736 proc = SRTM_LIST_OBJ(srtm_procedure_t, node, list); in SRTM_AudioService_DestroyIface()
752 cur_iface = SRTM_LIST_OBJ(srtm_audio_iface_t, node, list); in SRTM_AudioService_FindInterface()
771 cur_iface = SRTM_LIST_OBJ(srtm_audio_iface_t, node, list); in SRTM_AudioService_FindInterfaceByChannel()
790 cur_iface = SRTM_LIST_OBJ(srtm_audio_iface_t, node, list); in SRTM_AudioService_FindInterfaceByAdapter()
811 SRTM_List_Init(&handle->service.node); in SRTM_AudioService_Create()
[all …]
/hal_nxp-3.6.0/mcux/mcux-sdk/components/serial_manager/
Dfsl_component_serial_port_virtual.c80 serial_port_virtual_state_t *node) in Serial_PortVirtualAddItem() argument
89 *head = node; in Serial_PortVirtualAddItem()
95 if (p == node) in Serial_PortVirtualAddItem()
103 p->next = node; in Serial_PortVirtualAddItem()
105 node->next = NULL; in Serial_PortVirtualAddItem()
111 serial_port_virtual_state_t *node) in Serial_PortVirtualRemoveItem() argument
120 if (p == node) in Serial_PortVirtualRemoveItem()
Dfsl_component_serial_port_usb.c224 static usb_status_t USB_DeviceAddItem(serial_usb_cdc_state_t **head, serial_usb_cdc_state_t *node) in USB_DeviceAddItem() argument
233 *head = node; in USB_DeviceAddItem()
239 if (p == node) in USB_DeviceAddItem()
247 p->next = node; in USB_DeviceAddItem()
249 node->next = NULL; in USB_DeviceAddItem()
254 …atic usb_status_t USB_DeviceRemoveItem(serial_usb_cdc_state_t **head, serial_usb_cdc_state_t *node) in USB_DeviceRemoveItem() argument
263 if (p == node) in USB_DeviceRemoveItem()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/gpio/
Dfsl_adapter_igpio.c203 static hal_gpio_status_t HAL_GpioAddItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioAddItem() argument
212 *head = node; in HAL_GpioAddItem()
218 if (p == node) in HAL_GpioAddItem()
226 p->next = node; in HAL_GpioAddItem()
228 node->next = NULL; in HAL_GpioAddItem()
233 static hal_gpio_status_t HAL_GpioRemoveItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioRemoveItem() argument
242 if (p == node) in HAL_GpioRemoveItem()
Dfsl_adapter_rt_gpio.c119 static hal_gpio_status_t HAL_GpioAddItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioAddItem() argument
128 *head = node; in HAL_GpioAddItem()
134 if (p == node) in HAL_GpioAddItem()
142 p->next = node; in HAL_GpioAddItem()
144 node->next = NULL; in HAL_GpioAddItem()
149 static hal_gpio_status_t HAL_GpioRemoveItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioRemoveItem() argument
158 if (p == node) in HAL_GpioRemoveItem()
Dfsl_adapter_gpio.c145 static hal_gpio_status_t HAL_GpioAddItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioAddItem() argument
155 *head = node; in HAL_GpioAddItem()
161 if (p == node) in HAL_GpioAddItem()
170 q->next = node; in HAL_GpioAddItem()
172 node->next = NULL; in HAL_GpioAddItem()
177 static hal_gpio_status_t HAL_GpioRemoveItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioRemoveItem() argument
186 if (p == node) in HAL_GpioRemoveItem()
Dfsl_adapter_lpc_gpio.c133 static hal_gpio_status_t HAL_GpioAddItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioAddItem() argument
142 *head = node; in HAL_GpioAddItem()
148 if (p == node) in HAL_GpioAddItem()
156 p->next = node; in HAL_GpioAddItem()
158 node->next = NULL; in HAL_GpioAddItem()
163 static hal_gpio_status_t HAL_GpioRemoveItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioRemoveItem() argument
172 if (p == node) in HAL_GpioRemoveItem()
Dfsl_adapter_gint.c362 static hal_gpio_status_t HAL_GpioAddItem(hal_gpio_state_t **head, hal_gpio_state_t *node)
371 *head = node;
377 if (p == node)
385 p->next = node;
387 node->next = NULL;
392 static hal_gpio_status_t HAL_GpioRemoveItem(hal_gpio_state_t **head, hal_gpio_state_t *node)
401 if (p == node)
/hal_nxp-3.6.0/mcux/mcux-sdk/components/srtm/port/
Dsrtm_message_pool.c39 srtm_list_t node; member
72 SRTM_List_AddTail(&srtmMsgList, &srtmMsgs[i].node); in SRTM_MessagePool_Alloc()
128 SRTM_List_AddTail(&srtmMsgList, &msgBuf->node); in SRTM_MessagePool_Free()
/hal_nxp-3.6.0/mcux/mcux-sdk/components/srtm/channels/
Dsrtm_rpmsg_endpoint.c183 SRTM_List_Init(&handle->channel.node); in SRTM_RPMsgEndpoint_Create()
208 assert(SRTM_List_IsEmpty(&channel->node)); /* Channel must not on any list */ in SRTM_RPMsgEndpoint_Destroy()
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/LPC55S36/utilities/
Dfsl_shell.c134 #define SHEEL_COMMAND_POINTER(node) \ argument
135 ((shell_command_t *)(((uint32_t)(node)) - SHELL_STRUCT_OFFSET(shell_command_t, link)))
137 #define SHEEL_COMMAND_POINTER(node) \ argument
138 ((shell_command_t *)(((uint32_t)(node)) - (sizeof(shell_command_t) - sizeof(list_element_t))))
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/LPC5534/utilities/
Dfsl_shell.c134 #define SHEEL_COMMAND_POINTER(node) \ argument
135 ((shell_command_t *)(((uint32_t)(node)) - SHELL_STRUCT_OFFSET(shell_command_t, link)))
137 #define SHEEL_COMMAND_POINTER(node) \ argument
138 ((shell_command_t *)(((uint32_t)(node)) - (sizeof(shell_command_t) - sizeof(list_element_t))))
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/LPC5536/utilities/
Dfsl_shell.c134 #define SHEEL_COMMAND_POINTER(node) \ argument
135 ((shell_command_t *)(((uint32_t)(node)) - SHELL_STRUCT_OFFSET(shell_command_t, link)))
137 #define SHEEL_COMMAND_POINTER(node) \ argument
138 ((shell_command_t *)(((uint32_t)(node)) - (sizeof(shell_command_t) - sizeof(list_element_t))))
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/MK22F12/utilities/
Dfsl_shell.c134 #define SHEEL_COMMAND_POINTER(node) \ argument
135 ((shell_command_t *)(((uint32_t)(node)) - SHELL_STRUCT_OFFSET(shell_command_t, link)))
137 #define SHEEL_COMMAND_POINTER(node) \ argument
138 ((shell_command_t *)(((uint32_t)(node)) - (sizeof(shell_command_t) - sizeof(list_element_t))))
/hal_nxp-3.6.0/mcux/mcux-sdk/devices/MKE14F16/utilities/
Dfsl_shell.c134 #define SHEEL_COMMAND_POINTER(node) \ argument
135 ((shell_command_t *)(((uint32_t)(node)) - SHELL_STRUCT_OFFSET(shell_command_t, link)))
137 #define SHEEL_COMMAND_POINTER(node) \ argument
138 ((shell_command_t *)(((uint32_t)(node)) - (sizeof(shell_command_t) - sizeof(list_element_t))))

1234567