Searched defs:next (Results 1 - 10 of 10) sorted by relevance

/lxc/src/lxc/
H A Dmainloop.c150 struct lxc_list *iterator, *next; local
152 iterator = descr->handlers.next;
154 next = iterator->next;
159 iterator = next;
H A Dlist.h29 struct lxc_list *next; member in struct:lxc_list
33 #define lxc_init_list(l) { .next = l, .prev = l }
47 for (__iterator = (__list)->next; \
49 __iterator = __iterator->next)
56 * lxc_list_for_each_safe(iterator, list, list->next) {
63 for (__iterator = (__list)->next, __next = __iterator->next; \
65 __iterator = __next, __next = __next->next)
71 list->next = list->prev = list;
84 return list->next
100 __lxc_list_add(struct lxc_list *new, struct lxc_list *prev, struct lxc_list *next) argument
150 struct lxc_list *next, *prev; local
[all...]
H A Dlog.h99 struct lxc_log_appender *next; member in struct:lxc_log_appender
184 appender = appender->next;
H A Dlxc_user_nic.c203 struct alloted_s *next; member in struct:alloted_s
229 al->next = NULL;
237 while (cur->next)
238 cur = cur->next;
239 cur->next = al;
253 cur = cur->next;
355 goto next;
362 goto next;
370 goto next;
378 goto next;
[all...]
H A Dconfile.c355 * the key 'lxc.network.' was found. So we make sure next
2068 struct lxc_list *it,*next; local
2077 lxc_list_for_each_safe(it, defines, next) {
2732 goto next;
2735 goto next;
2740 goto next;
2751 goto next;
2753 goto next;
2788 next:
2825 goto next;
[all...]
H A Dconf.c4160 struct lxc_list *it2,*next; local
4173 lxc_list_for_each_safe(it2, &netdev->ipv4, next) {
4178 lxc_list_for_each_safe(it2, &netdev->ipv6, next) {
4221 struct lxc_list *it2,*next; local
4222 lxc_list_for_each_safe(it2, &netdev->ipv4, next) {
4228 struct lxc_list *it2,*next; local
4229 lxc_list_for_each_safe(it2, &netdev->ipv6, next) {
4242 struct lxc_list *it,*next; local
4243 lxc_list_for_each_safe(it, &c->network, next) {
4251 struct lxc_list *it,*next; local
4262 struct lxc_list *it, *next; local
4279 struct lxc_list *it,*next; local
4291 struct lxc_list *it,*next; local
4317 struct lxc_list *it,*next; local
4329 struct lxc_list *it,*next; local
4342 struct lxc_list *it,*next; local
4360 struct lxc_list *it,*next; local
4403 struct lxc_list *it,*next; local
4414 struct lxc_list *it,*next; local
4491 struct lxc_list *new = NULL, *tmp, *it, *next; local
4754 struct lxc_list *iterator, *next; local
[all...]
/lxc/src/lxc/tools/
H A Dlxc_autostart.c333 struct lxc_list *it, *next; local
336 lxc_list_for_each_safe(it, c_groups_list, next) {
409 * these next two checks don't need to free them
/lxc/src/lxc/cgroups/
H A Dcgfs.c109 struct cgroup_process_info *next; member in struct:cgroup_process_info
895 for (info_ptr = base_info; info_ptr; info_ptr = info_ptr->next) {
935 * loop is ended the next time around
948 for (j = 0, info_ptr = base_info; j < i && info_ptr; info_ptr = info_ptr->next, j++) {
985 for (i = 0, info_ptr = base_info; info_ptr; info_ptr = info_ptr->next, i++) {
1088 for (i = 0, info_ptr = base_info; info_ptr; info_ptr = info_ptr->next, i++) {
1127 for (info_ptr = base_info; info_ptr; info_ptr = info_ptr->next) {
1191 cptr = &entry->next;
1214 for (info_ptr = info; info_ptr; info_ptr = info_ptr->next) {
1250 struct cgroup_process_info *next; local
1265 struct cgroup_process_info *next; local
2008 struct lxc_list *iterator, *sorted_cgroup_settings, *next; local
[all...]
H A Dcgfsng.c1240 goto next;
1244 goto next;
1247 next:
1348 * Start with cgroup_pattern; next cgroup_pattern-1, -2, ..., -999
1698 goto next;
1701 goto next;
1704 next:
1948 struct lxc_list *iterator, *sorted_cgroup_settings, *next; local
1982 lxc_list_for_each_safe(iterator, sorted_cgroup_settings, next) {
H A Dcgmanager.c662 goto next;
674 next:
1479 struct lxc_list *iterator, *sorted_cgroup_settings, *next; local
1535 lxc_list_for_each_safe(iterator, sorted_cgroup_settings, next) {

Completed in 60 milliseconds