Home
last modified time | relevance | path

Searched refs:List (Results 1 - 25 of 156) sorted by relevance

1234567

/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/include/
H A Dlist.h38 typedef struct List List; typedef
47 * @return List pointer.
50 List *ListCreate(FreeDataCb cb);
55 * @param list List pointer.
58 void ListClear(List *list);
63 * @param list List pointer.
66 void ListDelete(List *list);
71 * @param list List pointer.
72 * @return List siz
[all...]
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/interface/
H A Dnstackx_list.h26 typedef struct List { struct
27 struct List *prev;
28 struct List *next;
29 } List; typedef
31 static inline void ListInitHead(List *head) in ListInitHead()
37 static inline void ListInsertHead(List *head, List *node) in ListInsertHead()
45 static inline void ListInsertTail(List *head, List *node) in ListInsertTail()
53 static inline void ListRemoveNode(List *nod
[all...]
H A Dnstackx_event.h30 List list;
36 NSTACKX_EXPORT int32_t PostEvent(const List *eventNodeChain, EpollDesc epollfd, EventHandle handle, void *arg);
37 NSTACKX_EXPORT void ClearEvent(const List *eventNodeChain, EpollDesc epollfd);
38 NSTACKX_EXPORT int32_t EventModuleInit(List *eventNodeChain, EpollDesc epollfd);
39 NSTACKX_EXPORT void EventModuleClean(const List *eventNodeChain, EpollDesc epollfd);
40 NSTACKX_EXPORT void EventNodeChainClean(List *eventNodeChain);
41 NSTACKX_EXPORT EpollTask *GetEpollTask(List *eventNodeChain, EpollDesc epollfd);
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/src/
H A Dlist.c23 List *list; // Used in func ListGetNextNode, might de deleted in future version.
27 typedef struct List { struct
33 static ListNode *ListGetFirstNodeInt(const List *list) in ListGetFirstNodeInt()
43 List *ListCreate(FreeDataCb cb) in ListCreate()
45 List *newList = (List *)calloc(1, (sizeof(List))); in ListCreate()
53 NO_SANITIZE("cfi") static ListNode *ListFreeNode(List *list, ListNode *node) in ListFreeNode()
68 void ListClear(List *list) in ListClear()
79 void ListDelete(List *lis
[all...]
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/core/
H A Dnstackx_event.c24 EventNode *SearchEventNode(const List *eventNodeChain, EpollDesc epollfd) in SearchEventNode()
26 List *pos = NULL; in SearchEventNode()
27 List *tmp = NULL; in SearchEventNode()
40 void EventModuleClean(const List *eventNodeChain, EpollDesc epollfd) in EventModuleClean()
42 List *pos = NULL; in EventModuleClean()
63 void EventNodeChainClean(List *eventNodeChain) in EventNodeChainClean()
65 List *tmp = NULL; in EventNodeChainClean()
66 List *pos = NULL; in EventNodeChainClean()
82 EpollTask *GetEpollTask(List *eventNodeChain, EpollDesc epollfd) in GetEpollTask()
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dregister_engine_access.cpp70 template<bool ArrayTypes, typename... List>
71 void RegisterBasicEngineTypes(IEngineData& d, TypeList<List...>) in RegisterBasicEngineTypes()
73 (d.RegisterInternalValueAccess(MetaType<List>::coreType, CreateShared<EngineInternalValueAccess<List>>()), ...); in RegisterBasicEngineTypes()
76 MetaType<List[]>::coreType, CreateShared<EngineInternalArrayValueAccess<List>>()), in RegisterBasicEngineTypes()
81 template<bool ArrayTypes, typename... List>
82 void UnRegisterBasicEngineTypes(IEngineData& d, TypeList<List...>) in UnRegisterBasicEngineTypes()
84 (d.UnregisterInternalValueAccess(MetaType<List>::coreType), ...); in UnRegisterBasicEngineTypes()
86 (d.UnregisterInternalValueAccess(MetaType<List[]> in UnRegisterBasicEngineTypes()
[all...]
H A Dregister_anys.cpp88 template<typename... List>
89 static void RegisterTypes(IPropertyRegister& pr, TypeList<List...>) in RegisterTypes()
91 (pr.RegisterAny(CreateShared<DefaultAnyBuilder<Any<List>>>()), ...); in RegisterTypes()
92 (pr.RegisterAny(CreateShared<DefaultAnyBuilder<ArrayAny<List>>>()), ...); in RegisterTypes()
95 template<typename... List>
96 static void UnregisterTypes(IPropertyRegister& pr, TypeList<List...>) in UnregisterTypes()
98 (pr.UnregisterAny(ArrayAny<List>::StaticGetClassId()), ...); in UnregisterTypes()
99 (pr.UnregisterAny(Any<List>::StaticGetClassId()), ...); in UnregisterTypes()
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/
H A Dnstackx_device_remote.c38 List node;
39 List orderedNode;
48 List node;
50 List remoteNodeList;
57 List node;
59 List rxIfaceList;
62 static List *g_remoteDeviceList;
63 static List *g_remoteDeviceListBackup;
64 static List *g_remoteDeviceOrderedList;
70 g_remoteDeviceList = (List *)mallo in RemoteDeviceListInit()
[all...]
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/include/
H A Dnstackx_dfile_session.h40 List list;
55 List entry;
61 List list;
73 List list;
81 List eventNodeChain;
84 List vtransManagerList;
90 List dFileTransChain;
91 List peerInfoChain;
100 List outboundQueue;
101 List inboundQueu
[all...]
H A Dnstackx_file_manager.h127 List list;
134 List head;
141 List list;
169 List list;
183 List innerRecvBlockHead; /* DATA:BlockFrame */
185 List *eventNodeChain;
221 List *sendRetranListTail;
240 List *eventNodeChain;
265 List *eventNodeChain;
277 List lis
[all...]
H A Dnstackx_dfile_mp.h30 List list;
43 List list;
48 List vtransListHead;
H A Dnstackx_dfile_dfx.h23 List list;
38 extern List g_dFileSessionChain;
H A Dnstackx_dfile_send.h27 int32_t SendDataFrame(DFileSession *session, List *unsent, uint32_t threadIdx, uint8_t socketIndex);
28 void DestroyIovList(List *head, DFileSession *s, uint32_t tid);
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dgt_bundle_manager_service.h89 void ScanSystemApp(const cJSON *uninstallRecord, List<ToBeInstalledApp *> *systemPathList);
90 void ScanThirdApp(const char *appDir, const List<ToBeInstalledApp *> *systemPathList);
93 void ReloadEntireBundleInfo(const char *appPath, const char *bundleName, List<ToBeInstalledApp *> *systemPathList,
97 void AddSystemAppPathList(const char *installedPath, const char *path, List<ToBeInstalledApp *> *systemPathList,
99 void RemoveSystemAppPathList(List<ToBeInstalledApp *> *systemPathList);
103 bool IsSystemBundleInstalledPath(const char *appPath, const List<ToBeInstalledApp *> *systemPathList);
104 void InstallPreBundle(List<ToBeInstalledApp *> systemPathList, InstallerCallback installerCallback);
116 List<BundleRes *> *bundleResList_;
120 List<ToBeInstalledApp *> systemPathList_;
124 List<InstallerCallbac
[all...]
/foundation/ability/ability_lite/interfaces/inner_api/abilitymgr_lite/slite/
H A Dbms_helper.h43 int32_t RegisterBundleNames(const List<char *> &names);
49 int32_t RegisterTemporaryBundleNames(const List<char *> &names);
64 List<char *> bundleNames_ {};
65 List<char *> temporaryBundleNames_ {};
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/core/
H A Dnstackx_dfile_send.c35 static int32_t AllocIovList(List *head) in AllocIovList()
55 List *p = &s->freeIovList[tid]; in GetFreeIovList()
56 List *q = NULL; in GetFreeIovList()
69 void DestroyIovList(const List *head, DFileSession *s, uint32_t tid) in DestroyIovList()
71 List *p = NULL; in DestroyIovList()
72 List *n = NULL; in DestroyIovList()
85 static int32_t TcpSendFileDataFrame(Socket *socket, PeerInfo *peerInfo, List *p, BlockFrame *block, uint16_t len) in TcpSendFileDataFrame()
114 static void UdpSendFileDataSuccess(DFileSession *session, PeerInfo *peerInfo, List *p, FileDataFrameZS *f, in UdpSendFileDataSuccess()
125 static int32_t SendFileDataFrame(DFileSession *session, PeerInfo *peerInfo, List *head, uint32_t tid) in SendFileDataFrame()
127 List * in SendFileDataFrame()
[all...]
/foundation/arkui/ui_lite/interfaces/kits/common/
H A Dspannable_string.h104 List<StyleSpan*> styleList_;
105 List<FontSizeSpan> sizeList_;
106 List<FontIdSpan> fontIdList_;
107 List<LetterHeightSpan> heightList_;
109 List<BackgroundColorSpan> backgroundColorList_;
110 List<ForegroundColorSpan> foregroundColorList_;
111 List<LineBackgroundColorSpan> lineBackgroundColorList_;
125 List<SpanType>& tempList) in EqualInsert()
166 List<SpanType>& tempList, in UnequalInsert()
/foundation/resourceschedule/ffrt/src/util/
H A DIntrusiveList.h110 friend struct List;
116 struct List { struct
117 List() noexcept : m_head {&m_tail, &m_tail}, m_tail {&m_head, &m_head}
121 List(List&& rhs) noexcept : List() in List() function
138 List& operator=(List&& rhs) noexcept
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/l2cap/
H A Dl2cap_inst.h97 List *txList;
157 List *chanList; // Pack struct L2capChannel
159 List *pendingList; // Pack struct L2capPendingRequest
170 List *psmList; // Pack struct L2capPsm
171 List *connList; // Pack struct L2capConnection
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/gap/
H A Dgap_def.h186 List *registerlist;
187 List *requestlist;
197 List *devicelist;
309 List *deviceList;
318 List *RequestList;
328 List *reportRPAResolveList;
337 List *exAdvInfoList;
/foundation/arkui/ui_lite/test/framework/include/
H A Dui_test_group.h33 static List<TestCaseInfo>& GetTestCase();
39 static List<TestCaseInfo> testCaseList_;
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/liteos/
H A Dsys_event.c29 EventNode *SearchEventNode(const List *eventNodeChain, EpollDesc epollfd);
59 int32_t PostEvent(const List *eventNodeChain, EpollDesc epollfd, EventHandle handle, void *arg) in PostEvent()
90 void ClearEvent(const List *eventNodeChain, EpollDesc epollfd) in ClearEvent()
137 int32_t EventModuleInit(List *eventNodeChain, EpollDesc epollfd) in EventModuleInit()
139 List *pos = NULL; in EventModuleInit()
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/unix/
H A Dsys_event.c29 EventNode *SearchEventNode(const List *eventNodeChain, EpollDesc epollfd);
55 int32_t PostEvent(const List *eventNodeChain, EpollDesc epollfd, EventHandle handle, void *arg) in PostEvent()
82 void ClearEvent(const List *eventNodeChain, EpollDesc epollfd) in ClearEvent()
140 int32_t EventModuleInit(List *eventNodeChain, EpollDesc epollfd) in EventModuleInit()
142 List *pos = NULL; in EventModuleInit()
/foundation/ability/ability_lite/services/abilitymgr_lite/include/slite/
H A Dability_list.h55 void GetAbilityList(uint32_t mission, List<uint32_t> &result);
64 List<AbilityRecord *> abilityList_ {};
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/include/coap_discover/
H A Dcoap_app.h34 List node;
43 List *GetCoapContextList(void);

Completed in 9 milliseconds

1234567