Home
last modified time | relevance | path

Searched defs:head (Results 1 – 11 of 11) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
Dlinked_list.rs63 head: NonNull<L>, field
85 let head = Box::<L>::default(); in new() localVariable
96 let head = L::node(self.head).as_mut(); in push_front() localVariable
111 let head = L::node(self.head).as_mut(); in pop_back() localVariable
149 let head = L::node(self.head).as_ref(); in drain_filtered() localVariable
Dslots.rs45 head: usize, field
53 head: usize, field
308 let head = self.head; in next() localVariable
Dslab.rs391 pub head: usize, field
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/bounded/
Darray.rs41 head: RefCell<usize>, field
144 let head = *self.head.borrow(); in try_recv() localVariable
202 let head = *self.head.borrow(); in len() localVariable
214 let head = *self.head.borrow(); in drop() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/
Dqueue.rs100 head: RefCell<Head<T>>, field
186 let mut head = self.head.borrow_mut(); in try_recv() localVariable
247 let head = self.head.borrow().index; in len() localVariable
260 let head = self.head.borrow_mut(); in drop() localVariable
/commonlibrary/c_utils/base/include/
Dio_event_reactor.h75 std::shared_ptr<IOEventHandler> head; member
/commonlibrary/memory_utils/libpurgeablemem/c/src/
Dpurgeable_mem_builder_c.c116 static void AppendBuilder(struct PurgMemBuilder *head, struct PurgMemBuilder *newcomer) in AppendBuilder()
/commonlibrary/rust/ylong_json/src/
Dlinked_list.rs23 head: *const Node<T>, field
324 head: *const Node<T>, field
373 head: *const Node<T>, field
/commonlibrary/ets_utils/js_sys_module/console/
Dconsole.cpp303 std::string Console::RenderHead(napi_env env, napi_value head, std::vector<size_t> columnWidths) in RenderHead()
374 void Console::GraphTable(napi_env env, napi_value head, napi_value columns, const size_t& length) in GraphTable()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/
Dqueue.rs205 let mut head = self.front.load(Acquire); in pop_front() localVariable
417 let mut head = self.pop_front(); in drop() localVariable
/commonlibrary/rust/ylong_http/ylong_http/src/request/
Dmod.rs125 pub fn head<T>(uri: T) -> RequestBuilder in head() method