Home
last modified time | relevance | path

Searched defs:LinkedList (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/drivers/peripheral/user_auth/hdi_service/utils/inc/
H A Dlinked_list.h41 typedef struct LinkedList { struct
43 LinkedListNode *head; argument
45 uint32_t (*getSize)(struct LinkedList *list); argument
46 ResultCode (*insert)(struct LinkedList *list, void *data); argument
47 …ResultCode (*remove)(struct LinkedList *list, void *condition, MatchFunc matchFunc, bool destroyNo… argument
48 LinkedListIterator *(*createIterator)(struct LinkedList *list); argument
49 void (*destroyIterator)(LinkedListIterator *iterator); argument
50 } LinkedList; typedef
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
H A Dlinked_list.rs62 pub(crate) struct LinkedList<L: Link + Default> { struct
66 unsafe impl<L: Link + Default + Send> Send for LinkedList<L> {} argument
67 unsafe impl<L: Link + Default + Sync> Sync for LinkedList<L> {} implementation
82 impl<L: Link + Default> LinkedList<L> { implementation
164 impl<L: Link + Default> Default for LinkedList<L> { implementation
170 impl<L: Link + Default> Drop for LinkedList<L> { implementation
/ohos5.0/commonlibrary/rust/ylong_json/src/
H A Dlinked_list.rs22 pub(crate) struct LinkedList<T> { struct
29 impl<T> LinkedList<T> { argument
225 impl<T> Default for LinkedList<T> { implementation
231 impl<T: Debug> Debug for LinkedList<T> { implementation
243 impl<T: PartialEq> PartialEq for LinkedList<T> { implementation
257 impl<T: Clone> Clone for LinkedList<T> { implementation
267 impl<T> Drop for LinkedList<T> { implementation
277 unsafe impl<T: Send> Send for LinkedList<T> {} implementation
278 unsafe impl<T: Sync> Sync for LinkedList<T> {} implementation
/ohos5.0/docs/en/application-dev/arkts-utils/
H A Dlinear-container.md68 ## LinkedList section
/ohos5.0/docs/zh-cn/application-dev/arkts-utils/
H A Dlinear-container.md68 ## LinkedList section
/ohos5.0/docs/en/application-dev/reference/apis-arkts/
H A Djs-apis-linkedlist.md29 ## LinkedList section
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/
H A Djs-apis-linkedlist.md29 ## LinkedList section
/ohos5.0/foundation/resourceschedule/ffrt/src/util/
H A Dlinked_list.h25 LinkedList() : prev(this), next(this) in LinkedList() function
29 LinkedList(LinkedList* prev, LinkedList* next) : prev(prev), next(next) in LinkedList() function
/ohos5.0/foundation/distributeddatamgr/pasteboard/utils/native/include/
H A Dpasteboard_linked_list.h38 LinkedList() in LinkedList() function