Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/packages/apps/Messaging/src/com/android/messaging/sms/
DDatabaseMessages.java210 private SmsMessage(final Parcel in) { in SmsMessage() argument
211 mUri = in.readString(); in SmsMessage()
212 mRowId = in.readLong(); in SmsMessage()
213 mTimestampInMillis = in.readLong(); in SmsMessage()
214 mTimestampSentInMillis = in.readLong(); in SmsMessage()
215 mType = in.readInt(); in SmsMessage()
216 mThreadId = in.readLong(); in SmsMessage()
217 mStatus = in.readInt(); in SmsMessage()
218 mRead = in.readInt() != 0; in SmsMessage()
219 mSeen = in.readInt() != 0; in SmsMessage()
[all …]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
DProvisioningParams.java68 public void readFromParcel(Parcel in) { in readFromParcel() argument
69 ssid = in.readString(); in readFromParcel()
70 hidden = in.readInt() == 1; in readFromParcel()
71 securityType = in.readString(); in readFromParcel()
72 password = in.readString(); in readFromParcel()
73 proxyHost = in.readString(); in readFromParcel()
74 proxyPort = in.readInt(); in readFromParcel()
75 proxyBypassHosts = in.readString(); in readFromParcel()
76 pacUrl = in.readString(); in readFromParcel()
113 public void readFromParcel(Parcel in) { in readFromParcel() argument
[all …]
/packages/apps/SpeechRecorder/src/com/android/speechrecorder/
DWaveHeader.java181 public int read(InputStream in) throws IOException { in read() argument
183 readId(in, "RIFF"); in read()
184 int numBytes = readInt(in) - 36; in read()
185 readId(in, "WAVE"); in read()
188 readId(in, "fmt "); in read()
189 if (16 != readInt(in)) throw new IOException("fmt chunk length not 16"); in read()
190 mFormat = readShort(in); in read()
191 mNumChannels = readShort(in); in read()
192 mSampleRate = readInt(in); in read()
193 int byteRate = readInt(in); in read()
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DMatrixUtils.h63 static void convert9to33(double out[3][3], double in[9]) { in convert9to33()
64 out[0][0] = in[0]; in convert9to33()
65 out[0][1] = in[1]; in convert9to33()
66 out[0][2] = in[2]; in convert9to33()
68 out[1][0] = in[3]; in convert9to33()
69 out[1][1] = in[4]; in convert9to33()
70 out[1][2] = in[5]; in convert9to33()
72 out[2][0] = in[6]; in convert9to33()
73 out[2][1] = in[7]; in convert9to33()
74 out[2][2] = in[8]; in convert9to33()
[all …]
DInterp.h51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; in ciCalc() local
54 tmpf[0] = in[0] * ciTable[off + 40]; in ciCalc()
55 tmpf[0] += in[1] * ciTable[off]; in ciCalc()
56 tmpf[0] += in[2] * ciTable[40 - off]; in ciCalc()
57 tmpf[0] += in[3] * ciTable[80 - off]; in ciCalc()
58 in += img->pitch; in ciCalc()
59 tmpf[1] = in[0] * ciTable[off + 40]; in ciCalc()
60 tmpf[1] += in[1] * ciTable[off]; in ciCalc()
61 tmpf[1] += in[2] * ciTable[40 - off]; in ciCalc()
62 tmpf[1] += in[3] * ciTable[80 - off]; in ciCalc()
[all …]
/packages/apps/Camera/jni/feature_mos/src/mosaic/
DMatrixUtils.h63 static void convert9to33(double out[3][3], double in[9]) { in convert9to33()
64 out[0][0] = in[0]; in convert9to33()
65 out[0][1] = in[1]; in convert9to33()
66 out[0][2] = in[2]; in convert9to33()
68 out[1][0] = in[3]; in convert9to33()
69 out[1][1] = in[4]; in convert9to33()
70 out[1][2] = in[5]; in convert9to33()
72 out[2][0] = in[6]; in convert9to33()
73 out[2][1] = in[7]; in convert9to33()
74 out[2][2] = in[8]; in convert9to33()
[all …]
DInterp.h51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; in ciCalc() local
54 tmpf[0] = in[0] * ciTable[off + 40]; in ciCalc()
55 tmpf[0] += in[1] * ciTable[off]; in ciCalc()
56 tmpf[0] += in[2] * ciTable[40 - off]; in ciCalc()
57 tmpf[0] += in[3] * ciTable[80 - off]; in ciCalc()
58 in += img->pitch; in ciCalc()
59 tmpf[1] = in[0] * ciTable[off + 40]; in ciCalc()
60 tmpf[1] += in[1] * ciTable[off]; in ciCalc()
61 tmpf[1] += in[2] * ciTable[40 - off]; in ciCalc()
62 tmpf[1] += in[3] * ciTable[80 - off]; in ciCalc()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DMessage.java303 private Message(Parcel in) { in Message() argument
304 id = in.readLong(); in Message()
305 serverId = in.readString(); in Message()
306 uri = in.readParcelable(null); in Message()
307 conversationUri = in.readParcelable(null); in Message()
308 subject = in.readString(); in Message()
309 snippet = in.readString(); in Message()
310 mFrom = in.readString(); in Message()
311 mTo = in.readString(); in Message()
312 mCc = in.readString(); in Message()
[all …]
DAccount.java319 public Account buildFrom(Parcel in, ClassLoader loader) { in buildFrom() argument
320 return new Account(in, loader); in buildFrom()
596 protected Account(Parcel in, ClassLoader loader) { in Account() argument
597 displayName = in.readString(); in Account()
598 senderName = in.readString(); in Account()
599 type = in.readString(); in Account()
600 accountManagerName = in.readString(); in Account()
601 providerVersion = in.readInt(); in Account()
602 uri = in.readParcelable(null); in Account()
603 capabilities = in.readInt(); in Account()
[all …]
DConversation.java203 private Conversation(Parcel in, ClassLoader loader) { in Conversation() argument
204 id = in.readLong(); in Conversation()
205 uri = in.readParcelable(null); in Conversation()
206 subject = in.readString(); in Conversation()
207 dateMs = in.readLong(); in Conversation()
208 hasAttachments = (in.readInt() != 0); in Conversation()
209 messageListUri = in.readParcelable(null); in Conversation()
210 sendingState = in.readInt(); in Conversation()
211 priority = in.readInt(); in Conversation()
212 read = (in.readInt() != 0); in Conversation()
[all …]
DFolder.java441 public Folder(Parcel in, ClassLoader loader) { in Folder() argument
442 id = in.readInt(); in Folder()
443 persistentId = in.readString(); in Folder()
444 folderUri = new FolderUri((Uri) in.readParcelable(loader)); in Folder()
445 name = in.readString(); in Folder()
446 capabilities = in.readInt(); in Folder()
448 hasChildren = in.readInt() == 1; in Folder()
449 syncWindow = in.readInt(); in Folder()
450 conversationListUri = in.readParcelable(loader); in Folder()
451 childFoldersListUri = in.readParcelable(loader); in Folder()
[all …]
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
44 # 4096 sub-directories (in 2 levels) under the output directory of each output
47 # source files, where putting all generated files in the same directory would
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
54 # information to generate all constant output in the proper language.
66 # include brief member descriptions after the members that are listed in
80 # that is used to form the text in various listings. Each string
81 # in this list, if found as the leading text of the brief description, will be
108 # inherited members of a class in the documentation of that class as if those
115 # path before files name in the file list and in the header files. If set
[all …]
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
44 # 4096 sub-directories (in 2 levels) under the output directory of each output
47 # source files, where putting all generated files in the same directory would
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
54 # information to generate all constant output in the proper language.
66 # include brief member descriptions after the members that are listed in
80 # that is used to form the text in various listings. Each string
81 # in this list, if found as the leading text of the brief description, will be
108 # inherited members of a class in the documentation of that class as if those
115 # path before files name in the file list and in the header files. If set
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
44 # 4096 sub-directories (in 2 levels) under the output directory of each output
47 # source files, where putting all generated files in the same directory would
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
54 # information to generate all constant output in the proper language.
66 # include brief member descriptions after the members that are listed in
80 # that is used to form the text in various listings. Each string
81 # in this list, if found as the leading text of the brief description, will be
108 # inherited members of a class in the documentation of that class as if those
115 # path before files name in the file list and in the header files. If set
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile17 # This tag specifies the encoding used for all characters in the config file
44 # 4096 sub-directories (in 2 levels) under the output directory of each output
47 # source files, where putting all generated files in the same directory would
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
54 # information to generate all constant output in the proper language.
66 # include brief member descriptions after the members that are listed in
80 # that is used to form the text in various listings. Each string
81 # in this list, if found as the leading text of the brief description, will be
108 # inherited members of a class in the documentation of that class as if those
115 # path before files name in the file list and in the header files. If set
[all …]
/packages/apps/Settings/src/com/android/settings/applications/
DProcStatsEntry.java87 public ProcStatsEntry(Parcel in) { in ProcStatsEntry() argument
88 mPackage = in.readString(); in ProcStatsEntry()
89 mUid = in.readInt(); in ProcStatsEntry()
90 mName = in.readString(); in ProcStatsEntry()
91 in.readStringList(mPackages); in ProcStatsEntry()
92 mBgDuration = in.readLong(); in ProcStatsEntry()
93 mAvgBgMem = in.readLong(); in ProcStatsEntry()
94 mMaxBgMem = in.readLong(); in ProcStatsEntry()
95 mBgWeight = in.readDouble(); in ProcStatsEntry()
96 mRunDuration = in.readLong(); in ProcStatsEntry()
[all …]
/packages/apps/Email/src/com/beetstra/jutf7/
DUTF7StyleCharsetDecoder.java64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { in decodeLoop() argument
65 while (in.hasRemaining()) { in decodeLoop()
66 byte b = in.get(); in decodeLoop()
70 return malformed(in); in decodeLoop()
73 return overflow(in); in decodeLoop()
80 return overflow(in); in decodeLoop()
81 CoderResult result = handleBase64(in, out, b); in decodeLoop()
90 return malformed(in); in decodeLoop()
95 return overflow(in); in decodeLoop()
103 private CoderResult overflow(ByteBuffer in) { in overflow() argument
[all …]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java458 public Policy createFromParcel(Parcel in) {
459 return new Policy(in);
502 public Policy(Parcel in) { in Policy() argument
504 mId = in.readLong(); in Policy()
505 mPasswordMode = in.readInt(); in Policy()
506 mPasswordMinLength = in.readInt(); in Policy()
507 mPasswordMaxFails = in.readInt(); in Policy()
508 mPasswordHistory = in.readInt(); in Policy()
509 mPasswordExpirationDays = in.readInt(); in Policy()
510 mPasswordComplexChars = in.readInt(); in Policy()
[all …]
DAccount.java859 public Account createFromParcel(Parcel in) {
860 return new Account(in);
911 public Account(Parcel in) { in Account() argument
913 mId = in.readLong(); in Account()
914 mDisplayName = in.readString(); in Account()
915 mEmailAddress = in.readString(); in Account()
916 mSyncKey = in.readString(); in Account()
917 mSyncLookback = in.readInt(); in Account()
918 mSyncInterval = in.readInt(); in Account()
919 mHostAuthKeyRecv = in.readLong(); in Account()
[all …]
/packages/apps/Settings/src/com/android/settings/dashboard/
DDashboardTile.java169 public void readFromParcel(Parcel in) { in readFromParcel() argument
170 id = in.readLong(); in readFromParcel()
171 titleRes = in.readInt(); in readFromParcel()
172 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in); in readFromParcel()
173 summaryRes = in.readInt(); in readFromParcel()
174 summary = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in); in readFromParcel()
175 iconRes = in.readInt(); in readFromParcel()
176 iconPkg = in.readString(); in readFromParcel()
177 fragment = in.readString(); in readFromParcel()
178 fragmentArguments = in.readBundle(); in readFromParcel()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppReceiver.java117 Intent in = new Intent(context, BluetoothOppIncomingFileConfirmActivity.class); in onReceive() local
118 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onReceive()
119 in.setDataAndNormalize(uri); in onReceive()
120 context.startActivity(in); in onReceive()
158 Intent in = new Intent(context, BluetoothOppTransferActivity.class); in onReceive() local
159 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onReceive()
160 in.setDataAndNormalize(uri); in onReceive()
161 context.startActivity(in); in onReceive()
173 Intent in = new Intent(context, BluetoothOppTransferHistory.class); in onReceive() local
174 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); in onReceive()
[all …]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
DHostAuthCompat.java100 public HostAuthCompat(Parcel in) { in HostAuthCompat() argument
101 mProtocol = in.readString(); in HostAuthCompat()
102 mAddress = in.readString(); in HostAuthCompat()
103 mPort = in.readInt(); in HostAuthCompat()
104 mFlags = in.readInt(); in HostAuthCompat()
105 mLogin = in.readString(); in HostAuthCompat()
106 mPassword = in.readString(); in HostAuthCompat()
107 mDomain = in.readString(); in HostAuthCompat()
108 mClientCertAlias = in.readString(); in HostAuthCompat()
109 mServerCert = in.createByteArray(); in HostAuthCompat()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
DCachedInputStream.java44 public CachedInputStream(InputStream in) { in CachedInputStream() argument
45 super(in); in CachedInputStream()
105 if (in!=null) { in close()
106 in.close(); in close()
107 in = null; in close()
134 if (in == null) { in read()
138 int reads = in.read(buffer, offset, count); in read()
158 int reads = in.read(buf, indexInBuf, toRead); in read()
167 reads = in.read(buffer, offset, count); in read()
206 if (in == null) { in available()
[all …]
/packages/apps/Browser/src/com/android/browser/
DBrowserBackupAgent.java67 DataInputStream in = new DataInputStream( in onBackup() local
70 savedFileSize = in.readLong(); in onBackup()
71 savedCrc = in.readLong(); in onBackup()
72 savedVersion = in.readInt(); in onBackup()
77 if (in != null) { in onBackup()
78 in.close(); in onBackup()
102 DataInputStream in = new DataInputStream(infstream); in onRestore() local
105 int count = in.readInt(); in onRestore()
112 mark.url = in.readUTF(); in onRestore()
113 mark.visits = in.readInt(); in onRestore()
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DMessageData.java827 protected MessageData(final Parcel in) { in MessageData() argument
828 mMessageId = in.readString(); in MessageData()
829 mConversationId = in.readString(); in MessageData()
830 mParticipantId = in.readString(); in MessageData()
831 mSelfId = in.readString(); in MessageData()
832 mSentTimestamp = in.readLong(); in MessageData()
833 mReceivedTimestamp = in.readLong(); in MessageData()
834 mSeen = (in.readInt() != 0); in MessageData()
835 mRead = (in.readInt() != 0); in MessageData()
836 mProtocol = in.readInt(); in MessageData()
[all …]

12345678910>>...16