HomeSort by relevance Sort by last modified time
    Searched refs:READ (Results 176 - 200 of 407) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ConversationMessageData.java 734 + DatabaseHelper.MESSAGES_TABLE + '.' + MessageColumns.READ
735 + " as " + ConversationMessageViewColumns.READ + ", "
    [all...]
  /packages/services/Mms/src/com/android/mms/service/
MmsService.java 77 // Maximum time to spend waiting to read data from a content provider before failing with error.
224 long timestampMillis, boolean seen, boolean read) {
227 return importSms(address, type, text, timestampMillis, seen, read, callingPkg);
232 String messageId, long timestampSecs, boolean seen, boolean read) {
235 return importMms(contentUri, messageId, timestampSecs, seen, read, callingPkg);
484 boolean seen, boolean read, String creator) {
503 values.put(Telephony.Sms.READ, read ? 1 : 0);
523 boolean seen, boolean read, String creator) {
570 values.put(Telephony.Mms.READ, seen ? 1 : 0)
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
90 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
109 private static final String READ = "READ";
128 * READ 335c4c6028171cfddfbaae1a9c313c52
129 * READ 3400330d1dfc7f3f7f4b8d4d803dfcf6
143 * and may be read. A publish line is followed by the lengths of each of
145 * o READ lines track accesses for LRU.
199 while ((count = reader.read(buffer)) != -1)
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
90 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
109 private static final String READ = "READ";
128 * READ 335c4c6028171cfddfbaae1a9c313c52
129 * READ 3400330d1dfc7f3f7f4b8d4d803dfcf6
143 * and may be read. A publish line is followed by the lengths of each of
145 * o READ lines track accesses for LRU.
199 while ((count = reader.read(buffer)) != -1)
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
90 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
109 private static final String READ = "READ";
128 * READ 335c4c6028171cfddfbaae1a9c313c52
129 * READ 3400330d1dfc7f3f7f4b8d4d803dfcf6
143 * and may be read. A publish line is followed by the lengths of each of
145 * o READ lines track accesses for LRU.
199 while ((count = reader.read(buffer)) != -1)
    [all...]
  /external/libbrillo/brillo/streams/
file_stream.cc 41 ssize_t Read(void* buf, size_t nbyte) override {
42 return HANDLE_EINTR(read(fd_, buf, nbyte));
176 cb.Run(Stream::AccessMode::READ);
196 // Stream callbacks to be called when read and/or write operations can be
201 // MessageLoop tasks monitoring read/write operations on the file descriptor.
215 case AccessMode::READ:
306 access_mode = AccessMode::READ;
450 ssize_t read = fd_interface_->Read(buffer, size_to_read);
451 if (read < 0)
    [all...]
stream.cc 40 // If we can read some data right away non-blocking we should still run the
77 if (!WaitForDataBlocking(AccessMode::READ, base::TimeDelta::Max(), nullptr,
113 // If we can read some data right away non-blocking we should still run the
207 size_t read = 0; local
209 if (!ReadNonBlocking(buffer, size_to_read, &read, &eos, error))
212 if (read > 0 || eos) {
217 success_callback, read, eos));
220 success_callback.Run(read, eos);
226 AccessMode::READ,
251 // Just reschedule the read operation but don't need to run the callback fro
    [all...]
input_stream_set_unittest.cc 102 size_t read = 0; local
110 EXPECT_TRUE(stream_->ReadNonBlocking(IntToPtr(1000), 100, &read, &eos,
112 EXPECT_EQ(10, read);
121 EXPECT_TRUE(stream_->ReadNonBlocking(IntToPtr(1000), 100, &read, &eos,
123 EXPECT_EQ(100, read);
128 EXPECT_TRUE(stream_->ReadNonBlocking(IntToPtr(1000), 100, &read, &eos,
130 EXPECT_EQ(0, read);
135 size_t read = 0; local
142 EXPECT_TRUE(stream_->ReadBlocking(IntToPtr(1000), 100, &read, nullptr));
143 EXPECT_EQ(10, read);
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
UnixAsynchronousSocketChannelImpl.java 57 private static enum OpType { CONNECT, READ, WRITE };
83 // pending read (updateLock)
175 // invoke to finish read and/or write operations
261 if (task.getContext() == OpType.READ)
397 // -- read --
414 n = (int)IOUtil.read(fd, readBuffers, nd);
416 n = IOUtil.read(fd, readBuffer, -1, nd);
431 // allow another read to be initiated
496 * Initiates a read or scattering read operatio
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
buildtools.py 45 READ = 1
84 # Read the source and compile it
88 text = fp.read()
166 data = tmpl.read()
189 input = Res.FSOpenResourceFile(rsrcname, RESOURCE_FORK_NAME, READ)
214 input = Res.FSOpenResourceFile(template, RESOURCE_FORK_NAME, READ)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 45 READ = 1
84 # Read the source and compile it
88 text = fp.read()
166 data = tmpl.read()
189 input = Res.FSOpenResourceFile(rsrcname, RESOURCE_FORK_NAME, READ)
214 input = Res.FSOpenResourceFile(template, RESOURCE_FORK_NAME, READ)
  /build/kati/
func.cc 718 ssize_t r = HANDLE_EINTR(read(fd, &out[0], len));
720 ev->Error("*** read failed.");
733 cr->op = CommandOp::READ;
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/MMCHSDxe/
MMCHS.c 146 //Read status of command response
535 //Read CID data.
548 //Read RCA
617 // We could read SCR register, but SD Card Phys spec stats any SD Card shall
663 //Read Status.
667 //Check if Buffer read ready (BRR) bit is set?
673 //Read block worth of data.
705 //Read Status.
778 Dma4.ReadPriority = 0; // DMA4_CCRi[6] Low priority read
784 if (OperationType == READ) {
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/MMCHSDxe/
MMCHS.c 146 //Read status of command response
535 //Read CID data.
548 //Read RCA
617 // We could read SCR register, but SD Card Phys spec stats any SD Card shall
663 //Read Status.
667 //Check if Buffer read ready (BRR) bit is set?
673 //Read block worth of data.
705 //Read Status.
778 Dma4.ReadPriority = 0; // DMA4_CCRi[6] Low priority read
784 if (OperationType == READ) {
    [all...]
  /external/libbrillo/brillo/http/
http_form_data.cc 162 StreamPtr stream = FileStream::Open(file_path, Stream::AccessMode::READ,
http_form_data_unittest.cc 50 StreamPtr stream = FileStream::Open(file_name, Stream::AccessMode::READ,
  /external/ltp/testcases/kernel/ipc/ipc_stress/
shmem_test_02.c 36 | - obtain read lock on data |
122 enum { READ, WRITE }; /* Pipe read & write end indices */
123 enum { PARENT, CHILD }; /* Pipe read & write end indices */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 75 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
78 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
99 private static final String READ = "READ";
115 * READ 335c4c6028171cfddfbaae1a9c313c52
116 * READ 3400330d1dfc7f3f7f4b8d4d803dfcf6
130 * and may be read. A publish line is followed by the lengths of each of
132 * o READ lines track accesses for LRU.
155 // Must be read and written when synchronized on 'this'
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/findUsages/
SmaliUsageTypeProvider.java 169 return UsageType.READ;
  /libcore/ojluni/src/main/java/java/nio/file/spi/
FileSystemProvider.java 346 * Opens a file, returning an input stream to read from the file. This
371 * method is invoked to check read access to the file.
428 if (opt == StandardOpenOption.READ)
429 throw new IllegalArgumentException("READ not allowed");
467 * read access if the file is opened for reading. The {@link
515 * read access if the file is opened for reading. The {@link
557 * method is invoked to check read access to the path if the file is
590 * method is invoked to check read access to the directory.
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixChannelFactory.java 57 boolean read; field in class:UnixChannelFactory.Flags
73 case READ : flags.read = true; break;
122 if (!flags.read && !flags.write) {
126 flags.read = true;
131 if (flags.read && flags.append)
132 throw new IllegalArgumentException("READ + APPEND not allowed");
137 return FileChannelImpl.open(fdObj, path.toString(), flags.read, flags.write, flags.append, null);
163 if (!flags.read && !flags.write) {
164 flags.read = true
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProvider.java     [all...]
  /packages/services/Car/service/src/com/android/car/hal/
SensorHalService.java 109 && ((halProperty.access & VehiclePropertyAccess.READ) != 0)) {
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
CarEmulator.java 110 .setAccess(VehiclePropertyAccess.READ)
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
MockedCarTestBase.java 157 .setAccess(VehiclePropertyAccess.READ);

Completed in 2208 milliseconds

1 2 3 4 5 6 78 91011>>