Searched defs:data (Results 251 - 275 of 942) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp60 Parcel data, reply; local
61 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
62 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
68 Parcel data, reply; local
69 data.writeInterfaceToken(IMediaPlayerService::getInterfaceDescriptor());
70 data.writeStrongBinder(IInterface::asBinder(client));
71 data.writeInt32(audioSessionId);
73 remote()->transact(CREATE, data, &reply);
79 Parcel data, reply; local
80 data
87 Parcel data, reply; local
94 Parcel data, reply; local
102 Parcel data, reply; local
109 Parcel data; local
117 Parcel data, reply; local
127 Parcel data, reply; local
138 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIResourceManagerService.cpp39 static void writeToParcel(Parcel *data, const Vector<T> &items) { argument
42 data->writeUint32(static_cast<uint32_t>(size));
44 items[i].writeToParcel(data);
49 static void readFromParcel(const Parcel &data, Vector<T> *items) { argument
50 size_t size = (size_t)data.readUint32();
51 for (size_t i = 0; i < size && data.dataAvail() > 0; i++) {
53 item.readFromParcel(data);
67 Parcel data, reply; local
68 data.writeInterfaceToken(IResourceManagerService::getInterfaceDescriptor());
69 writeToParcel(&data, policie
78 Parcel data, reply; local
89 Parcel data, reply; local
98 Parcel data, reply; local
117 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
[all...]
H A DIStreamSource.cpp59 Parcel data, reply; local
60 data.writeInterfaceToken(IStreamSource::getInterfaceDescriptor());
61 data.writeStrongBinder(IInterface::asBinder(listener));
62 remote()->transact(SET_LISTENER, data, &reply);
66 Parcel data, reply; local
67 data.writeInterfaceToken(IStreamSource::getInterfaceDescriptor());
68 data.writeInt64(static_cast<int64_t>(buffers.size()));
70 data.writeStrongBinder(IInterface::asBinder(buffers.itemAt(i)));
72 remote()->transact(SET_BUFFERS, data, &reply);
76 Parcel data, repl local
84 Parcel data, reply; local
94 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
153 Parcel data, reply; local
163 Parcel data, reply; local
181 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
[all...]
/frameworks/av/media/libstagefright/
H A DESDS.cpp29 ESDS::ESDS(const void *data, size_t size) argument
36 memcpy(mData, data, size);
60 status_t ESDS::getCodecSpecificInfo(const void **data, size_t *size) const { argument
65 *data = &mData[mDecoderSpecificOffset];
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DEvaluationTestBench.c22 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
35 data.
201 /* keep decoding until all data from input stream buffer consumed */
257 Write picture pointed by data to file pointed by fid. Size of the
261 void WriteOutput(FILE *fid, u8 *data, u32 picSize) argument
263 fwrite(data, 1, picSize, fid);
H A Dh264bsd_conceal.c56 u32 sliceType, u8 *data);
58 static void Transform(i32 *data);
176 H264SwDecMemset(currImage->data, 128, width*height*384);
178 H264SwDecMemcpy(currImage->data, refData, width*height*384);
264 u8 data[384]; local
293 mbPos = currImage->data + row * 16 * width * 16 + col * 16;
307 H264SwDecMemset(data, 0, sizeof(data));
314 refImage.data = refData;
315 if (refImage.data)
587 Transform(i32 *data) argument
[all...]
H A Dh264bsd_dpb.h57 u8 *data; /* 16-byte aligned pointer of pAllocatedData */ member in struct:__anon643
71 u8 *data; member in struct:__anon644
H A Dh264bsd_image.c69 data pointer to macroblock data to be written, 256 values for
80 void h264bsdWriteMacroblock(image_t *image, u8 *data) argument
94 ASSERT(data);
95 ASSERT(!((u32)data&0x3));
108 ptr = (u32*)data;
153 writing the data to the image
156 data pointer to macroblock prediction data, 256 values for
159 residual pointer to residual data, 1
171 h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data, i32 residual[][16]) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdWriteMacroblock.s26 data RN 1 label
78 ; data pointer to macroblock data to be written, 256 values for
100 VLD1 {qRow0, qRow1}, [data]!
102 VLD1 {qRow2, qRow3}, [data]!
105 VLD1 {qRow4, qRow5}, [data]!
107 VLD1 {qRow6, qRow7}, [data]!
109 VLD1 {qRow8, qRow9}, [data]!
111 VLD1 {qRow10, qRow11}, [data]!
113 VLD1 {qRow12, qRow13}, [data]!
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdWriteMacroblock.S28 #define data r1 define
80 data pointer to macroblock data to be written, 256 values for
102 VLD1.8 {qRow0, qRow1}, [data]!
104 VLD1.8 {qRow2, qRow3}, [data]!
107 VLD1.8 {qRow4, qRow5}, [data]!
109 VLD1.8 {qRow6, qRow7}, [data]!
111 VLD1.8 {qRow8, qRow9}, [data]!
113 VLD1.8 {qRow10, qRow11}, [data]!
115 VLD1.8 {qRow12, qRow13}, [data]!
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp23 ABitReader::ABitReader(const uint8_t *data, size_t size) argument
24 : mData(data),
131 const uint8_t *ABitReader::data() const { function in class:android::ABitReader
135 NALBitReader::NALBitReader(const uint8_t *data, size_t size) argument
136 : ABitReader(data, size),
150 const uint8_t *data = mData; local
153 bool isEmulationPreventionByte = (numZeros >= 2 && *data == 3);
155 if (*data == 0) {
165 ++data;
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp89 ssize_t MediaHTTP::readAt(off64_t offset, void *data, size_t size) { argument
107 offset + numBytesRead, (uint8_t *)data + numBytesRead, copy);
/frameworks/av/media/libstagefright/rtsp/
H A DAAVCAssembler.cpp80 const uint8_t *data = buffer->data(); local
83 if (size < 1 || (data[0] & 0x80)) {
93 unsigned nalType = data[0] & 0x1f;
129 hexdump(buffer->data(), buffer->size());
144 const uint8_t *data = buffer->data(); local
152 ++data;
155 size_t nalSize = (data[0] << 8) | data[
185 const uint8_t *data = buffer->data(); local
232 const uint8_t *data = buffer->data(); local
[all...]
H A DARTPSource.cpp191 uint8_t *data = buffer->data() + buffer->size(); local
193 data[0] = 0x80 | 4;
194 data[1] = 206; // PSFB
195 data[2] = 0;
196 data[3] = 4;
197 data[4] = kSourceID >> 24;
198 data[5] = (kSourceID >> 16) & 0xff;
199 data[6] = (kSourceID >> 8) & 0xff;
200 data[
229 uint8_t *data = buffer->data() + buffer->size(); local
[all...]
/frameworks/base/cmds/idmap/
H A Dcreate.cpp58 int write_idmap(int fd, const uint32_t *data, size_t size) argument
65 ssize_t w = TEMP_FAILURE_RETRY(write(fd, data + size - bytesLeft, bytesLeft));
153 uint32_t **data, size_t *size)
167 data, size);
181 uint32_t *data = NULL; local
184 if (create_idmap(target_apk_path, overlay_apk_path, &data, &size) == -1) {
188 if (write_idmap(fd, data, size) == -1) {
189 free(data);
193 free(data);
152 create_idmap(const char *target_apk_path, const char *overlay_apk_path, uint32_t **data, size_t *size) argument
/frameworks/base/core/java/android/app/admin/
H A DSecurityLog.java49 * The log entry contains a string data of the shell command, accessible via
55 * "adb pull". The log entry contains a string data of the path of the pulled file,
61 * "adb push". The log entry contains a string data of the destination path of the
123 /*package*/ SecurityEvent(byte[] data) { argument
124 mEvent = Event.fromBytes(data);
191 * Retrieve all security logs before the last reboot. May return corrupted data due to
/frameworks/base/core/java/android/app/backup/
H A DBlobBackupHelper.java36 * Utility class for writing BackupHelpers whose underlying data is a
58 * the current data state. During a backup operation this method is called once
61 * @return A byte array containing the data blob that the caller wishes to store,
69 * per key/value payload that was delivered for restore. Typically data is delivered
160 private byte[] deflate(byte[] data) { argument
162 if (data != null) {
171 out.write(data);
175 Log.v(TAG, "Deflated " + data.length + " bytes to " + result.length);
239 public void performBackup(ParcelFileDescriptor oldStateFd, BackupDataOutput data, argument
264 data
286 restoreEntity(BackupDataInputStream data) argument
[all...]
H A DFileBackupHelperBase.java53 static void performBackup_checked(ParcelFileDescriptor oldState, BackupDataOutput data, argument
76 int err = performBackup_native(oldStateFd, data.mBackupWriter, newStateFd, files, keys);
122 long data, FileDescriptor newState, String[] files, String[] keys);
121 performBackup_native(FileDescriptor oldState, long data, FileDescriptor newState, String[] files, String[] keys) argument
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java31 * Inserts default data from InputStream, should be in XML format.
32 * If the provider syncs data to the server, the imported data will be synced to the server.
235 public void processingInstruction(String target, String data) argument
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java29 private Object[] data; field in class:MatrixCursor
48 this.data = new Object[columnCount * initialCapacity];
75 return data[mPos * columnCount + column];
110 System.arraycopy(columnValues, 0, data, start, columnCount);
133 Object[] localData = data;
162 Object[] localData = data;
170 if (size > data.length) {
171 Object[] oldData = this.data;
172 int newSize = data.length * 2;
176 this.data
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiRecordListener.java60 * @param data timer status data. For more details, look at {@link TimerStatusData}.
62 public void onTimerRecordingResult(int recorderAddress, TimerStatusData data) { argument
83 TimerStatusData data = new TimerStatusData();
85 data.mOverlapped = ((result >> 31) & 0x1) != 0;
87 data.mMediaInfo = (result >> 29) & 0x3;
89 data.mProgrammed = ((result >> 28) & 0x1) != 0;
90 if (data.mProgrammed) {
91 data.mProgrammedInfo = (result >> 24) & 0xF;
92 data
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java25 * This can be used for both reading and writing data to or from a
27 * UsbRequests can be used to transfer data on bulk and interrupt endpoints.
55 * Initializes the request so it can read or write data on the given endpoint.
97 * Returns the client data for the request.
103 * @return the client data for the request
110 * Sets the client data for the request.
116 * @param data the client data for the request
118 public void setClientData(Object data) { argument
119 mClientData = data;
[all...]
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java30 * This class handles TXT record data for DNS based service discovery as specified at
37 * The DnsSdTxtRecord object stores the entire TXT data as a single byte array, traversing it
53 public DnsSdTxtRecord(byte[] data) { argument
54 mData = (byte[]) data.clone();
163 /* Gets the raw data in bytes */
/frameworks/base/core/java/android/os/
H A DIBinder.java40 * <p>The data sent through transact() is a {@link Parcel}, a generic buffer
41 * of data that also maintains some meta-data about its contents. The meta
42 * data is used to manage IBinder object references in the buffer, so that those
119 * object. The data in the parcel is intended to be delivered to
219 * @param in The raw file descriptor that an input data stream can be read from.
235 * @param data Marshalled data to send to the target. Must not be null.
236 * If you are not sending any data, you must create an empty Parcel
238 * @param reply Marshalled data t
243 transact(int code, Parcel data, Parcel reply, int flags) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DRingtonePreference.java237 public boolean onActivityResult(int requestCode, int resultCode, Intent data) { argument
241 if (data != null) {
242 Uri uri = data.getParcelableExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI);

Completed in 2076 milliseconds

<<11121314151617181920>>