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

1 2 3

  /external/syslinux/core/fs/ntfs/
runlist.h 36 static inline bool runlist_is_empty(struct runlist *rlist)
38 return !rlist;
43 struct runlist *rlist; local
45 rlist = malloc(sizeof *rlist);
46 if (!rlist)
49 rlist->next = NULL;
51 return rlist;
54 static inline void runlist_append(struct runlist **rlist,
61 if (runlist_is_empty(*rlist)) {
    [all...]
ntfs.c 681 NTFS_PVT(inode)->data.non_resident.rlist = NULL;
695 runlist_append(&NTFS_PVT(inode)->data.non_resident.rlist,
702 if (runlist_is_empty(NTFS_PVT(inode)->data.non_resident.rlist)) {
918 struct runlist *rlist; local
930 rlist = NTFS_PVT(inode)->data.non_resident.rlist;
933 if (runlist_is_empty(rlist))
936 ret = runlist_remove(&rlist);
946 NTFS_PVT(inode)->data.non_resident.rlist = rlist;
    [all...]
ntfs.h 93 struct runlist *rlist; member in struct:ntfs_inode::__anon31994::__anon31996
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
FileHook.py 49 self.rlist = []
63 self.rlist.append(_PathInfo(tmp, path))
72 self.rlist.append(_PathInfo(_CHMOD, path, oldmode))
73 self.rlist.append(_PathInfo(_RMFILE, path))
85 self.rlist.append(_PathInfo(_CHMOD, path, oldmode))
98 self.rlist.append(_PathInfo(_CHMOD, path, oldmode))
105 index = len(self.rlist) - 1
107 item = self.rlist[index]
  /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/python/chcat/
chcat 336 rlist = raw.split(":")[3:]
338 if isSensitivity(rlist[0]) == 0:
340 for i in expandCats(rlist):
343 tlist.append(rlist[0])
344 for i in expandCats(rlist[1:]):
  /external/autotest/client/common_lib/cros/
arc_util.py 117 rlist, _, _ = select.select([pipe], [], [], remaining_time)
118 if pipe not in rlist:
  /external/v8/src/arm/
disasm-arm.cc 326 // 'rlist: register list for load and store multiple instructions
327 DCHECK(STRING_STARTS_WITH(format, "rlist"));
328 int rlist = instr->RlistValue(); local
332 while (rlist != 0) {
333 if ((rlist & 1) != 0) {
335 if ((rlist >> 1) != 0) {
340 rlist >>= 1;
    [all...]
  /external/e2fsprogs/debugfs/
do_journal.c 539 blk64_t *blist = NULL, *rlist = NULL; local
561 err = read_list(optarg, &rlist, &rn);
595 rlist, rn, fp);
604 if (rlist)
605 free(rlist);
  /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...]

Completed in 1135 milliseconds

1 2 3