Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/bytecode/
DExceptionsAttribute.java107 int[] elist = new int[n / 2 - 1]; in getExceptionIndexes() local
110 elist[k++] = ((blist[j] & 0xff) << 8) | (blist[j + 1] & 0xff); in getExceptionIndexes()
112 return elist; in getExceptionIndexes()
124 String[] elist = new String[n / 2 - 1]; in getExceptions()
128 elist[k++] = constPool.getClassInfo(index); in getExceptions()
131 return elist; in getExceptions()
137 public void setExceptionIndexes(int[] elist) { in setExceptionIndexes() argument
138 int n = elist.length; in setExceptionIndexes()
142 ByteArray.write16bit(elist[i], blist, i * 2 + 2); in setExceptionIndexes()
150 public void setExceptions(String[] elist) { in setExceptions() argument
[all …]
/external/python/cpython2/Tools/scripts/
Dobjgraph.py93 elist = file2undef[filename]
94 elist.sort()
95 for ext in elist:
134 elist = undefs.keys()
135 elist.sort()
136 for ext in elist:
/external/tinyalsa/
Dmixer.c95 struct snd_ctl_elem_list elist; in mixer_open() local
108 memset(&elist, 0, sizeof(elist)); in mixer_open()
109 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0) in mixer_open()
116 mixer->ctl = calloc(elist.count, sizeof(struct mixer_ctl)); in mixer_open()
117 mixer->elem_info = calloc(elist.count, sizeof(struct snd_ctl_elem_info)); in mixer_open()
124 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id)); in mixer_open()
128 mixer->count = elist.count; in mixer_open()
130 elist.space = mixer->count; in mixer_open()
131 elist.pids = eid; in mixer_open()
132 if (ioctl(fd, SNDRV_CTL_IOCTL_ELEM_LIST, &elist) < 0) in mixer_open()
/external/python/cpython2/Modules/
Dselectmodule.c992 PyObject *elist = NULL, *etuple = NULL; in pyepoll_poll() local
1041 elist = PyList_New(nfds); in pyepoll_poll()
1042 if (elist == NULL) { in pyepoll_poll()
1049 Py_CLEAR(elist); in pyepoll_poll()
1052 PyList_SET_ITEM(elist, i, etuple); in pyepoll_poll()
1057 return elist; in pyepoll_poll()
/external/ltp/tools/pounder21/test_scripts/
Dipmitool108 runtest sel elist
/external/python/cpython2/Lib/plat-mac/
Dgensuitemodule.py1028 elist = []
1061 elist.append((name, ename))
1064 elist.sort()
1072 for n, fulln in elist:
/external/selinux/sandbox/
Dsandbox104 except shutil.Error as elist:
105 for e in elist.message: