Lines Matching refs:this
5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
38 * Do note that this means that the list nodes will contain pointers into the
106 * Is this the sentinel at the tail of the list?
111 * Is this the sentinel at the head of the list?
209 return exec_node_get_next_const(this);
214 return exec_node_get_next(this);
219 return exec_node_get_prev_const(this);
224 return exec_node_get_prev(this);
229 exec_node_remove(this);
234 exec_node_self_link(this);
239 exec_node_insert_after(this, after);
244 exec_node_insert_node_before(this, before);
249 exec_node_replace_with(this, replacement);
254 return exec_node_is_tail_sentinel(this);
259 return exec_node_is_head_sentinel(this);
333 * Move all of the nodes from this list to the target list
570 /* We could try to use one of the interators below for this but they all
572 * which is not the case for this function.
583 exec_list_make_empty(this);
588 return exec_list_is_empty(this);
593 return exec_list_get_head_const(this);
598 return exec_list_get_head(this);
603 return exec_list_get_head_raw_const(this);
608 return exec_list_get_head_raw(this);
613 return exec_list_get_tail_const(this);
618 return exec_list_get_tail(this);
623 return exec_list_get_tail_raw_const(this);
628 return exec_list_get_tail_raw(this);
633 return exec_list_length(this);
638 exec_list_push_head(this, n);
643 exec_list_push_tail(this, n);
648 exec_list_push_degenerate_list_at_head(this, n);
653 return exec_list_pop_head(this);
658 exec_list_move_nodes_to(this, target);
663 exec_list_append(this, source);
668 exec_node_insert_list_after(this, after);
673 exec_list_prepend(this, source);
678 exec_node_insert_list_before(this, before);