Home
last modified time | relevance | path

Searched refs:elist (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/md/
H A Ddm-uevent.c34 struct list_head elist; member
52 INIT_LIST_HEAD(&event->elist); in dm_uevent_alloc()
126 list_for_each_entry_safe(event, next, events, elist) { in dm_send_uevents()
127 list_del_init(&event->elist); in dm_send_uevents()
188 dm_uevent_add(md, &event->elist); in dm_path_uevent()
H A Ddm.c2851 void dm_uevent_add(struct mapped_device *md, struct list_head *elist) in dm_uevent_add() argument
2856 list_add(elist, &md->uevent_list); in dm_uevent_add()
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86Configure.c400 const char **elist, **el; in configureModuleSection() local
404 elist = LoaderListDir("extensions", NULL); in configureModuleSection()
405 if (elist) { in configureModuleSection()
406 for (el = elist; *el; el++) { in configureModuleSection()
415 free(elist); in configureModuleSection()
/OK3568_Linux_fs/kernel/include/linux/
H A Dposix-timers.h74 struct list_head elist; member
H A Ddevice-mapper.h450 void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
/OK3568_Linux_fs/kernel/kernel/time/
H A Dposix-cpu-timers.c786 list_add_tail(&ctmr->elist, firing); in collect_timerqueue()
1281 list_for_each_entry_safe(timer, next, &firing, it.cpu.elist) { in handle_posix_cpu_timers()
1292 list_del_init(&timer->it.cpu.elist); in handle_posix_cpu_timers()
/OK3568_Linux_fs/kernel/tools/power/pm-graph/
H A Dsleepgraph.py6089 elist = dict()
6092 if err[0] not in elist:
6093 elist[err[0]] = 0
6094 elist[err[0]] += 1
6095 for i in elist:
6096 ilist.append('%sx%d' % (i, elist[i]) if elist[i] > 1 else i)