| /hal_nxp-latest/mcux/mcux-sdk/scripts/kconfig/ |
| D | guiconfig.py | 283 _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 …]
|
| D | kconfiglib.py | 1606 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 …]
|
| D | menuconfig.py | 1134 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 …]
|
| D | kconfig.py | 223 return not any(node.prompt for node in sym.nodes)
|
| /hal_nxp-latest/mcux/mcux-sdk/components/srtm/srtm/ |
| D | srtm_list.h | 75 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 …]
|
| D | srtm_dispatcher.c | 77 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 …]
|
| D | srtm_peercore.c | 46 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()
|
| /hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-multicore/rpmsg_lite/lib/common/ |
| D | llist.c | 57 void add_to_list(struct llist **head, struct llist *node) in add_to_list() argument 59 if (node == LIST_NULL) in add_to_list() 68 node->next = *head; in add_to_list() 69 node->prev = LIST_NULL; in add_to_list() 70 (*head)->prev = node; in add_to_list() 71 *head = node; in add_to_list() 76 *head = node; in add_to_list() 91 void remove_from_list(struct llist **head, struct llist *node) in remove_from_list() argument 93 if ((*head == LIST_NULL) || (node == LIST_NULL)) in remove_from_list() 99 if (node == *head) in remove_from_list() [all …]
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QM6/drivers/ |
| D | fsl_sc_event.c | 41 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-latest/mcux/mcux-sdk/components/log/ |
| D | fsl_component_log.c | 447 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-latest/mcux/mcux-sdk/components/srtm/services/ |
| D | srtm_audio_service.c | 86 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-latest/mcux/middleware/mcux-sdk-middleware-multicore/rpmsg_lite/lib/rpmsg_lite/ |
| D | rpmsg_lite.c | 120 struct llist *node; in rpmsg_lite_rx_callback() local 137 node = rpmsg_lite_get_endpoint_from_addr(rpmsg_lite_dev, rpmsg_msg->hdr.dst); in rpmsg_lite_rx_callback() 140 if (node != RL_NULL) in rpmsg_lite_rx_callback() 142 ept = (struct rpmsg_lite_endpoint *)node->data; in rpmsg_lite_rx_callback() 414 struct llist *node; in rpmsg_lite_create_ept() local 460 node = &(ept_context->node); in rpmsg_lite_create_ept() 468 node = env_allocate_memory(sizeof(struct llist)); in rpmsg_lite_create_ept() 469 if (node == RL_NULL) in rpmsg_lite_create_ept() 483 node->data = rl_ept; in rpmsg_lite_create_ept() 485 add_to_list((struct llist **)&rpmsg_lite_dev->rl_endpoints, node); in rpmsg_lite_create_ept() [all …]
|
| /hal_nxp-latest/mcux/mcux-sdk/components/gpio/ |
| D | fsl_adapter_rgpio.c | 159 static hal_gpio_status_t HAL_GpioAddItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioAddItem() argument 168 *head = node; in HAL_GpioAddItem() 174 if (p == node) in HAL_GpioAddItem() 182 p->next = node; in HAL_GpioAddItem() 184 node->next = NULL; in HAL_GpioAddItem() 189 static hal_gpio_status_t HAL_GpioRemoveItem(hal_gpio_state_t **head, hal_gpio_state_t *node) in HAL_GpioRemoveItem() argument 198 if (p == node) in HAL_GpioRemoveItem()
|
| D | fsl_adapter_rt_gpio.c | 119 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()
|
| D | fsl_adapter_igpio.c | 203 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()
|
| D | fsl_adapter_gpio.c | 145 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()
|
| D | fsl_adapter_lpc_gpio.c | 133 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()
|
| D | fsl_adapter_gint.c | 362 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-latest/mcux/mcux-sdk/components/serial_manager/ |
| D | fsl_component_serial_port_virtual.c | 80 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()
|
| D | fsl_component_serial_port_usb.c | 224 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-latest/mcux/mcux-sdk/components/srtm/port/ |
| D | srtm_message_pool.c | 39 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-latest/mcux/middleware/mcux-sdk-middleware-multicore/rpmsg_lite/lib/include/ |
| D | llist.h | 59 void add_to_list(struct llist **head, struct llist *node); 60 void remove_from_list(struct llist **head, struct llist *node);
|
| /hal_nxp-latest/mcux/mcux-sdk/devices/LPC5534/utilities/ |
| D | fsl_shell.c | 134 #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-latest/mcux/mcux-sdk/devices/MKE18F16/utilities/ |
| D | fsl_shell.c | 134 #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-latest/mcux/mcux-sdk/devices/MKV58F24/utilities/ |
| D | fsl_shell.c | 134 #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))))
|