Home
last modified time | relevance | path

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

12345678910>>...41

/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/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/TV/tuner/src/com/android/tv/tuner/exoplayer2/buffer/
DDvrStorageManager.java88 private void readFormatInt(DataInputStream in, MediaFormat mediaFormat, String key) in readFormatInt() argument
90 int val = in.readInt(); in readFormatInt()
96 private void readFormatLong(DataInputStream in, MediaFormat mediaFormat, String key) in readFormatLong() argument
98 long val = in.readLong(); in readFormatLong()
104 private void readFormatFloat(DataInputStream in, MediaFormat mediaFormat, String key) in readFormatFloat() argument
106 float val = in.readFloat(); in readFormatFloat()
112 private String readString(DataInputStream in) throws IOException { in readString() argument
113 int len = in.readInt(); in readString()
118 in.readFully(strBytes); in readString()
122 private void readFormatString(DataInputStream in, MediaFormat mediaFormat, String key) in readFormatString() argument
[all …]
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
DDvrStorageManager.java88 private void readFormatInt(DataInputStream in, MediaFormat format, String key) in readFormatInt() argument
90 int val = in.readInt(); in readFormatInt()
96 private void readFormatLong(DataInputStream in, MediaFormat format, String key) in readFormatLong() argument
98 long val = in.readLong(); in readFormatLong()
104 private void readFormatFloat(DataInputStream in, MediaFormat format, String key) in readFormatFloat() argument
106 float val = in.readFloat(); in readFormatFloat()
112 private String readString(DataInputStream in) throws IOException { in readString() argument
113 int len = in.readInt(); in readString()
118 in.readFully(strBytes); in readString()
122 private void readFormatString(DataInputStream in, MediaFormat format, String key) in readFormatString() argument
[all …]
/packages/services/Car/car-lib/src/android/car/
DICarProjection.aidl38 void registerProjectionRunner(in Intent serviceIntent) = 0;
44 void unregisterProjectionRunner(in Intent serviceIntent) = 1;
51 in ICarProjectionKeyEventHandler eventHandler, in byte[] eventMask) = 2; in registerKeyEventHandler()
56 void unregisterKeyEventHandler(in ICarProjectionKeyEventHandler eventHandler) = 3;
62 void startProjectionAccessPoint(in Messenger messenger, in IBinder binder) = 4; in startProjectionAccessPoint()
67 void stopProjectionAccessPoint(in IBinder binder) = 5;
71 in BluetoothDevice device, in int profile, in IBinder token) = 6; in requestBluetoothProfileInhibit()
75 in BluetoothDevice device, in int profile, in IBinder token) = 7; in releaseBluetoothProfileInhibit()
78 void updateProjectionStatus(in ProjectionStatus status, in IBinder token) = 8; in updateProjectionStatus()
81 void registerProjectionStatusListener(in ICarProjectionStatusListener listener) = 9;
[all …]
/packages/services/Car/car-lib/src/android/car/storagemonitoring/
DIoStatsEntry.java42 public IoStatsEntry createFromParcel(Parcel in) {
43 return new IoStatsEntry(in);
86 public IoStatsEntry(Parcel in) { in IoStatsEntry() argument
87 uid = in.readInt(); in IoStatsEntry()
88 runtimeMillis = in.readLong(); in IoStatsEntry()
89 foreground = in.readParcelable(IoStatsEntry.Metrics.class.getClassLoader()); in IoStatsEntry()
90 background = in.readParcelable(IoStatsEntry.Metrics.class.getClassLoader()); in IoStatsEntry()
136 public IoStatsEntry(JSONObject in) throws JSONException { in IoStatsEntry() argument
137 uid = in.getInt("uid"); in IoStatsEntry()
138 runtimeMillis = in.getLong("runtimeMillis"); in IoStatsEntry()
[all …]
DWearEstimate.java51 public WearEstimate createFromParcel(Parcel in) {
52 return new WearEstimate(in);
83 public WearEstimate(Parcel in) { in WearEstimate() argument
84 typeA = validateWearValue(in.readInt()); in WearEstimate()
85 typeB = validateWearValue(in.readInt()); in WearEstimate()
91 public WearEstimate(JsonReader in) throws IOException { in WearEstimate() argument
94 in.beginObject(); in WearEstimate()
95 while (in.hasNext()) { in WearEstimate()
96 switch (in.nextName()) { in WearEstimate()
98 typeA = validateWearValue(in.nextInt()); in WearEstimate()
[all …]
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/api/external/
DIConnectedDeviceManager.aidl38 void registerActiveUserConnectionCallback(in IConnectionCallback callback); in registerActiveUserConnectionCallback()
45 void unregisterConnectionCallback(in IConnectionCallback callback); in unregisterConnectionCallback()
54 void registerDeviceCallback(in CompanionDevice companionDevice, in ParcelUuid recipientId, in registerDeviceCallback()
55 in IDeviceCallback callback); in registerDeviceCallback()
64 void unregisterDeviceCallback(in CompanionDevice companionDevice, in ParcelUuid recipientId, in unregisterDeviceCallback()
65 in IDeviceCallback callback); in unregisterDeviceCallback()
75 boolean sendMessageSecurely(in CompanionDevice companionDevice, in ParcelUuid recipientId, in sendMessageSecurely()
76 in byte[] message); in sendMessageSecurely()
85 void sendMessageUnsecurely(in CompanionDevice companionDevice, in ParcelUuid recipientId, in sendMessageUnsecurely()
86 in byte[] message); in sendMessageUnsecurely()
[all …]
/packages/apps/Dialer/java/com/android/dialer/calllog/model/
Dcoalesced_row.proto16 // Value in column CoalescedAnnotatedCallLog._ID
19 // Value in column CoalescedAnnotatedCallLog.TIMESTAMP
22 // Value in column CoalescedAnnotatedCallLog.NUMBER
25 // Value in column CoalescedAnnotatedCallLog.FORMATTED_NUMBER
28 // Value in column CoalescedAnnotatedCallLog.NUMBER_PRESENTATION
31 // Value in column CoalescedAnnotatedCallLog.IS_READ
34 // Value in column CoalescedAnnotatedCallLog.NEW
37 // Value in column CoalescedAnnotatedCallLog.GEOCODED_LOCATION
40 // Value in column CoalescedAnnotatedCallLog.PHONE_ACCOUNT_COMPONENT_NAME
43 // Value in column CoalescedAnnotatedCallLog.PHONE_ACCOUNT_ID
[all …]
/packages/modules/Cronet/api/
Dlint-baseline.txt3 …Acronyms should not be capitalized in method names: was `createURLStreamHandlerFactory`, should th…
11 …Use android.net.Uri instead of java.net.URL (parameter url in org.chromium.net.CronetEngine.openCo…
75 Missing nullability on parameter `message` in method `CallbackException`
77 Missing nullability on parameter `cause` in method `CallbackException`
87 Missing nullability on parameter `url` in method `newUrlRequestBuilder`
89 Missing nullability on parameter `callback` in method `newUrlRequestBuilder`
91 Missing nullability on parameter `executor` in method `newUrlRequestBuilder`
95 Missing nullability on parameter `url` in method `openConnection`
97 Missing nullability on parameter `fileName` in method `startNetLogToFile`
99 Missing nullability on parameter `context` in method `Builder`
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Ddom.md3 …nt Object Model(DOM) is an in-memory representation of JSON for query and manipulation. The basic …
34 The `Encoding` parameter specifies the encoding of JSON String value in memory. Possible options ar…
36in JSON files. Unicode-enabled functions in Windows use UTF-16 (wide character) encoding. No matte…
61 …ces to an `Allocator` instance. On the other hand, `Value` does not do so, in order to reduce memo…
63 The default allocator used in `GenericDocument` is `MemoryPoolAllocator`. This allocator actually a…
115 `kParseIterativeFlag` | Iterative(constant complexity in terms of function call stack size)…
116 …ErrorDocumentRootNotSingular` error. Using this flag for parsing multiple JSONs in the same stream.
117 `kParseFullPrecisionFlag` | Parse number in full precision (slower). If this flag is not set, t…
119 … using a single specialization). The downside is the flags needed to be determined in compile-time.
121 The `SourceEncoding` parameter defines what encoding is in the stream. This can be differed to the …
[all …]
Dencoding.md5 > (in Introduction) JSON text is a sequence of Unicode code points.
9 > (in §3) JSON text SHALL be encoded in Unicode. The default encoding is UTF-8.
11 > (in §6) JSON may be represented using UTF-8, UTF-16, or UTF-32. When JSON is written in UTF-8, JS…
24 Those unique numbers are called code points, which is in the range `0x0` to `0x10FFFF`.
34 … Within computer memory, they are often stored in the computer's endianness. However, when it is s…
36 RapidJSON provide these encodings via the structs in `rapidjson/encodings.h`:
65 For processing text in memory, we normally use `UTF8`, `UTF16` or `UTF32`. For processing text via …
67in `GenericValue<Encoding>` and `GenericDocument<Encoding>` indicates the encoding to be used to r…
76 For a detail example, please check the example in [DOM's Encoding](doc/stream.md) section.
80in the declaration, each encoding has a `CharType` template parameter. Actually, it may be a littl…
[all …]
/packages/services/Car/car-lib/src/android/car/vms/
DIVmsSubscriberService.aidl33 in IVmsSubscriberClient subscriber) = 0;
39 in IVmsSubscriberClient subscriber, in addVmsSubscriber()
40 in VmsLayer layer) = 1; in addVmsSubscriber()
47 void addVmsSubscriberPassive(in IVmsSubscriberClient subscriber) = 2;
53 in IVmsSubscriberClient subscriber, in addVmsSubscriberToPublisher()
54 in VmsLayer layer, in addVmsSubscriberToPublisher()
63 in IVmsSubscriberClient subscriber) = 4;
69 in IVmsSubscriberClient subscriber, in removeVmsSubscriber()
70 in VmsLayer layer) = 5; in removeVmsSubscriber()
78 in IVmsSubscriberClient subscriber) = 6;
[all …]
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/
DProcStatsEntry.java92 public ProcStatsEntry(Parcel in) { in ProcStatsEntry() argument
93 mPackage = in.readString(); in ProcStatsEntry()
94 mUid = in.readInt(); in ProcStatsEntry()
95 mName = in.readString(); in ProcStatsEntry()
96 in.readStringList(mPackages); in ProcStatsEntry()
97 mBgDuration = in.readLong(); in ProcStatsEntry()
98 mAvgBgMem = in.readLong(); in ProcStatsEntry()
99 mMaxBgMem = in.readLong(); in ProcStatsEntry()
100 mBgWeight = in.readDouble(); in ProcStatsEntry()
101 mRunDuration = in.readLong(); in ProcStatsEntry()
[all …]
/packages/apps/Settings/src/com/android/settings/applications/
DProcStatsEntry.java92 public ProcStatsEntry(Parcel in) { in ProcStatsEntry() argument
93 mPackage = in.readString(); in ProcStatsEntry()
94 mUid = in.readInt(); in ProcStatsEntry()
95 mName = in.readString(); in ProcStatsEntry()
96 in.readStringList(mPackages); in ProcStatsEntry()
97 mBgDuration = in.readLong(); in ProcStatsEntry()
98 mAvgBgMem = in.readLong(); in ProcStatsEntry()
99 mMaxBgMem = in.readLong(); in ProcStatsEntry()
100 mBgWeight = in.readDouble(); in ProcStatsEntry()
101 mRunDuration = in.readLong(); in ProcStatsEntry()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/
DVoicemail.java302 public Voicemail createFromParcel(Parcel in) {
303 return new Voicemail(in);
312 private Voicemail(Parcel in) { in Voicemail() argument
313 timestamp = in.readLong(); in Voicemail()
314 number = (String) readCharSequence(in); in Voicemail()
315 if (in.readInt() > 0) { in Voicemail()
316 phoneAccount = PhoneAccountHandle.CREATOR.createFromParcel(in); in Voicemail()
320 id = in.readLong(); in Voicemail()
321 duration = in.readLong(); in Voicemail()
322 source = (String) readCharSequence(in); in Voicemail()
[all …]
/packages/apps/Dialer/java/com/android/dialer/voicemail/model/
Dvoicemail_entry.proto14 // Value in column AnnotatedCallLog._ID
17 // Value in column AnnotatedCallLog.TIMESTAMP
20 // Value in column AnnotatedCallLog.NUMBER
23 // Value in column AnnotatedCallLog.FORMATTED_NUMBER
26 // Value in column AnnotatedCallLog.GEOCODED_LOCATION
29 // Value in column AnnotatedCallLog.DURATION
32 // Value in column AnnotatedCallLog.TRANSCRIPTION
35 // Value in column AnnotatedCallLog.VOICEMAIL_URI
38 // Value in column AnnotatedCallLog.CALL_TYPE
41 // Value in column AnnotatedCallLog.IS_READ
[all …]
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/api/internal/trust/
DITrustedDeviceManager.aidl33 void onEscrowTokenAdded(in int userId, in long handle); in onEscrowTokenAdded()
36 void onEscrowTokenActivated(in int userId, in long handle); in onEscrowTokenActivated()
39 void registerTrustedDeviceCallback(in ITrustedDeviceCallback callback); in registerTrustedDeviceCallback()
42 void unregisterTrustedDeviceCallback(in ITrustedDeviceCallback callback); in unregisterTrustedDeviceCallback()
45 void registerTrustedDeviceEnrollmentCallback(in ITrustedDeviceEnrollmentCallback callback); in registerTrustedDeviceEnrollmentCallback()
48 void unregisterTrustedDeviceEnrollmentCallback(in ITrustedDeviceEnrollmentCallback callback); in unregisterTrustedDeviceEnrollmentCallback()
51 void setTrustedDeviceAgentDelegate(in ITrustedDeviceAgentDelegate trustAgentDelegate); in setTrustedDeviceAgentDelegate()
54 void clearTrustedDeviceAgentDelegate(in ITrustedDeviceAgentDelegate trustAgentDelegate); in clearTrustedDeviceAgentDelegate()
60 void removeTrustedDevice(in TrustedDevice trustedDevice); in removeTrustedDevice()
66 void registerAssociatedDeviceCallback(in IDeviceAssociationCallback callback); in registerAssociatedDeviceCallback()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppReceiver.java96 Intent in = new Intent(context, BluetoothOppIncomingFileConfirmActivity.class); in onReceive() local
97 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onReceive()
98 in.setDataAndNormalize(uri); in onReceive()
99 context.startActivity(in); in onReceive()
146 Intent in = new Intent(context, BluetoothOppTransferActivity.class); in onReceive() local
147 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); in onReceive()
148 in.setDataAndNormalize(uri); in onReceive()
149 context.startActivity(in); in onReceive()
157 Intent in = new Intent(context, BluetoothOppTransferHistory.class); in onReceive() local
158 in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); in onReceive()
[all …]
/packages/services/BuiltInPrintService/jni/plugins/
Dwprint_scaler.c843 static inline void _scale_row_down(uint8 *in, uint8 *_RESTRICT_ out, uint32 in_row_ofs, in _scale_row_down() argument
875 _scale_row_down_2in(in, in + in_row_ofs, in _scale_row_down()
879 _scale_row_down_3in(in, in + in_row_ofs, in + 2 * in_row_ofs, in _scale_row_down()
883 _scale_row_down_4in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down()
887 _scale_row_down_5in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down()
888 in + 4 * in_row_ofs, in _scale_row_down()
893 _scale_row_down_6in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down()
894 in + 4 * in_row_ofs, in + 5 * in_row_ofs, in _scale_row_down()
898 _scale_row_down_7in(in, in + in_row_ofs, in + 2 * in_row_ofs, in + 3 * in_row_ofs, in _scale_row_down()
899 in + 4 * in_row_ofs, in + 5 * in_row_ofs, in + 6 * in_row_ofs, in _scale_row_down()
[all …]
/packages/apps/Dialer/java/com/android/dialer/phonelookup/
Dphone_lookup_info.proto23 // For a contact in the default directory:
25 // For a contact in other directories:
29 // For a contact in the default directory:
31 // For a contact in other directories:
35 // For a contact in the default directory:
37 // For a contact in other directories:
41 // For a contact in the default directory:
43 // For a contact in other directories:
47 // For a contact in the default directory:
49 // For a contact in other directories:
[all …]
/packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
DIKeyChainServiceTestSupport.aidl36 boolean keystorePut(String key, in byte[] value); in keystorePut()
37 boolean keystoreImportKey(String key, in byte[] value); in keystoreImportKey()
40 …boolean installKeyPair(in byte[] privateKey, in byte[] userCert, in byte[] certChain, String alias… in installKeyPair()
43 int generateKeyPair(in String algorithm, in ParcelableKeyGenParameterSpec spec); in generateKeyPair()
44 int attestKey(in String alias, in byte[] challenge, in int[] idAttestationFlags); in attestKey()
45 boolean setKeyPairCertificate(String alias, in byte[] userCert, in byte[] certChain); in setKeyPairCertificate()
/packages/apps/DocumentsUI/src/com/android/documentsui/base/
DState.java185 public State createFromParcel(Parcel in) {
186 return createFromParcel(in, null);
190 public State createFromParcel(Parcel in, ClassLoader loader) {
192 state.action = in.readInt();
193 state.acceptMimes = in.createStringArray();
194 state.allowMultiple = in.readInt() != 0;
195 state.localOnly = in.readInt() != 0;
196 state.showDeviceStorageOption = in.readInt() != 0;
197 state.showAdvanced = in.readInt() != 0;
198 DurableUtils.readFromParcel(in, state.stack);
[all …]
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/
Dthird_party_licenses9 you may not use this file except in compliance with the License.
11 Unless required by applicable law or agreed to in writing, software
52 "Work" shall mean the work of authorship, whether in Source or
54 copyright notice that is included in or attached to the work
55 (an example is provided in the Appendix below).
57 "Derivative Works" shall mean any work, whether in Source or Object
68 submitted to Licensor for inclusion in the Work by the copyright owner
77 designated in writing by the copyright owner as "Not a Contribution."
88 Work and such Derivative Works in Source or Object form.
93 (except as stated in this section) patent license to make, have made,
[all …]

12345678910>>...41