Home
last modified time | relevance | path

Searched defs:node (Results 1 – 10 of 10) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
Dlinked_list.rs77 unsafe fn node(ptr: NonNull<Self>) -> NonNull<Node<Self>> in node() method
87 let node = unsafe { L::node(head_ptr).as_mut() }; in new() localVariable
100 let node = Some(val); in push_front() localVariable
114 let node = head.prev.take().unwrap(); in pop_back() localVariable
153 let node = p.unwrap(); in drain_filtered() localVariable
185 node: Node<Entry>, field
211 unsafe fn node(ptr: NonNull<Self>) -> NonNull<Node<Self>> { in node() method
349 let node = list.pop_back(); in ut_link_list_for_each_mut() localVariable
351 let node = list.pop_back(); in ut_link_list_for_each_mut() localVariable
353 let node = list.pop_back(); in ut_link_list_for_each_mut() localVariable
/commonlibrary/utils_lite/include/
Dutils_list.h107 #define UTILS_DL_LIST_IS_END(list, node) ((list) == (node) ? TRUE : FALSE) argument
129 #define UTILS_DL_LIST_IS_ON_QUEUE(node) ((node)->pstPrev != NULL && (node)->pstNext != NULL) argument
172 static inline void UtilsListAdd(UTILS_DL_LIST *list, UTILS_DL_LIST *node) in UtilsListAdd()
199 static inline void UtilsListTailInsert(UTILS_DL_LIST *list, UTILS_DL_LIST *node) in UtilsListTailInsert()
223 static inline void UtilsListHeadInsert(UTILS_DL_LIST *list, UTILS_DL_LIST *node) in UtilsListHeadInsert()
247 static inline void UtilsListDelete(UTILS_DL_LIST *node) in UtilsListDelete()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/bounded/
Darray.rs84 let node = self.data.get(index).unwrap(); in prepare_send() localVariable
107 let node = self.data.get(index).unwrap(); in write() localVariable
146 let node = self.data.get(index).unwrap(); in try_recv() localVariable
218 let node = self.data.get(index).unwrap(); in drop() localVariable
245 let node = self.array.data.get(index).unwrap(); in poll() localVariable
/commonlibrary/rust/ylong_json/src/
Dlinked_list.rs54 let mut node = Box::new(Node::new(value)); in push_back() localVariable
59 let node = Box::leak(node) as *const Node<T>; in push_back() localVariable
78 let node = Box::from_raw(self.tail as *mut Node<T>); in pop_back() localVariable
198 let node = &mut *(self.tail as *mut Node<T>); in back_node_mut() localVariable
207 let node = &mut (*(node as *mut Node<T>)); in unlink_node() localVariable
338 let node = unsafe { &*(self.head as *mut Node<T>) }; in next() localVariable
363 let node = unsafe { &*(self.tail as *mut Node<T>) }; in next_back() localVariable
387 let node = unsafe { &mut *(self.head as *mut Node<T>) }; in next() localVariable
413 let node = unsafe { &mut *(self.tail as *mut Node<T>) }; in next_back() localVariable
551 let node = &mut *(self.current as *mut Node<T>); in current_node() localVariable
Dadapter.rs601 let node = array_ref.get_node_mut(index as usize).unwrap(); in ylong_json_get_array_node() localVariable
614 let node = &mut *(array_node as *mut Node<JsonValue>); in ylong_json_get_item_from_array_node() localVariable
654 let node = &mut *(array_node as *mut Node<JsonValue>); in ylong_json_replace_item_of_array_node() localVariable
672 let node = &mut *(array_node as *mut Node<JsonValue>); in ylong_json_remove_array_node() localVariable
684 let node = &mut *(array_node as *mut Node<JsonValue>); in ylong_json_delete_array_node() localVariable
1007 let node = &mut *(object_node as *mut Node<(String, JsonValue)>); in ylong_json_get_item_from_object_node() localVariable
1057 let node = &mut *(object_node as *mut Node<(String, JsonValue)>); in ylong_json_replace_item_of_object_node() localVariable
1076 let node = &mut *(object_node as *mut Node<(String, JsonValue)>); in ylong_json_remove_object_node() localVariable
1088 let node = &mut *(object_node as *mut Node<(String, JsonValue)>); in ylong_json_delete_object_node() localVariable
2320 let node = null_mut(); in ut_ylong_json_get_item_from_array_node() localVariable
[all …]
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/
Dqueue.rs142 let node = block.data.get(index).unwrap(); in send_inner() localVariable
193 let node = block.data.get(index).unwrap(); in try_recv() localVariable
273 let node = (*block_ptr).data.get_mut(index).unwrap(); in drop() localVariable
/commonlibrary/c_utils/base/src/
Ddirectory_ex.cpp248 DirectoryNode node; in ForceRemoveDirectory() local
308 DirectoryNode node = removeStack.top(); in ForceRemoveDirectory() local
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/task/
Draw.rs58 node: Node<Header>, field
104 unsafe fn node(mut ptr: NonNull<Self>) -> NonNull<Node<Self>> in node() method
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/time/
Dwheel.rs54 node: Node<Clock>, field
126 unsafe fn node(mut ptr: NonNull<Self>) -> NonNull<Node<Self>> in node() method
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
Dschedule_io.rs69 node: Node<Waiter>, field
101 unsafe fn node(mut ptr: NonNull<Self>) -> NonNull<Node<Self>> in node() method