Searched refs:in (Results 76 - 100 of 723) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/database/
H A DBulkCursorDescriptor.java5 * 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 public BulkCursorDescriptor createFromParcel(Parcel in) {
34 d.readFromParcel(in);
69 public void readFromParcel(Parcel in) { argument
70 cursor = BulkCursorNative.asInterface(in.readStrongBinder());
71 columnNames = in.readStringArray();
72 wantsAllOnMoveCalls = in.readInt() != 0;
73 count = in.readInt();
74 if (in
[all...]
H A DIContentObserver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
32 oneway void onChange(boolean selfUpdate, in Uri uri);
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdIntrinsicBlend.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
102 uchar4 *in = (uchar4 *)p->in; local
106 in += xstart;
116 for (;x1 < x2; x1++, out++, in++) {
117 *out = *in;
127 rsdIntrinsicBlendSrcOver_K(out, in, len);
130 in += len << 3;
133 for (;x1 < x2; x1++, out++, in
[all...]
/frameworks/rs/driver/
H A DrsdIntrinsicBlend.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
102 uchar4 *in = (uchar4 *)p->in; local
113 for (;x1 < x2; x1++, out++, in++) {
114 *out = *in;
124 rsdIntrinsicBlendSrcOver_K(out, in, len);
127 in += len << 3;
130 for (;x1 < x2; x1++, out++, in++) {
131 short4 in_s = convert_short4(*in);
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.h6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
30 // Filter can operate in an enabled (active) or disabled (bypassed) states.
44 // sampleRate Sample rate, in Hz.
49 // sampleRate Sample rate, in Hz.
54 // happens immediately and might cause discontinuities in the output.
59 // This change happens immediately and might cause discontinuities in the
68 // introducing discontinuities in the output. Otherwise,
73 // samples. Processing can be done in-place, by passing the same buffer as
75 // in Th
[all...]
/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticatorResponse.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 void onResult(in Bundle value);
H A DIAccountManagerResponse.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 void onResult(in Bundle value);
/frameworks/base/core/java/android/app/
H A DIActivityPendingResult.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
25 boolean sendResult(int code, String data, in Bundle ex);
H A DIServiceConnection.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
24 void connected(in ComponentName name, IBinder service);
H A DIThumbnailReceiver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
H A DResultInfo.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
67 public ResultInfo createFromParcel(Parcel in) {
68 return new ResultInfo(in);
76 public ResultInfo(Parcel in) { argument
77 mResultWho = in.readString();
78 mRequestCode = in.readInt();
79 mResultCode = in.readInt();
80 if (in.readInt() != 0) {
81 mData = Intent.CREATOR.createFromParcel(in);
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothManagerCallback.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 void onBluetoothServiceUp(in IBluetooth bluetoothService);
/frameworks/base/core/java/android/content/
H A DContentInsertHandler.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 * @param in InputStream
38 public void insert(ContentResolver contentResolver, InputStream in) argument
44 * @param in input string
47 public void insert(ContentResolver contentResolver, String in) argument
H A DISyncContext.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
37 void onFinished(in SyncResult result);
/frameworks/base/core/java/android/content/pm/
H A DIPackageStatsObserver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
29 void onGetStatsCompleted(in PackageStats pStats, boolean succeeded);
/frameworks/base/core/java/android/net/
H A DINetworkPolicyListener.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
23 void onMeteredIfacesChanged(in String[] meteredIfaces);
H A DINetworkPolicyManager.aidl5 * 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 void setNetworkPolicies(in NetworkPolicy[] policies);
47 void snoozeLimit(in NetworkTemplate template);
53 NetworkQuotaInfo getNetworkQuotaInfo(in NetworkState state);
54 boolean isNetworkMetered(in NetworkState state);
H A DINetworkStatsSession.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
29 NetworkStatsHistory getHistoryForNetwork(in NetworkTemplate template, int fields);
32 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
34 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields);
H A DNetworkState.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 public NetworkState(Parcel in) { argument
51 networkInfo = in.readParcelable(null);
52 linkProperties = in.readParcelable(null);
53 linkCapabilities = in.readParcelable(null);
54 subscriberId = in.readString();
55 networkId = in.readString();
74 public NetworkState createFromParcel(Parcel in) {
75 return new NetworkState(in);
[all...]
/frameworks/base/core/java/android/os/
H A DIMessenger.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
24 void send(in Message msg);
H A DIRemoteCallback.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
24 void sendResult(in Bundle data);
/frameworks/base/core/java/android/view/
H A DIInputFilterHost.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 void sendInputEvent(in InputEvent event, int policyFlags);
/frameworks/base/core/java/com/android/internal/os/
H A DIResultReceiver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
24 void send(int resultCode, in Bundle resultData);
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBar.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 void setIcon(int index, in StatusBarIcon icon);
27 void addNotification(IBinder key, in StatusBarNotification notification);
28 void updateNotification(IBinder key, in StatusBarNotification notification);
36 void setImeWindowStatus(in IBinder token, int vis, int backDisposition);
/frameworks/base/location/java/android/location/
H A DICountryListener.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 void onCountryDetected(in Country country);

Completed in 7587 milliseconds

1234567891011>>