Searched refs:destination (Results 1 - 25 of 53) sorted by relevance

123

/frameworks/base/core/java/android/net/
H A DRouteInfo.java38 * <li>a destination {@link IpPrefix} specifying the network destinations covered by this route.
45 * Either the destination or the gateway may be {@code null}, but not both. If the
46 * destination and gateway are both specified, they must be of the same address family
51 * The IP destination address for this route.
88 * If destination is null, then gateway must be specified and the
94 * destination and gateway may not both be null.
96 * @param destination the destination prefix
102 public RouteInfo(IpPrefix destination, InetAddress gateway, String iface, int type) { argument
122 if (destination
163 RouteInfo(IpPrefix destination, InetAddress gateway, String iface) argument
170 RouteInfo(LinkAddress destination, InetAddress gateway, String iface) argument
191 RouteInfo(IpPrefix destination, InetAddress gateway) argument
200 RouteInfo(LinkAddress destination, InetAddress gateway) argument
223 RouteInfo(IpPrefix destination) argument
230 RouteInfo(LinkAddress destination) argument
237 RouteInfo(IpPrefix destination, int type) argument
369 matches(InetAddress destination) argument
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DBitmapSerializeUtils.java51 * @param destination The destination file descriptor.
53 public static void writeBitmapPixels(Bitmap bitmap, ParcelFileDescriptor destination) { argument
54 nativeWriteBitmapPixels(bitmap, destination.getFd());
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableConnection.java205 public void writeToParcel(Parcel destination, int flags) { argument
206 destination.writeParcelable(mPhoneAccount, 0);
207 destination.writeInt(mState);
208 destination.writeInt(mConnectionCapabilities);
209 destination.writeParcelable(mAddress, 0);
210 destination.writeInt(mAddressPresentation);
211 destination.writeString(mCallerDisplayName);
212 destination.writeInt(mCallerDisplayNamePresentation);
213 destination.writeStrongBinder(
215 destination
[all...]
H A DParcelableCall.java302 public void writeToParcel(Parcel destination, int flags) { argument
303 destination.writeString(mId);
304 destination.writeInt(mState);
305 destination.writeParcelable(mDisconnectCause, 0);
306 destination.writeList(mCannedSmsResponses);
307 destination.writeInt(mCapabilities);
308 destination.writeInt(mProperties);
309 destination.writeLong(mConnectTimeMillis);
310 destination.writeParcelable(mHandle, 0);
311 destination
[all...]
H A DParcelableConference.java125 public void writeToParcel(Parcel destination, int flags) { argument
126 destination.writeParcelable(mPhoneAccount, 0);
127 destination.writeInt(mState);
128 destination.writeInt(mConnectionCapabilities);
129 destination.writeList(mConnectionIds);
130 destination.writeLong(mConnectTimeMillis);
H A DGatewayInfo.java117 public void writeToParcel(Parcel destination, int flags) { argument
118 destination.writeString(mGatewayProviderPackageName);
119 mGatewayAddress.writeToParcel(destination, 0);
120 mOriginalAddress.writeToParcel(destination, 0);
H A DConnectionRequest.java137 public void writeToParcel(Parcel destination, int flags) { argument
138 destination.writeParcelable(mAccountHandle, 0);
139 destination.writeParcelable(mAddress, 0);
140 destination.writeParcelable(mExtras, 0);
141 destination.writeInt(mVideoState);
H A DDisconnectCause.java193 public void writeToParcel(Parcel destination, int flags) { argument
194 destination.writeInt(mDisconnectCode);
195 TextUtils.writeToParcel(mDisconnectLabel, destination, flags);
196 TextUtils.writeToParcel(mDisconnectDescription, destination, flags);
197 destination.writeString(mDisconnectReason);
198 destination.writeInt(mToneToPlay);
H A DAudioState.java162 public void writeToParcel(Parcel destination, int flags) { argument
163 destination.writeByte((byte) (isMuted ? 1 : 0));
164 destination.writeInt(route);
165 destination.writeInt(supportedRouteMask);
/frameworks/base/core/java/android/hardware/camera2/params/
H A DRggbChannelVector.java133 * Copy the vector into the destination in the order {@code [R, Geven, Godd, B]}.
135 * @param destination
142 * If {@code destination} was {@code null}
144 * If there's not enough room to write the elements at the specified destination and
147 public void copyTo(final float[] destination, final int offset) { argument
148 checkNotNull(destination, "destination must not be null");
149 if (destination.length - offset < COUNT) {
150 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements");
153 destination[offse
[all...]
H A DBlackLevelPattern.java74 * Copy the ColorChannel offsets into the destination vector.
78 * @param destination an array big enough to hold at least {@value #COUNT} elements after the
83 * @throws ArrayIndexOutOfBoundsException if the destination vector is too small.
84 * @throws NullPointerException if the destination is null.
86 public void copyTo(int[] destination, int offset) { argument
87 checkNotNull(destination, "destination must not be null");
91 if (destination.length - offset < COUNT) {
92 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements");
95 destination[offse
[all...]
H A DColorSpaceTransform.java149 * Copy the {@link Rational} elements in row-major order from this matrix into the destination.
151 * @param destination
157 * If {@code destination} was {@code null}
159 * If there's not enough room to write the elements at the specified destination and
162 public void copyElements(Rational[] destination, int offset) { argument
164 checkNotNull(destination, "destination must not be null");
165 if (destination.length - offset < COUNT) {
166 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements");
173 destination[
197 copyElements(int[] destination, int offset) argument
[all...]
H A DLensShadingMap.java178 * Copy all gain factors in row-major order from this lens shading map into the destination.
182 * @param destination
188 * If {@code destination} was {@code null}
192 * If there's not enough room to write the elements at the specified destination and
197 public void copyGainFactors(final float[] destination, final int offset) { argument
199 checkNotNull(destination, "destination must not be null");
200 if (destination.length + offset < getGainFactorCount()) {
201 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements");
204 System.arraycopy(mElements, /*srcPos*/0, destination, offse
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallInfo.java74 public void writeToParcel(Parcel destination, int flags) { argument
75 destination.writeString(handle);
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DParamsUtils.java162 * ({@code destination}) in-place.
165 * @param destination the resulting floating point rectangle will be written out to here
169 public static void convertRectF(Rect source, RectF destination) { argument
171 checkNotNull(destination, "destination must not be null");
173 destination.left = source.left;
174 destination.right = source.right;
175 destination.bottom = source.bottom;
176 destination.top = source.top;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEntry.java55 /** Type of the destination like {@link Email#TYPE_HOME} */
58 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}.
66 /** ID for the destination */
82 protected RecipientEntry(int entryType, String displayName, String destination, argument
89 mDestination = destination;
142 * to avoid confusion and just use the destination instead.
145 String destination) {
146 return (displayNameSource > DisplayNameSources.PHONE) ? displayName : destination;
162 String destination, int destinationType, String destinationLabel, long contactId,
166 displayName, destination), destinatio
144 pickDisplayName(int displayNameSource, String displayName, String destination) argument
161 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean isValid, String lookupKey) argument
170 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
180 constructSecondLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
[all...]
H A DCircularImageView.java27 private final RectF destination; field in class:CircularImageView
44 destination = new RectF();
80 destination.set(getPaddingLeft(), getPaddingTop(), getWidth() - getPaddingRight(),
83 drawBitmapWithCircleOnCanvas(bitmap, canvas, source, destination);
88 * mask. Only draws a circle with diameter equal to the destination width.
93 * @param dest The destination bound on the canvas.
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
H A DIPdfEditor.aidl30 void write(in ParcelFileDescriptor destination);
H A DIPdfRenderer.aidl30 in PrintAttributes attributes, in ParcelFileDescriptor destination);
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DAesCtrDecryptor.cpp31 uint8_t* destination,
49 memcpy(destination + offset, source + offset,
55 AES_ctr128_encrypt(source + offset, destination + offset,
29 decrypt(const android::Vector<uint8_t>& key, const Iv iv, const uint8_t* source, uint8_t* destination, const SubSample* subSamples, size_t numSubSamples, size_t* bytesDecryptedOut) argument
H A DAesCtrDecryptor.h34 const uint8_t* source, uint8_t* destination,
/frameworks/ex/variablespeed/jni/
H A Dring_buffer.cc101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const { argument
104 memcpy(destination, samples_ + pos * num_channels_,
105 num_channels_ * num_frames * sizeof(destination[0]));
108 memcpy(destination, samples_ + pos * num_channels_,
109 num_channels_ * wrapped * sizeof(destination[0]));
111 memcpy(destination + wrapped * num_channels_, samples_,
112 num_channels_ * remaining * sizeof(destination[0]));
/frameworks/base/core/java/android/print/
H A DPrintDocumentAdapter.java68 * pages to the provided destination. The execution of this method is not
234 * @param destination The destination file descriptor to which to write.
241 public abstract void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
H A DPrintFileDocumentAdapter.java87 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
89 mWriteFileAsyncTask = new WriteFileAsyncTask(destination, cancellationSignal, callback);
102 public WriteFileAsyncTask(ParcelFileDescriptor destination, argument
104 mDestination = destination;
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java321 * whole page to the destination clip if provided or the destination bitmap if no
326 * destination bitmap contains a portion of the image, for example when zooming.
331 * <strong>Note: </strong> The destination bitmap format must be
340 * @param destination Destination bitmap to which to render.
348 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, argument
350 if (destination.getConfig() != Config.ARGB_8888) {
356 || destClip.right > destination.getWidth()
357 || destClip.bottom > destination.getHeight()) {
358 throw new IllegalArgumentException("destBounds not in destination");
[all...]

Completed in 1547 milliseconds

123