Searched refs:destination (Results 26 - 50 of 108) sorted by relevance

12345

/frameworks/av/services/oboeservice/
H A DAAudioMixer.h42 void mixPart(float *destination, float *source, int32_t numFrames, float volume);
/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/telecomm/java/android/telecom/
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.java201 public void writeToParcel(Parcel destination, int flags) { argument
202 destination.writeByte((byte) (isMuted ? 1 : 0));
203 destination.writeInt(route);
204 destination.writeInt(supportedRouteMask);
/frameworks/opt/chips/src/com/android/ex/chips/
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/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java348 * whole page to the destination clip if provided or the destination bitmap if no
353 * destination bitmap contains a portion of the image, for example when zooming.
358 * <strong>Note: </strong> The destination bitmap format must be
367 * @param destination Destination bitmap to which to render.
375 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, argument
381 destination = Preconditions.checkNotNull(destination, "bitmap null");
383 if (destination.getConfig() != Config.ARGB_8888) {
389 || destClip.right > destination
[all...]
/frameworks/av/media/libaaudio/src/client/
H A DAudioStreamInternalCapture.cpp113 uint8_t *destination = (uint8_t *) buffer; local
133 memcpy(destination, wrappingBuffer.data[partIndex], numBytes);
138 (float *) destination,
145 (int16_t *) destination,
152 destination += numBytes;
/frameworks/base/libs/hwui/
H A DGlopBuilder.h83 GlopBuilder& setModelViewMapUnitToRect(const Rect destination);
84 GlopBuilder& setModelViewMapUnitToRectSnap(const Rect destination);
85 GlopBuilder& setModelViewMapUnitToRectOptionalSnap(bool snap, const Rect& destination) { argument
87 return setModelViewMapUnitToRectSnap(destination);
89 return setModelViewMapUnitToRect(destination);
/frameworks/av/media/libstagefright/
H A DACodecBufferChannel.cpp117 ICrypto::DestinationBuffer destination;
121 destination.mType = secureData->getDestinationType();
122 if (destination.mType != ICrypto::kDestinationTypeNativeHandle) {
125 destination.mHandle =
128 destination.mType = ICrypto::kDestinationTypeSharedMemory;
129 destination.mSharedMemory = mDecryptDestination;
140 subSamples, numSubSamples, destination, errorDetailMsg);
143 descrambleInfo.dstType = destination.mType ==
171 if (result > 0 && destination.mType == ICrypto::kDestinationTypeSharedMemory) {
172 memcpy(destination
[all...]
/frameworks/base/libs/hwui/font/
H A DFont.cpp244 SkPoint destination[4]; local
251 destination[0].set(-tangent->fX * halfWidth - tangent->fY * vOffset,
253 destination[1].set(tangent->fX * halfWidth - tangent->fY * vOffset,
255 destination[2].set(destination[1].fX + tangent->fY * height,
256 destination[1].fY - tangent->fX * height);
257 destination[3].set(destination[0].fX + tangent->fY * height,
258 destination[0].fY - tangent->fX * height);
266 position->x() + destination[
[all...]
/frameworks/base/cmds/incident/
H A Dmain.cpp140 enum { DEST_DROPBOX, DEST_STDOUT } destination = DEST_STDOUT; local
147 destination = DEST_STDOUT;
153 destination = DEST_DROPBOX;
205 if (destination == DEST_STDOUT) {
/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java177 * Copy all gain factors in row-major order from this lens shading map into the destination.
181 * @param destination
187 * If {@code destination} was {@code null}
191 * If there's not enough room to write the elements at the specified destination and
196 public void copyGainFactors(final float[] destination, final int offset) { argument
198 checkNotNull(destination, "destination must not be null");
199 if (destination.length + offset < getGainFactorCount()) {
200 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements");
203 System.arraycopy(mElements, /*srcPos*/0, destination, offse
[all...]
H A DTonemapCurve.java203 * Copy the color curve for a single color channel from this tonemap curve into the destination.
213 * @param destination
219 * If {@code destination} was {@code null}
223 * If there's not enough room to write the elements at the specified destination and
232 public void copyColorCurve(int colorChannel, float[] destination, argument
235 checkNotNull(destination, "destination must not be null");
237 if (destination.length + offset < getPointCount(colorChannel) * POINT_SIZE) {
238 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements");
242 System.arraycopy(curve, /*srcPos*/0, destination, offse
[all...]
/frameworks/opt/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java56 // Test: add a third row with a non-unique destination.
66 // Test: add a forth row with a non-unique destination again.
79 String destination,
87 c.addRow(new Object[] {displayName, destination, destinationType, destinationLabel,
94 String destination,
104 assertEquals(destination, c.getString(1));
136 // Ensure that if one has a display name different from its destination, and the other's
137 // is equal to its destination, we use the unique one
77 addRow(MatrixCursor c, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
92 assertRow(Cursor c, int position, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DSession.cpp66 void* destination, const SubSample* subSamples,
81 reinterpret_cast<uint8_t*>(destination), subSamples,
64 decrypt( const KeyId keyId, const Iv iv, const void* source, void* destination, const SubSample* subSamples, size_t numSubSamples, size_t* bytesDecryptedOut) argument
H A DSession.h50 void* destination, const SubSample* subSamples,
/frameworks/base/tests/net/java/android/net/netlink/
H A DRtNetlinkNeighborMessageTest.java161 final InetAddress destination = neighMsg.getDestination();
162 assertNotNull(destination);
163 assertEquals(InetAddress.parseNumericAddress("192.168.159.254"), destination);
188 final InetAddress destination = neighMsg.getDestination();
189 assertNotNull(destination);
190 assertEquals(InetAddress.parseNumericAddress("fe80::86c9:b2ff:fe6a:ed4b"), destination);
/frameworks/av/media/libaaudio/src/fifo/
H A DFifoBuffer.cpp122 uint8_t *destination = (uint8_t *) buffer; local
137 memcpy(destination, wrappingBuffer.data[partIndex], numBytes);
139 destination += numBytes;
H A DFifoBuffer.h52 fifo_frames_t read(void *destination, fifo_frames_t framesToRead);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
H A DPdfManipulationService.java106 PrintAttributes attributes, ParcelFileDescriptor destination) {
163 BitmapSerializeUtils.writeBitmapPixels(bitmap, destination);
171 IoUtils.closeQuietly(destination);
354 public void write(ParcelFileDescriptor destination) throws RemoteException { argument
361 mEditor.write(destination);
363 IoUtils.closeQuietly(destination);
105 renderPage(int pageIndex, int bitmapWidth, int bitmapHeight, PrintAttributes attributes, ParcelFileDescriptor destination) argument
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessage.java26 * source and destination address, command (or opcode), and optional parameters.
40 public HdmiCecMessage(int source, int destination, int opcode, byte[] params) { argument
42 mDestination = destination;
58 * Return the destination address field of the message. It is the logical address
61 * @return destination address
69 * tells the destination device what to do.
80 * the action for the destination device to take.
/frameworks/av/drm/libmediadrm/
H A DCrypto.cpp241 const ICrypto::DestinationBuffer &destination, AString *errorDetailMsg) {
257 if (destination.mType == kDestinationTypeNativeHandle) {
258 destPtr = static_cast<void *>(destination.mHandle);
261 destPtr = destination.mSharedMemory->pointer();
237 decrypt(const uint8_t key[16], const uint8_t iv[16], CryptoPlugin::Mode mode, const CryptoPlugin::Pattern &pattern, const sp<IMemory> &source, size_t offset, const CryptoPlugin::SubSample *subSamples, size_t numSubSamples, const ICrypto::DestinationBuffer &destination, AString *errorDetailMsg) argument
/frameworks/av/include/media/
H A DCrypto.h56 const DestinationBuffer &destination, AString *errorDetailMsg);
/frameworks/av/media/libmedia/include/media/
H A DCrypto.h56 const DestinationBuffer &destination, AString *errorDetailMsg);

Completed in 575 milliseconds

12345