/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppUtility.java | 6 * Redistribution and use in source and binary forms, with or without 12 * - Redistributions in binary form must reproduce the above copyright notice, 13 * this list of conditions and the following disclaimer in the documentation 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 141 * Organize Array list for transfers in one batch 166 if (V) Log.d(TAG, "Uri in this batch: " + path.toString()); 190 Intent in = new Intent(context, BluetoothOppBtErrorActivity.class); local 191 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK) 232 Intent in = new Intent(context, BluetoothOppBtErrorActivity.class); local [all...] |
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
BitmapWorkerTask.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 152 private Bitmap decodeBitmap(InputStream in, BitmapWorkerOptions options) 157 bufferedStream = new CachedInputStream(in); 189 // bitmap. This behavior no longer will happen in lmp-mr1. 226 InputStream in = new BufferedInputStream(connection.getInputStream()); local 227 return decodeBitmap(in, options); 252 * caching Bitmap in Resources. So that caller can maintain a different caching 268 Log.e(TAG, "Couldn't get resource " + r.resourceName + " in resources of " 283 // Some drawables have an intrinsic width and height of -1. In that cas [all...] |
DrawableLoader.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 177 private Drawable decodeBitmap(InputStream in, BitmapWorkerOptions options) 182 bufferedStream = new CachedInputStream(in); 276 InputStream in = connection.getInputStream(); local 277 return decodeBitmap(in, options); 312 * caching Bitmap in Resources. So that caller can maintain a different caching 328 Log.e(TAG, "Couldn't get resource " + r.resourceName + " in resources of "
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
PickRawContactLoader.java | 51 ContactsContract.Data.RAW_CONTACT_ID + " IN ("; 209 private RawContactsMetadata(Parcel in) { 210 contactId = in.readLong(); 211 isUserProfile = in.readInt() == 1; 212 showReadOnly = in.readInt() == 1; 213 in.readTypedList(rawContacts, RawContact.CREATOR); 231 * Returns the index of the first writable account in this contact or -1 if none exist. 284 private RawContact(Parcel in) { 285 id = in.readLong(); 286 photoId = in.readLong() [all...] |
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/ |
Address.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 36 * name <address> address Name and comment part should be MIME/base64 encoded in header if 41 /** Address part, in the form local_part@domain_part. No surrounding angle brackets. */ 78 // delimiters are chars that do not appear in an email address, used by fromHeader 185 * This method is used to check that all the addresses that the user entered in a list (e.g. To:) 206 * Parse a comma-delimited list of addresses in RFC822 format and return an array of Address 209 * @param addressList Address list in comma-delimited string. 244 // while the domain part in case-insesitive. 281 * not modified in any way except to add the double quote character to start and end if it's no [all...] |
MailTransport.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 84 * configured identically, but not opened or connected in any way. 228 * but is not in the public API. 253 // we should be reporting the bad name in the certificate. Unfortunately this is buried 254 // in the verifier code and is not available in the verifier API, and extracting the 322 * char(s) are not included in the result. 326 InputStream in = getInputStream(); local 328 while ((d = in.read()) != -1) [all...] |
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/ |
ImapResponseParser.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 32 /** Literal larger than this will be stored in temp file. */ 47 * We store all {@link ImapResponse} in it. {@link #destroyResponses()} must be called from time 53 * Exception thrown when we receive BYE. It derives from IOException, so it'll be treated in the 65 public ImapResponseParser(InputStream in) { 66 this(in, LITERAL_KEEP_IN_MEMORY_THRESHOLD); 70 /* package for test */ ImapResponseParser(InputStream in, int literalKeepInMemoryThreshold) { 71 mIn = new PeekableInputStream(in); 96 * Read and return one byte from {@link #mIn}, and put it in {@link #mDiscourseLogger} 417 FixedLengthInputStream in = new FixedLengthInputStream(mIn, size); local [all...] |
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/ |
ImapResponseParser.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 41 * Literal larger than this will be stored in temp file. 64 * We store all {@link ImapResponse} in it. {@link #destroyResponses()} must be called from 71 * in the same way EOF does. 83 public ImapResponseParser(InputStream in, DiscourseLogger discourseLogger) { 84 this(in, discourseLogger, LITERAL_KEEP_IN_MEMORY_THRESHOLD); 90 /* package for test */ ImapResponseParser(InputStream in, DiscourseLogger discourseLogger, 93 in = new LoggingInputStream(in); 446 FixedLengthInputStream in = new FixedLengthInputStream(mIn, size); local [all...] |
/packages/apps/Email/provider_src/com/android/email/mail/transport/ |
MailTransport.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 75 * and {@link #setHost(String)} were invoked), but not opened or connected in any way. 196 * service but is not in the public API. 223 // we should be reporting the bad name in the certificate. Unfortunately this is buried 224 // in the verifier code and is not available in the verifier API, and extracting the 234 * @return the read timeout value in milliseconds 308 * delimiter char(s) are not included in the result. 312 InputStream in = getInputStream() local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterRS.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 45 float scaleFactor, int quality, Allocation in) {} 46 protected void bindScriptValues(Allocation in) {} 70 public void apply(Allocation in, Allocation out) { 75 in.getType().getX(), in.getType().getY()); 86 getEnvironment().getQuality(), in); local 90 bindScriptValues(in); 91 run(in, out) [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
ProcStatsEntry.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 92 public ProcStatsEntry(Parcel in) { 93 mPackage = in.readString(); 94 mUid = in.readInt(); 95 mName = in.readString(); 96 in.readStringList(mPackages); 97 mBgDuration = in.readLong(); 98 mAvgBgMem = in.readLong(); 99 mMaxBgMem = in.readLong() [all...] |
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/ |
Address.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 43 * Name and comment part should be MIME/base64 encoded in header if necessary. 49 * Address part, in the form local_part@domain_part. No surrounding angle brackets. 88 // delimiters are chars that do not appear in an email address, used by fromHeader 198 * entered in a list (e.g. To:) are valid, so that none is dropped. 218 * Parse a comma-delimited list of addresses in RFC822 format and return an 221 * @param addressList Address list in comma-delimited string. 259 // while the domain part in case-insesitive. 297 * not modified in any way except to add the double quote character to start and end if it's no [all...] |
/packages/services/Car/obd2-lib/src/com/android/car/obd2/ |
Obd2Connection.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 120 InputStream in = Objects.requireNonNull(mConnection.getInputStream()); local 132 int value = in.read();
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebtables.h | 47 /* nr of rules in the table */ 64 /* nr of rules in the table */ 169 /* the physical in-dev */ 170 char in[IFNAMSIZ]; member in struct:ebt_entry 171 /* the logical in-dev */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebtables.h | 45 /* nr of rules in the table */ 61 /* nr of rules in the table */ 162 /* the physical in-dev */ 163 char in[IFNAMSIZ]; member in struct:ebt_entry 164 /* the logical in-dev */
|
/prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-21/arch-x86_64/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-23/arch-arm/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-23/arch-mips/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|
/prebuilts/ndk/r10/platforms/android-23/arch-mips64/usr/include/linux/netfilter_bridge/ |
ebtables.h | 137 char in[IFNAMSIZ]; member in struct:ebt_entry
|