Lines Matching defs:ci
18 struct lws_cache_creation_info ci;
30 memset(&ci, 0, sizeof(ci));
31 ci.cx = cx;
32 ci.ops = &lws_cache_ops_heap;
33 ci.name = "L1";
35 l1 = lws_cache_create(&ci);
103 struct lws_cache_creation_info ci;
114 memset(&ci, 0, sizeof(ci));
115 ci.cx = cx;
116 ci.ops = &lws_cache_ops_heap;
117 ci.name = "L1_lim";
118 ci.max_items = 1; /* ie, adding a second item destroys the first */
120 l1 = lws_cache_create(&ci);
172 struct lws_cache_creation_info ci;
184 memset(&ci, 0, sizeof(ci));
185 ci.cx = cx;
186 ci.ops = &lws_cache_ops_nscookiejar;
187 ci.name = "NSC";
188 ci.u.nscookiejar.filepath = "./cookies.txt";
190 nsc = lws_cache_create(&ci);
196 ci.ops = &lws_cache_ops_heap;
197 ci.name = "L1";
198 ci.parent = nsc;
200 l1 = lws_cache_create(&ci);