HomeSort by relevance Sort by last modified time
    Searched refs:rlist (Results 1 - 25 of 42) sorted by null

1 2

  /external/avahi/avahi-common/
rlist.c 26 #include "rlist.h"
37 AVAHI_LLIST_PREPEND(AvahiRList, rlist, r, n);
47 AVAHI_LLIST_REMOVE(AvahiRList, rlist, r, n);
58 AVAHI_LLIST_REMOVE(AvahiRList, rlist, r, n);
rlist.h 23 /** \file rlist.h A simple linked list implementation */
34 AVAHI_LLIST_FIELDS(AvahiRList, rlist);
Android.mk 16 rlist.c \
  /external/autotest/client/deps/lansim/src/py/
simulator.py 228 # * rlist: is possible to read from the interface or another
235 rlist = iface_fd, self._pipe_rd
241 rlist, wlist, xlist = select.select(rlist, wlist, xlist, timeout)
243 if self._pipe_rd in rlist:
259 if iface_fd in rlist:
simulator_unittest.py 45 rlist, wlist, xlist = select.select([self._sock], [], [], 1.)
46 if self._sock in rlist:
  /external/autotest/client/cros/audio/
cmd_utils.py 67 rlist = [l._pipe[0] for l in self._loggers]
68 rlist.append(self._pipe[0])
69 for r in select.select(rlist, [], [])[0]:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_file_eintr.py 114 rlist = []
120 while not rlist:
121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
test_file2k.py 658 rlist = []
664 while not rlist:
665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_file_eintr.py 114 rlist = []
120 while not rlist:
121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
test_file2k.py 658 rlist = []
664 while not rlist:
665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 114 rlist = []
120 while not rlist:
121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
test_file2k.py 658 rlist = []
664 while not rlist:
665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 114 rlist = []
120 while not rlist:
121 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
test_file2k.py 658 rlist = []
664 while not rlist:
665 rlist, _, _ = select.select([reader_process.stderr], (), (), 0.05)
  /external/selinux/policycoreutils/scripts/
chcat 326 rlist = raw.split(":")[3:]
328 if isSensitivity(rlist[0]) == 0:
330 for i in expandCats(rlist):
333 tlist.append(rlist[0])
334 for i in expandCats(rlist[1:]):
  /external/chromium-trace/catapult/third_party/Paste/paste/
cgiapp.py 222 rlist, wlist, xlist = select.select(read_set, write_set, [])
240 if proc.stdout in rlist:
249 if proc.stderr in rlist:
  /external/avahi/tests/
c-plus-plus-test.cc 36 #include <avahi-common/rlist.h>
  /external/v8/src/arm/
disasm-arm.cc 324 // 'rlist: register list for load and store multiple instructions
325 DCHECK(STRING_STARTS_WITH(format, "rlist"));
326 int rlist = instr->RlistValue(); local
330 while (rlist != 0) {
331 if ((rlist & 1) != 0) {
333 if ((rlist >> 1) != 0) {
338 rlist >>= 1;
    [all...]
  /external/toybox/lib/
lib.c 236 struct string_list *rlist = NULL, **prlist=&rlist; local
273 return rlist;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py     [all...]
  /external/libxml2/python/
generator.py     [all...]
  /external/selinux/policycoreutils/semanage/
seobject.py 871 (rc, rlist) = semanage_user_get_roles(self.sh, u)
873 oldserole = " ".join(rlist)
884 for r in rlist:
888 if r not in rlist:
932 (rc, rlist) = semanage_user_get_roles(self.sh, u)
933 oldserole = ",".join(rlist)
    [all...]

Completed in 679 milliseconds

1 2