Searched refs:data (Results 476 - 500 of 1228) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/include/
H A DDataUriSource.h37 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
H A DSoftwareRenderer.h37 const void *data, size_t size, void *platformPrivate);
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp89 uint8_t *dst = accessUnit->data() + offset;
112 memcpy(dst + 7, nal->data(), nal->size());
135 memcpy(accessUnit->data() + offset, nal->data(), nal->size());
/frameworks/av/media/mtp/
H A DMtpEventPacket.cpp49 event.data = mBuffer;
/frameworks/base/core/java/android/os/
H A DCommonTimeConfig.java360 android.os.Parcel data = android.os.Parcel.obtain();
364 data.writeInterfaceToken(mInterfaceDesc);
365 mRemote.transact(METHOD_FORCE_NETWORKLESS_MASTER_MODE, data, reply, 0);
374 data.recycle();
H A DIBinder.java41 * <p>The data sent through transact() is a {@link Parcel}, a generic buffer
42 * of data that also maintains some meta-data about its contents. The meta
43 * data is used to manage IBinder object references in the buffer, so that those
114 * object. The data in the parcel is intended to be delivered to
209 * @param data Marshalled data to send to the target. Must not be null.
210 * If you are not sending any data, you must create an empty Parcel
212 * @param reply Marshalled data to be received from the target. May be
217 public boolean transact(int code, Parcel data, Parce argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java65 * the data you send and as liberal as possible in the data you
712 * @param data Any data to include with the command.
717 public boolean performPrivateCommand(String action, Bundle data); argument
H A DInputMethodSession.java163 * @param data Any data to include with the command.
165 public void appPrivateCommand(String action, Bundle data); argument
/frameworks/base/core/jni/android/graphics/
H A DHarfBuzzNGFaceSkia.cpp159 static void destroyHarfBuzzFontData(void* data) { argument
160 delete (HarfBuzzFontData*)data;
172 HarfBuzzFontData* data = new HarfBuzzFontData(paint); local
173 hb_font_set_funcs(font, harfbuzzSkiaGetFontFuncs(), data, destroyHarfBuzzFontData);
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp149 ScopedCharArrayRW data(env, charArray);
150 if (data.get() == NULL) {
164 int c1 = data[i];
168 data[i] = c2;
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DFillInWrapTest.java39 mChild = activity.findViewById(R.id.data);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeFrame.java64 * If the frame's base-type is not TYPE_OBJECT, this returns a data buffer containing the native
65 * data (this is equivalent to calling getData().
72 // If this is not a structured frame, return our data
80 throw new RuntimeException("Attempting to get object data from frame that does " +
99 // Wrap it around our data
101 throw new RuntimeException("Could not get the native structured data for frame!");
159 throw new RuntimeException("Could not set native frame data!");
165 byte[] data = getNativeData(getFormat().getSize());
166 return data == null ? null : ByteBuffer.wrap(data);
244 setNativeData(byte[] data, int offset, int length) argument
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_vertex_frame.h43 jbyteArray data,
/frameworks/base/media/tests/omxjpegdecoder/
H A DStreamSource.h35 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DObbBackupService.java56 public void backupObbs(String packageName, ParcelFileDescriptor data,
58 final FileDescriptor outFd = data.getFileDescriptor();
85 // Send the EOD marker indicating that there is no more data
105 public void restoreObbFile(String packageName, ParcelFileDescriptor data,
114 // in which case restoreFile() will discard the data cleanly and let
117 FullBackup.restoreFile(data, fileSize, type, -1, mtime, outFile);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DDateUtils.java17 package com.android.locationtracker.data;
/frameworks/native/include/gui/
H A DIConsumerListener.h75 const Parcel& data,
H A DIGraphicBufferAlloc.h49 const Parcel& data,
H A DISensorEventConnection.h51 const Parcel& data,
/frameworks/native/include/media/hardware/
H A DCryptoAPI.h35 const uint8_t uuid[16], const void *data, size_t size,
62 // decode the data after decryption. The decrypt API below will have
63 // to support insecure decryption of the data (secure = false) for
64 // media data of the given mime type.
/frameworks/rs/
H A DrsScriptIntrinsic.h51 virtual void Invoke(Context *rsc, uint32_t slot, const void *data, size_t len);
/frameworks/rs/scriptc/
H A Drs_core.rsh75 rsSendToClient(int cmdID, const void *data, uint len);
86 rsSendToClientBlocking(int cmdID, const void *data, uint len);
129 * @param input The allocation to source data from
158 * @param input The allocation to source data from
163 * perform a shallow copy of the data if necessary.
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProviderService.java193 * - obj : result data bundle, or null
200 * - obj : result data bundle, or null
459 public void onResult(Bundle data) {
464 + ", data=" + data);
468 requestId, 0, data, null);
473 public void onError(String error, Bundle data) {
478 + ", error=" + error + ", data=" + data);
485 requestId, 0, data, bundl
596 sendReply(Messenger messenger, int what, int requestId, int arg, Object obj, Bundle data) argument
783 processMessage(int what, Messenger messenger, int requestId, int arg, Object obj, Bundle data) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Dstream.cpp151 static ssize_t WriteDataWrapper(void *me, const void *data, size_t size);
152 ssize_t writeData(const void *data, size_t size);
201 void *me, const void *data, size_t size) {
202 return static_cast<MyConvertingStreamSource *>(me)->writeData(data, size);
205 ssize_t MyConvertingStreamSource::writeData(const void *data, size_t size) { argument
229 memcpy((uint8_t *)mem->pointer() + mCurrentBufferOffset, data, copy);
237 data = (const uint8_t *)data + copy;
200 WriteDataWrapper( void *me, const void *data, size_t size) argument
/frameworks/av/include/media/stagefright/
H A DAudioSource.h91 void trackMaxAmplitude(int16_t *data, int nSamples);
97 uint8_t *data, size_t bytes);

Completed in 473 milliseconds

<<11121314151617181920>>