Searched refs:new_node (Results 1 – 9 of 9) sorted by relevance
| /openbmc/qemu/util/ |
| H A D | fdmon-epoll.c | 36 AioHandler *new_node) in fdmon_epoll_update() argument 39 .data.ptr = new_node, in fdmon_epoll_update() 40 .events = new_node ? epoll_events_from_pfd(new_node->pfd.events) : 0, in fdmon_epoll_update() 44 if (!new_node) { in fdmon_epoll_update() 47 r = epoll_ctl(ctx->epollfd, EPOLL_CTL_ADD, new_node->pfd.fd, &event); in fdmon_epoll_update() 49 r = epoll_ctl(ctx->epollfd, EPOLL_CTL_MOD, new_node->pfd.fd, &event); in fdmon_epoll_update()
|
| H A D | aio-posix.c | 113 AioHandler *new_node = NULL; in aio_set_fd_handler() local 142 new_node = g_new0(AioHandler, 1); in aio_set_fd_handler() 145 new_node->io_read = io_read; in aio_set_fd_handler() 146 new_node->io_write = io_write; in aio_set_fd_handler() 147 new_node->io_poll = io_poll; in aio_set_fd_handler() 148 new_node->io_poll_ready = io_poll_ready; in aio_set_fd_handler() 149 new_node->opaque = opaque; in aio_set_fd_handler() 152 new_node->pfd.fd = fd; in aio_set_fd_handler() 154 new_node->pfd = node->pfd; in aio_set_fd_handler() 156 g_source_add_poll(&ctx->source, &new_node->pfd); in aio_set_fd_handler() [all …]
|
| H A D | fdmon-io_uring.c | 137 AioHandler *new_node) in fdmon_io_uring_update() argument 139 if (new_node) { in fdmon_io_uring_update() 140 enqueue(&ctx->submit_list, new_node, FDMON_IO_URING_ADD); in fdmon_io_uring_update()
|
| H A D | fdmon-poll.c | 98 AioHandler *new_node) in fdmon_poll_update() argument
|
| /openbmc/u-boot/scripts/dtc/ |
| H A D | livetree.c | 137 struct node *merge_nodes(struct node *old_node, struct node *new_node) in merge_nodes() argument 146 for_each_label_withdel(new_node->labels, l) in merge_nodes() 151 while (new_node->proplist) { in merge_nodes() 153 new_prop = new_node->proplist; in merge_nodes() 154 new_node->proplist = new_prop->next; in merge_nodes() 185 while (new_node->children) { in merge_nodes() 187 new_child = new_node->children; in merge_nodes() 188 new_node->children = new_child->next_sibling; in merge_nodes() 214 free(new_node); in merge_nodes() 219 struct node * add_orphan_node(struct node *dt, struct node *new_node, char *ref) in add_orphan_node() argument [all …]
|
| H A D | dtc.h | 206 struct node *merge_nodes(struct node *old_node, struct node *new_node); 207 struct node *add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 139 | 150 def createMirror(self, node, new_node): argument 151 self.checkBlockDriverState(new_node, False) 155 'node-name': new_node, 159 self.checkBlockDriverState(new_node)
|
| /openbmc/libpldm/src/dsp/ |
| H A D | pdr.c | 1452 pldm_entity_node **new_node) in entity_association_tree_copy() argument 1460 *new_node = malloc(sizeof(pldm_entity_node)); in entity_association_tree_copy() 1461 if (!*new_node) { in entity_association_tree_copy() 1465 (*new_node)->parent = org_node->parent; in entity_association_tree_copy() 1466 (*new_node)->entity = org_node->entity; in entity_association_tree_copy() 1467 (*new_node)->association_type = org_node->association_type; in entity_association_tree_copy() 1468 (*new_node)->remote_container_id = org_node->remote_container_id; in entity_association_tree_copy() 1469 (*new_node)->first_child = NULL; in entity_association_tree_copy() 1470 (*new_node)->next_sibling = NULL; in entity_association_tree_copy() 1473 &((*new_node)->first_child)); in entity_association_tree_copy() [all …]
|
| /openbmc/qemu/include/block/ |
| H A D | aio.h | 78 void (*update)(AioContext *ctx, AioHandler *old_node, AioHandler *new_node);
|