Searched refs:read (Results 151 - 175 of 251) sorted by relevance

1234567891011

/packages/apps/Dialer/java/com/android/dialer/persistentlog/
H A DPersistentLogFileHandler.java44 * Handles serialization of byte arrays and read/write them to multiple rotating files. If a logText
192 inputStream.read(data);
/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
H A DHttpFetcher.java88 while ((bytesRead = is.read(buffer)) != -1) {
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
H A DImapResponseParser.java102 int next = mIn.read();
164 // However, we don't want to read too much, because then it may get into an email message.
191 * Read bytes until we find {@code end}, and return all as string. The {@code end} will be read
/packages/apps/DocumentsUI/src/com/android/documentsui/archives/
H A DReadableArchive.java200 while ((bytes = inputStream.read(buffer)) != -1) {
H A DWriteableArchive.java245 while ((bytes = inputStream.read(buffer)) != -1) {
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/
H A DImapResponseParser.java129 int next = mIn.read();
194 // However, we don't want to read too much, because then it may get into an email message.
222 * The {@code end} will be read (rather than peeked) and won't be included in the result.
/packages/apps/Email/provider_src/com/android/email/mail/transport/
H A DMailTransport.java234 * @return the read timeout value in milliseconds
243 * @param timeoutMilliseconds the read timeout value if greater than {@code 0}, or
314 while ((d = in.read()) != -1) {
324 LogUtils.d(Logging.LOG_TAG, "End of stream reached while trying to read line.");
/packages/apps/Email/tests/src/com/android/email/mail/transport/
H A DMockTransport.java250 * Logs the read text if DEBUG_LOG_STREAMS is true.
257 // if there's nothing to read, see if we can find a null-pattern
341 public int read() throws IOException { method in class:MockTransport.MockInputStream
/packages/apps/Gallery2/jni_jpegstream/src/
H A Djpeg_hook.cpp91 int32_t bytesRead = src->inStream->read(src->inStream->getBufferSize(), 0);
101 LOGW("read 0 bytes from InputStream.");
H A Djpeg_reader.cpp117 int32_t JpegReader::read(int8_t* bytes, int32_t offset, int32_t count) { function in class:JpegReader
134 // read partial scanline and return
144 // read full scanline
154 // Scanline buffer exhausted, read next scanline
156 // Always read full scanline, no IO suspension
/packages/apps/Launcher3/src/com/android/launcher3/testing/
H A DMemoryDumpActivity.java70 while ( 0 < (len = is.read(buf, 0, BUFSIZ)) ) {
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/terms/
H A DTermsProvider.java140 String htmlContent = mTextFileReader.read(
144 ProvisionLogger.loge("Failed to read disclaimer", e);
/packages/apps/Music/tests/src/com/android/music/functional/
H A DTestSongs.java93 while ((len = in.read(buf)) > 0) {
/packages/apps/Settings/src/com/android/settings/datausage/
H A DDataUsageMeteredSettings.java68 mPolicyEditor.read();
/packages/apps/TV/tests/common/src/com/android/tv/testing/
H A DChannelUtils.java143 while ((len = is.read(buffer)) != -1) {
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DAttachmentUtils.java222 int len = inputStream.read(bytes);
/packages/apps/UnifiedEmail/src/com/android/mail/widget/
H A DWidgetConversationListItemViewBuilder.java149 final boolean isUnread = !conversation.read;
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarDebugActivity.java131 int len = is.read(buf);
140 Log.i(TAG, "bytes read " + totalLen);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DMetadataEntryParserTest.java238 len = input.read(data);
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DAbstractDownloadProviderFunctionalTest.java269 int length = reader.read(buffer);
270 assertTrue("Failed to read anything from input stream", length > -1);
/packages/services/Car/obd2-lib/src/com/android/car/obd2/
H A DObd2Connection.java132 int value = in.read();
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DTestRttActivity.java94 // inner read loop
97 receivedText = rttCall.read();
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java844 int flagRead = -1; // Message status read/unread
1214 int read = c.getInt(c.getColumnIndex(Sms.READ));
1216 Msg msg = new Msg(id, type, threadId, read);
1238 int read = c.getInt(c.getColumnIndex(Mms.READ));
1240 Msg msg = new Msg(id, type, threadId, read);
1349 int read = c.getInt(c.getColumnIndex(Sms.READ));
1358 msg = new Msg(id, type, threadId, read);
1448 if(read != msg.flagRead) {
1450 msg.flagRead = read;
1502 int read
[all...]
/packages/services/BuiltInPrintService/jni/lib/
H A Dlib_wprint.c1387 unsigned int read, write; local
1388 for (read = write = 0; read < printer_cap->numSupportedMediaSizes; read++) {
1389 if (is_supported(printer_cap->supportedMediaSizes[read])) {
1391 printer_cap->supportedMediaSizes[read];
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppObexClientSession.java121 int got = is.read(buffer, done, size - done);
450 readLength = a.read(buffer, 0, outputBufferSize);

Completed in 744 milliseconds

1234567891011