Searched refs:read (Results 226 - 250 of 251) sorted by relevance

1234567891011

/packages/experimental/StrictModeTest/src/com/android/strictmodetest/
H A DStrictModeActivity.java438 raf.read(buf);
440 Log.e(TAG, "File read failed", e);
/packages/providers/CallLogProvider/src/com/android/calllogbackup/
H A DCallLogBackupAgent.java232 // CallLogProvider has special locks in place for sychronizing when to read. Using the APIs
343 dataInput.read(buffer);
478 * Allows OEMs to read their own proprietary data when doing a call log restore. It is important
480 * attempting to read the data or else you may risk reading invalid data.
485 // OEMs that want to read proprietary data from a call log restore should do so here.
496 // Check against this version as we read data.
/packages/services/Mms/src/com/android/mms/service/
H A DMmsHttpClient.java207 while ((count = in.read(buf)) > 0) {
/packages/services/Telephony/testapps/EmbmsServiceTestApp/src/com/android/phone/testapps/embmsmw/
H A DEmbmsSampleDownloadService.java363 image.read(imageBuffer);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java1022 if (!conversation.read) {
1049 if (!message.read &&
1429 if (!conversation.read) {
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationViewFragment.java778 if (msg.starred || !msg.read || messageCursor.isLast()) {
790 // save off "read" state from the cursor
791 // later, the view may not match the cursor (e.g. conversation marked read on open)
794 mViewState.setReadState(msg, msg.read && !prevState.isUnread(msg));
1547 * read/unread state change 3. deleted message, either regular or draft
1726 mViewState.setReadState(msg, false /* read */);
/packages/services/Telecomm/src/com/android/server/telecom/
H A DPhoneAccountRegistrar.java177 read();
657 // !!! IMPORTANT !!! It is important that we do not read the enabled state that the
1177 private void read() { method in class:PhoneAccountRegistrar
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapServer.java40 * The RIL replies are read in the SapRilReceiver, and passed to the SapServer message handler
302 * all read from the RFCOMM in-socket. This thread also handle writes to the RIL socket.
324 int requestType = mRfcommIn.read();
325 if (VERBOSE) Log.i(TAG, "RFCOMM message read...");
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContactLoader.java544 while ((size = inputStream.read(buffer)) != -1) {
/packages/apps/Contacts/src/com/android/contacts/vcard/
H A DImportVCardActivity.java227 // Thus we have to once copy the content of Uri into local storage, and read
230 // We may be able to read content of each vCard file during copying them
310 * app local storage, as we cannot guarantee other types of Uris can be read
466 while (inputChannel.read(buffer) != -1) {
/packages/apps/Dialer/java/com/android/contacts/common/
H A DContactPhotoManagerImpl.java1244 while ((size = is.read(mBuffer)) != -1) {
/packages/apps/Dialer/java/com/android/contacts/common/model/
H A DContactLoader.java346 while ((size = inputStream.read(buffer)) != -1) {
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
H A DImapFolder.java444 while (-1 != (n = in.read(buffer))) {
720 // Assume the folder is opened read-write; unless we are notified otherwise
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
H A DCopyJob.java617 while ((len = in.read(buffer)) != -1) {
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
H A DStubProvider.java454 bytesRead = inputStream.read(buffer, 0, bytesToRead);
/packages/apps/Messaging/src/com/android/messaging/util/
H A DImageUtils.java323 int value = inputStream.read(gifHeaderBytes, 0, 6);
395 // Orientation params of image as read from EXIF data
403 // Uri from which to read source image
525 // Cannot read image size
/packages/apps/Settings/src/com/android/settings/applications/
H A DRunningServiceDetails.java151 input.read(buffer);
154 Log.w(TAG, "Can't read service dump: " + comp, e);
/packages/apps/Terminal/jni/
H A Dcom_android_terminal_Terminal.cpp359 ALOGD("entering read() loop");
362 ssize_t bytes = ::read(mMasterFd, buffer, sizeof buffer);
364 ALOGD("read() returned %d bytes", bytes);
372 ALOGD("read() found EOF");
376 ALOGE("read() failed: %s", strerror(errno));
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadThread.java129 * Info object that should be treated as read-only. Any potentially mutated
131 * {@link #mInfoDelta}, it must not be read from {@link #mInfo}.
633 len = in.read(buffer);
/packages/apps/Contacts/src/com/android/contacts/
H A DContactPhotoManager.java1604 while ((size = is.read(mBuffer)) != -1) {
/packages/apps/Email/provider_src/com/android/email/mail/store/
H A DImapFolder.java808 while (-1 != (n = in.read(buffer))) {
1236 // Assume the folder is opened read-write; unless we are notified otherwise
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DMmsSmsDatabaseHelper.java75 " UPDATE threads SET read = " +
138 " UPDATE threads SET read = " +
692 // Delete obsolete delivery-report, read-report while deleting their
868 "read INTEGER DEFAULT 0," +
1592 is.read(data);
1639 // the "read" column for each row.
1642 int count = db.update("sms", contentValues, "read=1", null);
1645 count = db.update("pdu", contentValues, "read=1", null);
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java2061 // SQLite Views are read-only, so we need to deconstruct this
3813 // or the listeners will read the old data in the callback
3934 throw new FileNotFoundException("Unable to read entry for " + uri);
3957 // when opening read-only and we have an exact match.
4012 // read access is OK with the appropriate permission
4251 stream.read(compressed);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java9744 ch = inputStream.read();

Completed in 1774 milliseconds

1234567891011