Home
last modified time | relevance | path

Searched refs:readable (Results 1 – 25 of 527) sorted by relevance

12345678910>>...22

/external/guava/guava/src/com/google/common/io/
DLineReader.java39 private final Readable readable; field in LineReader
55 public LineReader(Readable readable) { in LineReader() argument
56 this.readable = checkNotNull(readable); in LineReader()
57 this.reader = (readable instanceof Reader) ? (Reader) readable : null; in LineReader()
78 : readable.read(cbuf); in readLine()
DCharStreams.java137 Readable readable, LineProcessor<T> processor) throws IOException { in readLines() argument
138 checkNotNull(readable); in readLines()
141 LineReader lineReader = new LineReader(readable); in readLines()
265 static Reader asReader(final Readable readable) { in asReader() argument
266 checkNotNull(readable); in asReader()
267 if (readable instanceof Reader) { in asReader()
268 return (Reader) readable; in asReader()
278 return readable.read(target); in asReader()
283 if (readable instanceof Closeable) { in asReader()
284 ((Closeable) readable).close(); in asReader()
DCharSink.java148 public long writeFrom(Readable readable) throws IOException { in writeFrom() argument
149 checkNotNull(readable); in writeFrom()
154 long written = CharStreams.copy(readable, out); in writeFrom()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
DMethodProperty.java34 private final boolean readable; field in MethodProperty
42 this.readable = property.getReadMethod() != null; in MethodProperty()
69 return readable; in isReadable()
/external/valgrind/auxprogs/
Dnightly-build-summary438 my ($from, $to, $dump, $readable);
441 $dump = $readable = 0;
448 "readable" => \$readable
463 $readable = 1 if ($dump == 0 && $readable == 0);
473 write_readable_results(%dates) if ($readable);
/external/autotest/client/site_tests/security_HardlinkRestrictions/
Dsecurity_HardlinkRestrictions.py116 readable = tempfile.NamedTemporaryFile(prefix="readable-")
117 os.chmod(readable.name, 0444)
125 self._is_readable(readable.name, user)
126 self._is_writable(readable.name, user, expected=False)
142 self._can_hardlink(readable.name, evil, user, expected=False)
/external/ppp/pppd/plugins/rp-pppoe/
Ddiscovery.c347 fd_set readable; in waitForPADO() local
375 FD_ZERO(&readable); in waitForPADO()
376 FD_SET(conn->discoverySocket, &readable); in waitForPADO()
379 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv); in waitForPADO()
540 fd_set readable; in waitForPADS() local
560 FD_ZERO(&readable); in waitForPADS()
561 FD_SET(conn->discoverySocket, &readable); in waitForPADS()
564 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv); in waitForPADS()
Dpppoe-discovery.c511 fd_set readable; in waitForPADO() local
530 FD_ZERO(&readable); in waitForPADO()
531 FD_SET(conn->discoverySocket, &readable); in waitForPADO()
534 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv); in waitForPADO()
/external/autotest/client/site_tests/platform_Nvram/
Dcontrol8 PURPOSE = "Verify /dev/nvram exists and is readable."
10 Fail if /dev/nvram does not exist or not readable.
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DDiskLruCache.java308 entry.readable = true; in readJournalLine()
413 if (!entry.readable) { in get()
508 if (success && !entry.readable) { in completeEdit()
539 if (entry.readable | success) { in completeEdit()
540 entry.readable = true; in completeEdit()
712 this.written = (entry.readable) ? null : new boolean[valueCount]; in Editor()
724 if (!entry.readable) { in newInputStream()
749 if (!entry.readable) { in getFile()
814 private boolean readable; field in DiskLruCache.Entry
/external/webrtc/webrtc/common_audio/
Dwav_header.cc183 bool ReadWavHeader(ReadableWav* readable, in ReadWavHeader() argument
190 if (readable->Read(&header, kWavHeaderSize - sizeof(header.data)) != in ReadWavHeader()
201 if (readable->Read(&ext_size, sizeof(ext_size)) != sizeof(ext_size)) in ReadWavHeader()
206 if (readable->Read(&header.data, sizeof(header.data)) != sizeof(header.data)) in ReadWavHeader()
Dwav_file.cc53 ReadableWavFile readable(file_handle_); in WavReader() local
56 RTC_CHECK(ReadWavHeader(&readable, &num_channels_, &sample_rate_, &format, in WavReader()
Dwav_header.h55 bool ReadWavHeader(ReadableWav* readable,
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DDiskLruCache.java338 entry.readable = true; in readJournalLine()
427 if (entry == null || !entry.readable) return null; in get()
521 if (success && !entry.readable) { in completeEdit()
552 if (entry.readable | success) { in completeEdit()
553 entry.readable = true; in completeEdit()
834 this.written = (entry.readable) ? null : new boolean[valueCount]; in Editor()
846 if (!entry.readable) { in newSource()
869 if (!entry.readable) { in newSink()
936 private boolean readable;
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_common.c76 __DRIdrawable *const readable = radeon_get_readable(radeon); in radeonSetCliprects() local
78 if(drawable == NULL && readable == NULL) in radeonSetCliprects()
82 struct radeon_framebuffer *const read_rfb = readable->driverPrivate; in radeonSetCliprects()
91 if (drawable != readable) { in radeonSetCliprects()
92 if ((read_rfb->base.Width != readable->w) || in radeonSetCliprects()
93 (read_rfb->base.Height != readable->h)) { in radeonSetCliprects()
95 readable->w, readable->h); in radeonSetCliprects()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_common.c76 __DRIdrawable *const readable = radeon_get_readable(radeon); in radeonSetCliprects() local
78 if(drawable == NULL && readable == NULL) in radeonSetCliprects()
82 struct radeon_framebuffer *const read_rfb = readable->driverPrivate; in radeonSetCliprects()
91 if (drawable != readable) { in radeonSetCliprects()
92 if ((read_rfb->base.Width != readable->w) || in radeonSetCliprects()
93 (read_rfb->base.Height != readable->h)) { in radeonSetCliprects()
95 readable->w, readable->h); in radeonSetCliprects()
/external/llvm/bindings/ocaml/analysis/
Dllvm_analysis.mli17 human-readable validation report. See [llvm::verifyModule]. *)
22 human-readable validation report. See [llvm::verifyFunction]. *)
/external/mesa3d/docs/
DMESA_multithread_makecurrent.spec126 (4) What happens if the app binds a new drawable/readable with
129 The context becomes bound to the new drawable/readable, and
131 drawable/readable.
/external/guava/guava-tests/test/com/google/common/io/
DLineBufferTest.java115 Readable readable = asReader in readUsingReader() local
118 LineReader r = new LineReader(readable); in readUsingReader()
/external/selinux/policycoreutils/mcstrans/src/
Dmcstrans.service2 Description=Translates SELinux MCS/MLS labels to human readable form
/external/webrtc/webrtc/base/
Dasyncfile.h26 virtual bool readable() = 0;
/external/mesa3d/src/glx/apple/
DRELEASE_NOTES21 glXMakeContextCurrent should work with the readable drawable. The
23 should use the readable drawable if it's different than the rendering
/external/wpa_supplicant_8/hostapd/logwatch/
DREADME2 readable summary. This directory has a configuration file and a log
/external/dnsmasq/contrib/Suse/
Ddnsmasq-SuSE.patch9 /etc/ppp/resolv.conf which is not normally world readable.
/external/autotest/client/site_tests/login_UserPolicyKeys/
Dcontrol17 that the user policy key was stored at the expected location and is readable

12345678910>>...22