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

1234

/frameworks/base/tools/layoutlib/bridge/
H A Dupdate_nav_icons.sh40 destination="$BARS/v$CURRENT_API/$density/"
41 mkdir -p "$destination" # create if not present.
42 cp -v "$FB/packages/SystemUI/res/drawable-$density/$icon" "$destination"
47 destination="$BARS/v$CURRENT_API/ldrtl-$density/"
48 mkdir -p "$destination"
49 cp -v "$FB/packages/SystemUI/res/drawable-ldrtl-$density/$icon" "$destination"
/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 DParcelableCall.java333 public void writeToParcel(Parcel destination, int flags) { argument
334 destination.writeString(mId);
335 destination.writeInt(mState);
336 destination.writeParcelable(mDisconnectCause, 0);
337 destination.writeList(mCannedSmsResponses);
338 destination.writeInt(mCapabilities);
339 destination.writeInt(mProperties);
340 destination.writeLong(mConnectTimeMillis);
341 destination.writeParcelable(mHandle, 0);
342 destination
[all...]
H A DParcelableConnection.java226 public void writeToParcel(Parcel destination, int flags) { argument
227 destination.writeParcelable(mPhoneAccount, 0);
228 destination.writeInt(mState);
229 destination.writeInt(mConnectionCapabilities);
230 destination.writeParcelable(mAddress, 0);
231 destination.writeInt(mAddressPresentation);
232 destination.writeString(mCallerDisplayName);
233 destination.writeInt(mCallerDisplayNamePresentation);
234 destination.writeStrongBinder(
236 destination
[all...]
H A DGatewayInfo.java112 public void writeToParcel(Parcel destination, int flags) { argument
113 destination.writeString(mGatewayProviderPackageName);
114 mGatewayAddress.writeToParcel(destination, 0);
115 mOriginalAddress.writeToParcel(destination, 0);
H A DParcelableConference.java156 public void writeToParcel(Parcel destination, int flags) { argument
157 destination.writeParcelable(mPhoneAccount, 0);
158 destination.writeInt(mState);
159 destination.writeInt(mConnectionCapabilities);
160 destination.writeList(mConnectionIds);
161 destination.writeLong(mConnectTimeMillis);
162 destination.writeStrongBinder(
164 destination.writeInt(mVideoState);
165 destination.writeParcelable(mStatusHints, 0);
166 destination
[all...]
H A DConnectionRequest.java132 public void writeToParcel(Parcel destination, int flags) { argument
133 destination.writeParcelable(mAccountHandle, 0);
134 destination.writeParcelable(mAddress, 0);
135 destination.writeParcelable(mExtras, 0);
136 destination.writeInt(mVideoState);
H A DDisconnectCause.java195 public void writeToParcel(Parcel destination, int flags) { argument
196 destination.writeInt(mDisconnectCode);
197 TextUtils.writeToParcel(mDisconnectLabel, destination, flags);
198 TextUtils.writeToParcel(mDisconnectDescription, destination, flags);
199 destination.writeString(mDisconnectReason);
200 destination.writeInt(mToneToPlay);
H A DAudioState.java161 public void writeToParcel(Parcel destination, int flags) { argument
162 destination.writeByte((byte) (isMuted ? 1 : 0));
163 destination.writeInt(route);
164 destination.writeInt(supportedRouteMask);
H A DCallAudioState.java197 public void writeToParcel(Parcel destination, int flags) { argument
198 destination.writeByte((byte) (isMuted ? 1 : 0));
199 destination.writeInt(route);
200 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...]
/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/base/core/tests/coretests/src/android/net/netlink/
H A DRtNetlinkNeighborMessageTest.java159 final InetAddress destination = neighMsg.getDestination();
160 assertNotNull(destination);
161 assertEquals(InetAddress.parseNumericAddress("192.168.159.254"), destination);
185 final InetAddress destination = neighMsg.getDestination();
186 assertNotNull(destination);
187 assertEquals(InetAddress.parseNumericAddress("fe80::86c9:b2ff:fe6a:ed4b"), destination);
/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;

Completed in 540 milliseconds

1234