Searched refs:destination (Results 1 - 25 of 89) 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.java334 public void writeToParcel(Parcel destination, int flags) { argument
335 destination.writeString(mId);
336 destination.writeInt(mState);
337 destination.writeParcelable(mDisconnectCause, 0);
338 destination.writeList(mCannedSmsResponses);
339 destination.writeInt(mCapabilities);
340 destination.writeInt(mProperties);
341 destination.writeLong(mConnectTimeMillis);
342 destination.writeParcelable(mHandle, 0);
343 destination
[all...]
H A DConnectionRequest.java162 public void writeToParcel(Parcel destination, int flags) { argument
163 destination.writeParcelable(mAccountHandle, 0);
164 destination.writeParcelable(mAddress, 0);
165 destination.writeParcelable(mExtras, 0);
166 destination.writeInt(mVideoState);
167 destination.writeString(mTelecomCallId);
H A DParcelableConnection.java248 public void writeToParcel(Parcel destination, int flags) { argument
249 destination.writeParcelable(mPhoneAccount, 0);
250 destination.writeInt(mState);
251 destination.writeInt(mConnectionCapabilities);
252 destination.writeParcelable(mAddress, 0);
253 destination.writeInt(mAddressPresentation);
254 destination.writeString(mCallerDisplayName);
255 destination.writeInt(mCallerDisplayNamePresentation);
256 destination.writeStrongBinder(
258 destination
[all...]
H A DParcelableConference.java167 public void writeToParcel(Parcel destination, int flags) { argument
168 destination.writeParcelable(mPhoneAccount, 0);
169 destination.writeInt(mState);
170 destination.writeInt(mConnectionCapabilities);
171 destination.writeList(mConnectionIds);
172 destination.writeLong(mConnectTimeMillis);
173 destination.writeStrongBinder(
175 destination.writeInt(mVideoState);
176 destination.writeParcelable(mStatusHints, 0);
177 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 DDisconnectCause.java206 public void writeToParcel(Parcel destination, int flags) { argument
207 destination.writeInt(mDisconnectCode);
208 TextUtils.writeToParcel(mDisconnectLabel, destination, flags);
209 TextUtils.writeToParcel(mDisconnectDescription, destination, flags);
210 destination.writeString(mDisconnectReason);
211 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/opt/chips/src/com/android/ex/chips/
H A DRecipientEntry.java64 /** Type of the destination like {@link Email#TYPE_HOME} */
67 * Label of the destination which will be used when type was {@link Email#TYPE_CUSTOM}.
75 /** ID for the destination */
98 protected RecipientEntry(int entryType, String displayName, String destination, argument
102 this(entryType, displayName, destination, destinationType,
107 protected RecipientEntry(int entryType, String displayName, String destination, argument
114 mDestination = destination;
130 protected RecipientEntry(int entryType, String displayName, String destination, argument
134 this(entryType, displayName, destination, destinationType, destinationLabel,
188 String destination, in
187 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean isValid, String lookupKey) argument
197 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
208 constructSecondLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
242 pickDisplayName(int displayNameSource, String displayName, String destination) argument
[all...]
/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/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/java/android/view/
H A DDragAndDropPermissions.java140 public void writeToParcel(Parcel destination, int flags) { argument
141 destination.writeStrongInterface(mDragAndDropPermissions);
142 destination.writeStrongBinder(mPermissionOwnerToken);
/frameworks/base/services/tests/servicestests/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 427 milliseconds

1234