Searched refs:elist (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Tools/scripts/ |
D | objgraph.py | 93 elist = file2undef[filename] 94 elist.sort() 95 for ext in elist: 134 elist = undefs.keys() 135 elist.sort() 136 for ext in elist:
|
/external/python/cpython3/Tools/scripts/ |
D | objgraph.py | 92 elist = file2undef[filename] 93 elist.sort() 94 for ext in elist: 132 elist = sorted(undefs.keys()) 133 for ext in elist:
|
/external/tinyalsa/ |
D | mixer.c | 101 struct snd_ctl_elem_list elist; in mixer_open() local 113 memset(&elist, 0, sizeof(elist)); in mixer_open() 114 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0) in mixer_open() 121 mixer->ctl = calloc(elist.count, sizeof(struct mixer_ctl)); in mixer_open() 122 mixer->elem_info = calloc(elist.count, sizeof(struct snd_ctl_elem_info)); in mixer_open() 129 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id)); in mixer_open() 133 mixer->count = elist.count; in mixer_open() 135 elist.space = mixer->count; in mixer_open() 136 elist.pids = eid; in mixer_open() 137 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0) in mixer_open()
|
/external/python/cpython2/Modules/ |
D | selectmodule.c | 1003 PyObject *elist = NULL, *etuple = NULL; in pyepoll_poll() local 1052 elist = PyList_New(nfds); in pyepoll_poll() 1053 if (elist == NULL) { in pyepoll_poll() 1060 Py_CLEAR(elist); in pyepoll_poll() 1063 PyList_SET_ITEM(elist, i, etuple); in pyepoll_poll() 1068 return elist; in pyepoll_poll()
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 1505 PyObject *elist = NULL, *etuple = NULL; in pyepoll_poll() local 1588 elist = PyList_New(nfds); in pyepoll_poll() 1589 if (elist == NULL) { in pyepoll_poll() 1596 Py_CLEAR(elist); in pyepoll_poll() 1599 PyList_SET_ITEM(elist, i, etuple); in pyepoll_poll() 1604 return elist; in pyepoll_poll()
|
/external/python/cpython2/Lib/plat-mac/ |
D | gensuitemodule.py | 1028 elist = [] 1061 elist.append((name, ename)) 1064 elist.sort() 1072 for n, fulln in elist:
|
/external/selinux/sandbox/ |
D | sandbox | 104 except shutil.Error as elist: 105 for e in elist.message:
|